mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
10 lines
345 B
JavaScript
10 lines
345 B
JavaScript
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."
|
|
});
|
|
} |