/* Get JS-Translation */ var translations = { "hi im englisch":"hallo ich bin deutsch", "German": "Deutsch", "You are receiving this email because we received a password reset request for your account.":"Sie haben diese E-Mail erhalten, da eine Passwort-Zurücksetzen-Anfrage für Ihr Kundenkonto beantragt wurde.", "Reset Password": "Passwort Zurücksetzen", "If you did not request a password reset, no further action is required.": "Falls Sie Ihr Password nicht zurücksetzen möchten, ignorieren Sie diese E-Mail." }; var langCode = 'de'; function lang(word) { if(typeof translations === 'undefined' || typeof translations[word] === 'undefined' ) { return word; } return translations[word]; }