var lang = {"select_pls":"Please select ...","select_specs":"Please select the specifications","input_quantity":"Please enter the number to buy","invalid_quantity":"The number you entered is incorrect","loading":"Laoding...","loading_please":"Please wait while loading ...","confirm":"Confirm","yes":"Yes","no":"No","error":"Error","please_confirm":"Please confirm","submit":"Submit","reset":"Reset","display":"Display","hidden":"Hidden","handle_successed":"Operation Successful.","name_exist":"This name already exists, please choose a new name","editable":"Editable","only_number":"This field can only be number","only_int":"This field can only be an integer","only_pint":"This field can only be a positive integer","not_empty":"This field can not be empty","small":"This field should be less than or equal","insert_editor":"Insert Editor","drop":"Delete","not_allowed_type":"The file format is not correct","not_allowed_size":"The file size exceeds the allowable limit","space_limit_arrived":"Sorry, the file you uploaded reached the maximum limit, please contact customer service to upgrade your shop","no_upload_file":"Unknown error, server did not receive the uploaded files, please try again or contact customer service","file_save_error":"Saved file failed, please contact customer service","file_add_error":"File information storage error, please contact customer service to check","queue_too_many":"Too many uploaded files, please select less files and try again","uploading":"Uploading ...","success":"Success","finish":"Finish","cancelled":"Cancelled","stopped":"Stopped","insert_album":"Insert Album","remove_album":"Remove Album","uploadedfile_drop_confirm":"Deleted image can not be restored, are you sure you want to delete?","db_no_such_image":"Please go through the first upload image according to the product","pending":"Ready","duplicate_spec_name":"Duplicate specification name","duplicate_spec":"Duplicate specification","spec_not_complate":"Specifications field is incomplete","spec_name_required":"At least one specification must be entered"};lang.get = function(key){
    eval('var langKey = lang.' + key);
    if(typeof(langKey) == 'undefined'){
        return key;
    }else{
        return langKey;
    }
}