mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Moved localised JS messages in correct module (fixes #7393)
This commit is contained in:
parent
acfc658b4e
commit
f794e98d7e
11
admin/javascript/lang/cs_CZ.js
Normal file
11
admin/javascript/lang/cs_CZ.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('cs_CZ', {
|
||||||
|
'ModelAdmin.SAVED': "Uloženo",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Skutečně chcete smazat?",
|
||||||
|
'ModelAdmin.DELETED': "Smazáno",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Tato stránka byla smazána. Pro editaci stránky, vyberte ji vlevo.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Určitě chcete opustit navigaci z této stránky?\n\nUPOZORNĚNÍ: Vaše změny nebyly uloženy.\n\nStlačte OK pro pokračovat, nebo Cancel, zůstanete na této stránce."
|
||||||
|
});
|
||||||
|
}
|
12
admin/javascript/lang/de_DE.js
Normal file
12
admin/javascript/lang/de_DE.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('de_DE', {
|
||||||
|
'ModelAdmin.SAVED': "Gespeichert",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Wirklich löschen?",
|
||||||
|
'ModelAdmin.DELETED': "Gelöscht",
|
||||||
|
'ModelAdmin.VALIDATIONERROR': "Validationsfehler",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Diese Seite wurde gelöscht.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Sind Sie sicher, dasß Sie die Seite verlassen möchten?\n\nWARNUNG: Ihre Änderungen werden nicht gespeichert.\n\nDrücken Sie \"OK\" um fortzufahren, oder \"Abbrechen\" um auf dieser Seite zu bleiben."
|
||||||
|
});
|
||||||
|
}
|
@ -2,5 +2,13 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
|||||||
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
|
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
|
||||||
} else {
|
} else {
|
||||||
ss.i18n.addDictionary('en_US', {
|
ss.i18n.addDictionary('en_US', {
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Are you sure you want to navigate away from this page?\n\nWARNING: Your changes have not been saved.\n\nPress OK to continue, or Cancel to stay on the current page.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVEDSHORT': "WARNING: Your changes have not been saved.",
|
||||||
|
'SecurityAdmin.BATCHACTIONSDELETECONFIRM': "Do you really want to delete %s groups?",
|
||||||
|
'ModelAdmin.SAVED': "Saved",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Do you really want to delete?",
|
||||||
|
'ModelAdmin.DELETED': "Deleted",
|
||||||
|
'ModelAdmin.VALIDATIONERROR': "Validation Error",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "This page was deleted. To edit a page, select it from the left."
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
11
admin/javascript/lang/fr_FR.js
Normal file
11
admin/javascript/lang/fr_FR.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('fr_FR', {
|
||||||
|
'ModelAdmin.SAVED': "Sauvegardé",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Etes-vous sûr de vouloir supprimer ?",
|
||||||
|
'ModelAdmin.DELETED': "Supprimé",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Cette page a été supprimée. Pour éditer cette page, veuillez la sélectionner à gauche.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Etes-vous sûr de vouloir quitter cette page ?\n\nATTENTION: Vos changements n'ont pas été sauvegardés.\n\nCliquez sur OK pour continuer, ou sur Annuler pour rester sur la page actuelle."
|
||||||
|
});
|
||||||
|
}
|
11
admin/javascript/lang/it_IT.js
Normal file
11
admin/javascript/lang/it_IT.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('it_IT', {
|
||||||
|
'ModelAdmin.SAVED': "Salvato",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Si è sicuri di voler eliminare?",
|
||||||
|
'ModelAdmin.DELETED': "Eliminato",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Questa pagina è stata eliminata. Per modificare questa pagine, selezionarla a sinistra.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Siete sicuri di voler uscire da questa pagina?\n\nATTENZIONE: I vostri cambiamenti non sono stati salvati.\n\nCliccare OK per continuare, o su Annulla per rimanere sulla pagina corrente."
|
||||||
|
});
|
||||||
|
}
|
10
admin/javascript/lang/pl_PL.js
Normal file
10
admin/javascript/lang/pl_PL.js
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('pl_PL', {
|
||||||
|
'ModelAdmin.SAVED': "Zapisano",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Napewno usunąć?",
|
||||||
|
'ModelAdmin.DELETED': "Usunięto",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Ta strona została usunięta."
|
||||||
|
});
|
||||||
|
}
|
11
admin/javascript/lang/sk_SK.js
Normal file
11
admin/javascript/lang/sk_SK.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||||||
|
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
|
||||||
|
} else {
|
||||||
|
ss.i18n.addDictionary('sk_SK', {
|
||||||
|
'ModelAdmin.SAVED': "Uložené",
|
||||||
|
'ModelAdmin.REALLYDELETE': "Skutočně chcete zmazať?",
|
||||||
|
'ModelAdmin.DELETED': "Zmazané",
|
||||||
|
'LeftAndMain.PAGEWASDELETED': "Táto stránka bola zmazaná. Pre editáciu stránky, vyberte ju vľavo.",
|
||||||
|
'LeftAndMain.CONFIRMUNSAVED': "Určite chcete opustiť navigáciu z tejto stránky?\n\nUPOZORNENIE: Vaše zmeny neboli uložené.\n\nStlačte OK pre pokračovať, alebo Cancel, ostanete na teto stránke."
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user