12 lines
250 B
JavaScript
Vendored
12 lines
250 B
JavaScript
Vendored
(function () {
|
|
'use strict';
|
|
|
|
sceditor.locale['en-GB'] = {
|
|
'Font Color': 'Font Colour',
|
|
'Center': 'Centre',
|
|
dateFormat: 'day/month/year'
|
|
};
|
|
|
|
// set this as the default English locale
|
|
sceditor.locale['en'] = sceditor.locale['en-GB'];
|
|
})();
|