var translations = {"common":{"site-name":"The Student World","footer":{"pp":"Privacy Policy","copyright":"All rights reserved."},"placeholders":{"name":"Name","email":"Email"},"send":"Send","forgot-password":"Forgot my password","email-message":"Type your email and we will send you a new password.","forgot-password-success":"Your new password was sent to the following email:","forgot-password-error":"This email does not appear in our database, please type again."},"menu":{"home":"Home","logout":"Logout","account-menu":{"backpack.index":"Backpack","profile":"My Data","account":"My Account","terms-and-privacy":"Terms and Privacy"}},"profile":{"save":"SAVE YOUR DATA","profile":"Profile","my-data":"My data","update-success":"Your profile was successfully updated","login":"Login","account-information":"Account information","email":"Email","first-name":"First name","last-name":"Last name","gender":{"label":"Gender","male":"Male","female":"Female"},"date-of-birth":"Date of Birth","day":"Day","month":"Month","year":"Year","city":"Where do you live?","country-code":"Country code","phone":"Number for Contact","level-of-education":"Level of Education","experience-abroad":"Do you have any previous experience abroad?","what-look-for":"What are you looking for?","level-of-study":"Select the program(s) you're interested in","locations-to-study":"Where do you want to study?","how-to-pay":"How are you planning to pay your study abroad experience?","how-much-invest":"How much are you planning to invest in your study abroad experience?","placeholders":{"email":"Email","password":"Password","city":"Type your city","countries":"Type the name of the country","courses":"Type the course that you are interested with","languages":"Type the languages that you are interested with"},"select":"Select","select-all":"Select all","deselect-all":"Deselect all","forgot-your-password":"Forgot your password?","forgot-password":"Forgot my password","email-message":"Type your email and we will send you a new password.","forgot-password-success":"Your new password was sent to the following email:","forgot-password-error":"This email does not appear in our database, please type again.","send":"Send","yes":"Yes","no":"No"},"validations":{"loading":"Loading...","alert_required_fields":"Please complete all the required fields.","field_required":"This field is required.","fields_required":"All fields are required.","username_in_use":"This username is already in use","email_in_use":"This email is already in use.","valid_email":"Please enter a valid email address.","email_invalid_char":"You have entered an invalid character. Use ONLY western letters and numbers. Do NOT use spaces.","email_already_subscribed":"Email already subscribed.","try_again":"An error occurred. Please try again.","email_subscribed":"Thank you for subscribing.","invalid_phone_number":"Invalid phone number.","n_chars":"Please enter at least {0} characters","n_chars_max":"Please enter no more than {0} characters.","same_value":"Please enter the same value again.","four_levels":"You may choose up to 4 levels of study you're interested in.","no_records":"We do not have any records matching.","password_sent":"Your new password has been sent to.","more_than_eighteen":"You are over 18 years old and you may not pick secondary programmes as a level of study of interest. If you are a parent please check the appropriate box.","error_creating_user":"There was an error while creating your registration.","error_updating_user":"There was an error while updating your account.","success_updating_user":"Your account has been updated successfully.","login_incorrect":"Could not login with this email and password combination.","unknown_error":"Something went wrong. Please try again later.","invalid_credentials":"Invalid credentials"},"backpack":{"see-details":"SEE DETAILS","hide-details":"hide DETAILS","itens-in":"Itens in your","backpack":"Backpack","exhibitors-visited":"Exhibitors Visited","favorite-booths":"Favorite Booths","favorite-videos":"Favorite Videos","favorite-albums":"Favorite Albums","favorite-brochures":"Favorite Brochures","exhibitor":"Exhibitor","match":"Match","profile-types":"Profile Types","video-title":"Video Title","album-title":"Album Title","brochure-title":"Brochure Title","close":"Close","transcript":"Transcript","details":"DETAILS","view":"view","other-events":{"title":"Other events you attended","copy":"","event":"EVENT","date":"DATE"},"transcripts_description":"To view the transcript, click on the representative below."}} function translate(key) { var value = walkObject(translations, key); return value ? value : ''; } function walkObject( obj, path ) { var parts = path.split("."), i=0, part; while (obj && (part=parts[i++])) obj=obj[part]; return obj; }