[Embed] Fix tooltips with special keys on Win/Mac, fix translation

This commit is contained in:
Julia Radzhabova 2022-06-26 17:51:56 +03:00
parent c39cee6880
commit bd35c960e5
34 changed files with 46 additions and 36 deletions

View file

@ -36,6 +36,11 @@
!common.utils && (common.utils = {}); !common.utils && (common.utils = {});
common.utils = new(function(){ common.utils = new(function(){
var userAgent = navigator.userAgent.toLowerCase(),
check = function(regex){
return regex.test(userAgent);
},
isMac = check(/macintosh|mac os x/);
return { return {
openLink: function(url) { openLink: function(url) {
if (url) { if (url) {
@ -100,7 +105,9 @@
return prop; return prop;
} }
} }
} },
isMac : isMac
}; };
})(); })();
}(); }();

View file

@ -229,7 +229,7 @@ DE.ApplicationController = new(function(){
if (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Form) { // hyperlink if (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Form) { // hyperlink
me.isHideBodyTip = false; me.isHideBodyTip = false;
var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? me.txtPressLink : data.get_FormHelpText(); var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (me.txtPressLink.replace('%1', common.utils.isMac ? '⌘' : me.textCtrl)) : data.get_FormHelpText();
if (str.length>500) if (str.length>500)
str = str.substr(0, 500) + '...'; str = str.substr(0, 500) + '...';
str = common.utils.htmlEncode(str); str = common.utils.htmlEncode(str);
@ -957,9 +957,10 @@ DE.ApplicationController = new(function(){
textGotIt: 'Got it', textGotIt: 'Got it',
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
txtEmpty: '(Empty)', txtEmpty: '(Empty)',
txtPressLink: 'Press Ctrl and click link', txtPressLink: 'Press %1 and click link',
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.', errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
openErrorText: 'An error has occurred while opening the file' openErrorText: 'An error has occurred while opening the file',
textCtrl: 'Ctrl'
} }
})(); })();

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b> Forma uğurla təqdim edildi </b> <br> İpucunu bağlamaq üçün bura klikləyin", "DE.ApplicationController.textSubmited": "<b> Forma uğurla təqdim edildi </b> <br> İpucunu bağlamaq üçün bura klikləyin",
"DE.ApplicationController.txtClose": "Bağla", "DE.ApplicationController.txtClose": "Bağla",
"DE.ApplicationController.txtEmpty": "(Boşdur)", "DE.ApplicationController.txtEmpty": "(Boşdur)",
"DE.ApplicationController.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", "DE.ApplicationController.txtPressLink": "%1 düyməsinə basıb linkə klikləyin",
"DE.ApplicationController.unknownErrorText": "Naməlum xəta.", "DE.ApplicationController.unknownErrorText": "Naməlum xəta.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.", "DE.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.",
"DE.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...", "DE.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Форма паспяхова адпраўленая</b><br>Пстрыкніце, каб закрыць падказку", "DE.ApplicationController.textSubmited": "<b>Форма паспяхова адпраўленая</b><br>Пстрыкніце, каб закрыць падказку",
"DE.ApplicationController.txtClose": "Закрыць", "DE.ApplicationController.txtClose": "Закрыць",
"DE.ApplicationController.txtEmpty": "(Пуста)", "DE.ApplicationController.txtEmpty": "(Пуста)",
"DE.ApplicationController.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", "DE.ApplicationController.txtPressLink": "Націсніце %1 і пстрыкніце па спасылцы",
"DE.ApplicationController.unknownErrorText": "Невядомая памылка.", "DE.ApplicationController.unknownErrorText": "Невядомая памылка.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.",
"DE.ApplicationController.waitText": "Калі ласка, пачакайце...", "DE.ApplicationController.waitText": "Калі ласка, пачакайце...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>El formulari s'ha enviat amb èxit</b><br>Feu clic per a tancar el consell", "DE.ApplicationController.textSubmited": "<b>El formulari s'ha enviat amb èxit</b><br>Feu clic per a tancar el consell",
"DE.ApplicationController.txtClose": "Tanca", "DE.ApplicationController.txtClose": "Tanca",
"DE.ApplicationController.txtEmpty": "(Buit)", "DE.ApplicationController.txtEmpty": "(Buit)",
"DE.ApplicationController.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", "DE.ApplicationController.txtPressLink": "Premeu %1 i feu clic a l'enllaç",
"DE.ApplicationController.unknownErrorText": "Error desconegut.", "DE.ApplicationController.unknownErrorText": "Error desconegut.",
"DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.",
"DE.ApplicationController.waitText": "Espereu...", "DE.ApplicationController.waitText": "Espereu...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulář úspěšně uložen.</b><br>Klikněte pro zavření nápovědy.", "DE.ApplicationController.textSubmited": "<b>Formulář úspěšně uložen.</b><br>Klikněte pro zavření nápovědy.",
"DE.ApplicationController.txtClose": "Zavřít", "DE.ApplicationController.txtClose": "Zavřít",
"DE.ApplicationController.txtEmpty": "(Prázdné)", "DE.ApplicationController.txtEmpty": "(Prázdné)",
"DE.ApplicationController.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", "DE.ApplicationController.txtPressLink": "Stiskněte %1 a klikněte na odkaz",
"DE.ApplicationController.unknownErrorText": "Neznámá chyba.", "DE.ApplicationController.unknownErrorText": "Neznámá chyba.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.", "DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.",
"DE.ApplicationController.waitText": "Čekejte prosím…", "DE.ApplicationController.waitText": "Čekejte prosím…",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "\n<b>Formularen blev indsendt</b><br>Klik for at lukke tippet", "DE.ApplicationController.textSubmited": "\n<b>Formularen blev indsendt</b><br>Klik for at lukke tippet",
"DE.ApplicationController.txtClose": "Luk", "DE.ApplicationController.txtClose": "Luk",
"DE.ApplicationController.txtEmpty": "(Tom)", "DE.ApplicationController.txtEmpty": "(Tom)",
"DE.ApplicationController.txtPressLink": "Tryk CTRL og klik på linket", "DE.ApplicationController.txtPressLink": "Tryk %1 og klik på linket",
"DE.ApplicationController.unknownErrorText": "Ukendt fejl.", "DE.ApplicationController.unknownErrorText": "Ukendt fejl.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Din browser understøttes ikke.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din browser understøttes ikke.",
"DE.ApplicationController.waitText": "Vent venligst...", "DE.ApplicationController.waitText": "Vent venligst...",

View file

@ -36,7 +36,8 @@
"DE.ApplicationController.textSubmited": "<b>Das Formular wurde erfolgreich abgesendet</b><br>Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.textSubmited": "<b>Das Formular wurde erfolgreich abgesendet</b><br>Klicken Sie hier, um den Tipp auszublenden",
"DE.ApplicationController.txtClose": "Schließen", "DE.ApplicationController.txtClose": "Schließen",
"DE.ApplicationController.txtEmpty": "(Leer)", "DE.ApplicationController.txtEmpty": "(Leer)",
"DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", "DE.ApplicationController.textCtrl": "STRG",
"DE.ApplicationController.txtPressLink": "Drücken Sie %1 und klicken Sie auf den Link",
"DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.",
"DE.ApplicationController.waitText": "Bitte warten...", "DE.ApplicationController.waitText": "Bitte warten...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ",
"DE.ApplicationController.txtClose": "Κλείσιμο", "DE.ApplicationController.txtClose": "Κλείσιμο",
"DE.ApplicationController.txtEmpty": "(Κενό)", "DE.ApplicationController.txtEmpty": "(Κενό)",
"DE.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", "DE.ApplicationController.txtPressLink": "Πατήστε %1 και κάντε κλικ στο σύνδεσμο",
"DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.",
"DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", "DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...",

View file

@ -36,10 +36,11 @@
"DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip", "DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip",
"DE.ApplicationController.txtClose": "Close", "DE.ApplicationController.txtClose": "Close",
"DE.ApplicationController.txtEmpty": "(Empty)", "DE.ApplicationController.txtEmpty": "(Empty)",
"DE.ApplicationController.txtPressLink": "Press Ctrl and click link", "DE.ApplicationController.txtPressLink": "Press %1 and click link",
"DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unknownErrorText": "Unknown error.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
"DE.ApplicationController.waitText": "Please, wait...", "DE.ApplicationController.waitText": "Please, wait...",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationView.txtDownload": "Download", "DE.ApplicationView.txtDownload": "Download",
"DE.ApplicationView.txtDownloadDocx": "Download as docx", "DE.ApplicationView.txtDownloadDocx": "Download as docx",
"DE.ApplicationView.txtDownloadPdf": "Download as pdf", "DE.ApplicationView.txtDownloadPdf": "Download as pdf",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito. </b><br>Haga clic para cerrar el consejo", "DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito. </b><br>Haga clic para cerrar el consejo",
"DE.ApplicationController.txtClose": "Cerrar", "DE.ApplicationController.txtClose": "Cerrar",
"DE.ApplicationController.txtEmpty": "(Vacío)", "DE.ApplicationController.txtEmpty": "(Vacío)",
"DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", "DE.ApplicationController.txtPressLink": "Pulse %1 y haga clic en el enlace",
"DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unknownErrorText": "Error desconocido.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.",
"DE.ApplicationController.waitText": "Espere...", "DE.ApplicationController.waitText": "Espere...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formularioa behar bezala bidali da</b><br>Egin klik argibidea ixteko", "DE.ApplicationController.textSubmited": "<b>Formularioa behar bezala bidali da</b><br>Egin klik argibidea ixteko",
"DE.ApplicationController.txtClose": "Itxi", "DE.ApplicationController.txtClose": "Itxi",
"DE.ApplicationController.txtEmpty": "(Hutsik)", "DE.ApplicationController.txtEmpty": "(Hutsik)",
"DE.ApplicationController.txtPressLink": "Sakatu Ctrl eta egin klik estekan", "DE.ApplicationController.txtPressLink": "Sakatu %1 eta egin klik estekan",
"DE.ApplicationController.unknownErrorText": "Errore ezezaguna.", "DE.ApplicationController.unknownErrorText": "Errore ezezaguna.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Zure nabigatzaileak ez du euskarririk.", "DE.ApplicationController.unsupportedBrowserErrorText": "Zure nabigatzaileak ez du euskarririk.",
"DE.ApplicationController.waitText": "Mesedez, itxaron...", "DE.ApplicationController.waitText": "Mesedez, itxaron...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Le formulaire a été soumis avec succès</b><br>Cliquez ici pour fermer l'astuce", "DE.ApplicationController.textSubmited": "<b>Le formulaire a été soumis avec succès</b><br>Cliquez ici pour fermer l'astuce",
"DE.ApplicationController.txtClose": "Fermer", "DE.ApplicationController.txtClose": "Fermer",
"DE.ApplicationController.txtEmpty": "(Vide)", "DE.ApplicationController.txtEmpty": "(Vide)",
"DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", "DE.ApplicationController.txtPressLink": "Appuyez sur %1 et cliquez sur le lien",
"DE.ApplicationController.unknownErrorText": "Erreur inconnue.", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.",
"DE.ApplicationController.waitText": "Veuillez patienter...", "DE.ApplicationController.waitText": "Veuillez patienter...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito</b><br>Prema para pechar o consello", "DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito</b><br>Prema para pechar o consello",
"DE.ApplicationController.txtClose": "Pechar", "DE.ApplicationController.txtClose": "Pechar",
"DE.ApplicationController.txtEmpty": "(Vacío)", "DE.ApplicationController.txtEmpty": "(Vacío)",
"DE.ApplicationController.txtPressLink": "Prema Ctrl e na ligazón", "DE.ApplicationController.txtPressLink": "Prema %1 e na ligazón",
"DE.ApplicationController.unknownErrorText": "Erro descoñecido.", "DE.ApplicationController.unknownErrorText": "Erro descoñecido.",
"DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador non é compatible.", "DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador non é compatible.",
"DE.ApplicationController.waitText": "Agarde...", "DE.ApplicationController.waitText": "Agarde...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Az űrlap sikeresen elküldve</b><br>Kattintson a tipp bezárásához", "DE.ApplicationController.textSubmited": "<b>Az űrlap sikeresen elküldve</b><br>Kattintson a tipp bezárásához",
"DE.ApplicationController.txtClose": "Bezárás", "DE.ApplicationController.txtClose": "Bezárás",
"DE.ApplicationController.txtEmpty": "(Üres)", "DE.ApplicationController.txtEmpty": "(Üres)",
"DE.ApplicationController.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", "DE.ApplicationController.txtPressLink": "Nyomja meg a %1 billentyűt és kattintson a hivatkozásra",
"DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.", "DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
"DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.", "DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
"DE.ApplicationController.waitText": "Kérjük, várjon...", "DE.ApplicationController.waitText": "Kérjük, várjon...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Ձևը հաջողությամբ ուղարկվեց</b><br>Սեղմեք՝ հուշակը փակելու համար", "DE.ApplicationController.textSubmited": "<b>Ձևը հաջողությամբ ուղարկվեց</b><br>Սեղմեք՝ հուշակը փակելու համար",
"DE.ApplicationController.txtClose": "Փակել", "DE.ApplicationController.txtClose": "Փակել",
"DE.ApplicationController.txtEmpty": "(Դատարկ)", "DE.ApplicationController.txtEmpty": "(Դատարկ)",
"DE.ApplicationController.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", "DE.ApplicationController.txtPressLink": "Սեղմել %1 և անցնել հղումը",
"DE.ApplicationController.unknownErrorText": "Անհայտ սխալ։", "DE.ApplicationController.unknownErrorText": "Անհայտ սխալ։",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։", "DE.ApplicationController.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։",
"DE.ApplicationController.waitText": "Խնդրում ենք սպասել...", "DE.ApplicationController.waitText": "Խնդրում ենք սպասել...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Form berhasil disubmit</b><br>Klik untuk menutup tips", "DE.ApplicationController.textSubmited": "<b>Form berhasil disubmit</b><br>Klik untuk menutup tips",
"DE.ApplicationController.txtClose": "Tutup", "DE.ApplicationController.txtClose": "Tutup",
"DE.ApplicationController.txtEmpty": "(Kosong)", "DE.ApplicationController.txtEmpty": "(Kosong)",
"DE.ApplicationController.txtPressLink": "Tekan CTRL dan klik tautan", "DE.ApplicationController.txtPressLink": "Tekan %1 dan klik tautan",
"DE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", "DE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui",
"DE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung", "DE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung",
"DE.ApplicationController.waitText": "Silahkan menunggu", "DE.ApplicationController.waitText": "Silahkan menunggu",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Modulo è stato inviato con successo</b><br>Clicca su per chiudere la notifica</br>", "DE.ApplicationController.textSubmited": "<b>Modulo è stato inviato con successo</b><br>Clicca su per chiudere la notifica</br>",
"DE.ApplicationController.txtClose": "Chiudi", "DE.ApplicationController.txtClose": "Chiudi",
"DE.ApplicationController.txtEmpty": "(Vuoto)", "DE.ApplicationController.txtEmpty": "(Vuoto)",
"DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento", "DE.ApplicationController.txtPressLink": "Premi %1 e clicca sul collegamento",
"DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.",
"DE.ApplicationController.waitText": "Per favore, attendi...", "DE.ApplicationController.waitText": "Per favore, attendi...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>フォームが正常に送信されました。</b><br>クリックしてヒントを閉じます。", "DE.ApplicationController.textSubmited": "<b>フォームが正常に送信されました。</b><br>クリックしてヒントを閉じます。",
"DE.ApplicationController.txtClose": "閉じる", "DE.ApplicationController.txtClose": "閉じる",
"DE.ApplicationController.txtEmpty": "(空)", "DE.ApplicationController.txtEmpty": "(空)",
"DE.ApplicationController.txtPressLink": "リンクをクリックしてCTRLを押してください", "DE.ApplicationController.txtPressLink": "リンクをクリックして%1を押してください",
"DE.ApplicationController.unknownErrorText": "不明なエラー", "DE.ApplicationController.unknownErrorText": "不明なエラー",
"DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。",
"DE.ApplicationController.waitText": "少々お待ちください...", "DE.ApplicationController.waitText": "少々お待ちください...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>양식이 성공적으로 전송되었습니다.</b><br>여기를 클릭하여 프롬프트를 닫으십시오", "DE.ApplicationController.textSubmited": "<b>양식이 성공적으로 전송되었습니다.</b><br>여기를 클릭하여 프롬프트를 닫으십시오",
"DE.ApplicationController.txtClose": "닫기", "DE.ApplicationController.txtClose": "닫기",
"DE.ApplicationController.txtEmpty": "(없음)", "DE.ApplicationController.txtEmpty": "(없음)",
"DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", "DE.ApplicationController.txtPressLink": "%1 키를 누른 상태에서 링크 클릭",
"DE.ApplicationController.unknownErrorText": "알 수없는 오류.", "DE.ApplicationController.unknownErrorText": "알 수없는 오류.",
"DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.",
"DE.ApplicationController.waitText": "잠시만 기다려주세요...", "DE.ApplicationController.waitText": "잠시만 기다려주세요...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b> ແບບຟອມທີ່ສົ່ງມາແລ້ວ", "DE.ApplicationController.textSubmited": "<b> ແບບຟອມທີ່ສົ່ງມາແລ້ວ",
"DE.ApplicationController.txtClose": " ປິດ", "DE.ApplicationController.txtClose": " ປິດ",
"DE.ApplicationController.txtEmpty": "(ຫວ່າງເປົ່າ)", "DE.ApplicationController.txtEmpty": "(ຫວ່າງເປົ່າ)",
"DE.ApplicationController.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", "DE.ApplicationController.txtPressLink": "ກົດ %1 ແລະກົດລິ້ງ",
"DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ",
"DE.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", "DE.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້",
"DE.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...", "DE.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Borang telah berjaya dihantar</b><br>Klik untuk menutup petua", "DE.ApplicationController.textSubmited": "<b>Borang telah berjaya dihantar</b><br>Klik untuk menutup petua",
"DE.ApplicationController.txtClose": "Tutup", "DE.ApplicationController.txtClose": "Tutup",
"DE.ApplicationController.txtEmpty": "(Kosong)", "DE.ApplicationController.txtEmpty": "(Kosong)",
"DE.ApplicationController.txtPressLink": "Tekan Ctrl dan klik pautan", "DE.ApplicationController.txtPressLink": "Tekan %1 dan klik pautan",
"DE.ApplicationController.unknownErrorText": "Ralat tidak diketahui.", "DE.ApplicationController.unknownErrorText": "Ralat tidak diketahui.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Pelayar anda tidak disokong.", "DE.ApplicationController.unsupportedBrowserErrorText": "Pelayar anda tidak disokong.",
"DE.ApplicationController.waitText": "Sila, tunggu…", "DE.ApplicationController.waitText": "Sila, tunggu…",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulier succesvol ingediend</b><br>Klik om de tip te sluiten", "DE.ApplicationController.textSubmited": "<b>Formulier succesvol ingediend</b><br>Klik om de tip te sluiten",
"DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.txtClose": "Sluiten",
"DE.ApplicationController.txtEmpty": "(Leeg)", "DE.ApplicationController.txtEmpty": "(Leeg)",
"DE.ApplicationController.txtPressLink": "Druk op Ctrl en klik op de koppeling", "DE.ApplicationController.txtPressLink": "Druk op %1 en klik op de koppeling",
"DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unknownErrorText": "Onbekende fout.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.",
"DE.ApplicationController.waitText": "Een moment geduld", "DE.ApplicationController.waitText": "Een moment geduld",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "</b>Formularz załączony poprawnie</b><br>Kliknij aby zamknąć podpowiedź.", "DE.ApplicationController.textSubmited": "</b>Formularz załączony poprawnie</b><br>Kliknij aby zamknąć podpowiedź.",
"DE.ApplicationController.txtClose": "Zamknij", "DE.ApplicationController.txtClose": "Zamknij",
"DE.ApplicationController.txtEmpty": "(Pusty)", "DE.ApplicationController.txtEmpty": "(Pusty)",
"DE.ApplicationController.txtPressLink": "Naciśnij Ctrl i kliknij w link", "DE.ApplicationController.txtPressLink": "Naciśnij %1 i kliknij w link",
"DE.ApplicationController.unknownErrorText": "Nieznany błąd.", "DE.ApplicationController.unknownErrorText": "Nieznany błąd.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", "DE.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.",
"DE.ApplicationController.waitText": "Proszę czekać...", "DE.ApplicationController.waitText": "Proszę czekać...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulário submetido com sucesso</b><br>Clique para fechar a dica", "DE.ApplicationController.textSubmited": "<b>Formulário submetido com sucesso</b><br>Clique para fechar a dica",
"DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtClose": "Fechar",
"DE.ApplicationController.txtEmpty": "(Vazio)", "DE.ApplicationController.txtEmpty": "(Vazio)",
"DE.ApplicationController.txtPressLink": "Prima Ctrl e clique na ligação", "DE.ApplicationController.txtPressLink": "Prima %1 e clique na ligação",
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
"DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", "DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
"DE.ApplicationController.waitText": "Aguarde…", "DE.ApplicationController.waitText": "Aguarde…",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulário apresentado com sucesso</b>>br>Click para fechar a ponta", "DE.ApplicationController.textSubmited": "<b>Formulário apresentado com sucesso</b>>br>Click para fechar a ponta",
"DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtClose": "Fechar",
"DE.ApplicationController.txtEmpty": "(Vazio)", "DE.ApplicationController.txtEmpty": "(Vazio)",
"DE.ApplicationController.txtPressLink": "Pressione CTRL e clique no link", "DE.ApplicationController.txtPressLink": "Pressione %1 e clique no link",
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.", "DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
"DE.ApplicationController.waitText": "Aguarde...", "DE.ApplicationController.waitText": "Aguarde...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Formularul a fost remis cu succes</b><br>Faceţi clic pentru a închide sfatul", "DE.ApplicationController.textSubmited": "<b>Formularul a fost remis cu succes</b><br>Faceţi clic pentru a închide sfatul",
"DE.ApplicationController.txtClose": "Închidere", "DE.ApplicationController.txtClose": "Închidere",
"DE.ApplicationController.txtEmpty": "(Gol)", "DE.ApplicationController.txtEmpty": "(Gol)",
"DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", "DE.ApplicationController.txtPressLink": "Apăsați %1 și faceți clic pe linkul",
"DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
"DE.ApplicationController.waitText": "Vă rugăm să așteptați...", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Форма успешно отправлена</b><br>Нажмите, чтобы закрыть подсказку", "DE.ApplicationController.textSubmited": "<b>Форма успешно отправлена</b><br>Нажмите, чтобы закрыть подсказку",
"DE.ApplicationController.txtClose": "Закрыть", "DE.ApplicationController.txtClose": "Закрыть",
"DE.ApplicationController.txtEmpty": "(Пусто)", "DE.ApplicationController.txtEmpty": "(Пусто)",
"DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке", "DE.ApplicationController.txtPressLink": "Нажмите %1 и щелкните по ссылке",
"DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.",
"DE.ApplicationController.waitText": "Пожалуйста, подождите...", "DE.ApplicationController.waitText": "Пожалуйста, подождите...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Formulár bol úspešne predložený</b><br>Kliknite, aby ste tip zatvorili", "DE.ApplicationController.textSubmited": "<b>Formulár bol úspešne predložený</b><br>Kliknite, aby ste tip zatvorili",
"DE.ApplicationController.txtClose": "Zatvoriť", "DE.ApplicationController.txtClose": "Zatvoriť",
"DE.ApplicationController.txtEmpty": "(Prázdne)", "DE.ApplicationController.txtEmpty": "(Prázdne)",
"DE.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "DE.ApplicationController.txtPressLink": "Stlačte %1 a kliknite na odkaz",
"DE.ApplicationController.unknownErrorText": "Neznáma chyba.", "DE.ApplicationController.unknownErrorText": "Neznáma chyba.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.",
"DE.ApplicationController.waitText": "Prosím čakajte...", "DE.ApplicationController.waitText": "Prosím čakajte...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b> Formulär skickat </b><br> Klicka för att stänga tipset", "DE.ApplicationController.textSubmited": "<b> Formulär skickat </b><br> Klicka för att stänga tipset",
"DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.txtClose": "Stäng",
"DE.ApplicationController.txtEmpty": "(Tom)", "DE.ApplicationController.txtEmpty": "(Tom)",
"DE.ApplicationController.txtPressLink": "Tryck på CTRL och klicka på länken", "DE.ApplicationController.txtPressLink": "Tryck på %1 och klicka på länken",
"DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unknownErrorText": "Okänt fel.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.",
"DE.ApplicationController.waitText": "Vänligen vänta...", "DE.ApplicationController.waitText": "Vänligen vänta...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>Form başarılı bir şekilde kaydedildi</b><br>İpucunu kapatmak için tıklayın", "DE.ApplicationController.textSubmited": "<b>Form başarılı bir şekilde kaydedildi</b><br>İpucunu kapatmak için tıklayın",
"DE.ApplicationController.txtClose": "Kapat", "DE.ApplicationController.txtClose": "Kapat",
"DE.ApplicationController.txtEmpty": "(Boş)", "DE.ApplicationController.txtEmpty": "(Boş)",
"DE.ApplicationController.txtPressLink": "CTRL'ye basın ve bağlantıya tıklayın", "DE.ApplicationController.txtPressLink": "%1'ye basın ve bağlantıya tıklayın",
"DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.", "DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.", "DE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.",
"DE.ApplicationController.waitText": "Lütfen bekleyin...", "DE.ApplicationController.waitText": "Lütfen bekleyin...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>Форму успішно відправлено</b><br>Натисніть, щоб закрити підказку", "DE.ApplicationController.textSubmited": "<b>Форму успішно відправлено</b><br>Натисніть, щоб закрити підказку",
"DE.ApplicationController.txtClose": "Закрити", "DE.ApplicationController.txtClose": "Закрити",
"DE.ApplicationController.txtEmpty": "(Пусто)", "DE.ApplicationController.txtEmpty": "(Пусто)",
"DE.ApplicationController.txtPressLink": "Натисніть CTRL та клацніть по посиланню", "DE.ApplicationController.txtPressLink": "Натисніть %1 та клацніть по посиланню",
"DE.ApplicationController.unknownErrorText": "Невідома помилка.", "DE.ApplicationController.unknownErrorText": "Невідома помилка.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується",
"DE.ApplicationController.waitText": "Будь ласка, зачекайте...", "DE.ApplicationController.waitText": "Будь ласка, зачекайте...",

View file

@ -35,7 +35,7 @@
"DE.ApplicationController.textSubmited": "<b>表格傳送成功</b><br>點此關閉提示", "DE.ApplicationController.textSubmited": "<b>表格傳送成功</b><br>點此關閉提示",
"DE.ApplicationController.txtClose": "結束", "DE.ApplicationController.txtClose": "結束",
"DE.ApplicationController.txtEmpty": "(空)", "DE.ApplicationController.txtEmpty": "(空)",
"DE.ApplicationController.txtPressLink": "按Ctrl並點擊連結", "DE.ApplicationController.txtPressLink": "按%1並點擊連結",
"DE.ApplicationController.unknownErrorText": "未知錯誤。", "DE.ApplicationController.unknownErrorText": "未知錯誤。",
"DE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", "DE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器",
"DE.ApplicationController.waitText": "請耐心等待...", "DE.ApplicationController.waitText": "請耐心等待...",

View file

@ -36,7 +36,7 @@
"DE.ApplicationController.textSubmited": "<b>表单提交成功</b><br>点击以关闭提示", "DE.ApplicationController.textSubmited": "<b>表单提交成功</b><br>点击以关闭提示",
"DE.ApplicationController.txtClose": "关闭", "DE.ApplicationController.txtClose": "关闭",
"DE.ApplicationController.txtEmpty": "(空)", "DE.ApplicationController.txtEmpty": "(空)",
"DE.ApplicationController.txtPressLink": "按CTRL并单击链接", "DE.ApplicationController.txtPressLink": "按%1并单击链接",
"DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unknownErrorText": "未知错误。",
"DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持",
"DE.ApplicationController.waitText": "请稍候...", "DE.ApplicationController.waitText": "请稍候...",