mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
|
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
||
|
console.error('Class ss.i18n not defined');
|
||
|
} else {
|
||
|
ss.i18n.addDictionary('de_DE', {
|
||
|
'VALIDATOR.FIELDREQUIRED': '"%s" wird benötigt'
|
||
|
});
|
||
|
}
|