mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 09:05:57 +00:00
10 lines
399 B
JavaScript
10 lines
399 B
JavaScript
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
|
console.error('Class ss.i18n not defined');
|
|
} else {
|
|
ss.i18n.addDictionary('en_US', {
|
|
'GridFieldBulkTools.FINISH_CONFIRM': "You have unsaved changes. Continuing will loose all unsaved data.\n\nDo your really want to continue?",
|
|
'GridFieldBulkTools.EDIT_CHANGED': 'Modified',
|
|
'GridFieldBulkTools.EDIT_UPDATED': 'Saved'
|
|
});
|
|
}
|