m2-webui
Version:
The package is provided web components and utilities based on vue and element-ui.
76 lines (75 loc) • 1.81 kB
JavaScript
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define('m2/locale/en-US', ['module', 'exports'], factory);
} else if (typeof exports !== "undefined") {
factory(module, exports);
} else {
var mod = {
exports: {}
};
factory(mod, mod.exports);
global.M2.lang = global.M2.lang || {};
global.M2.lang.enUS = mod.exports;
}
})(this, function (module, exports) {
'use strict';
exports.__esModule = true;
exports.default = {
m2: {
loading: 'Loading...',
toast: 'Toast Message',
table: {
caption: 'List',
select: 'Select',
number: 'No.',
action: 'Action'
},
modal: {
ok: 'OK',
cancel: 'Cancel'
},
alert: {
title: 'Information',
message: 'Success!'
},
confirm: {
title: 'Delete Confirmation',
message: 'This will delete the data permanently, continue?'
},
queryPanel: {
query: 'Query',
reset: 'Reset'
},
layout: {
navMenu: 'Navigation',
navbar: {
more: 'More'
},
search: {
placeholder: 'Search People, Material, Guideline...'
},
links: {
feedback: 'Suggestion & Feedback',
exit: 'Exit'
},
icons: {
setting: 'Setting',
message: 'Message'
},
backtop: 'Back Top'
},
exception: {
error: {
401: 'You don\'t have the authority to access this page!',
404: 'Sorry, the page has wrong!'
},
back: 'Back',
or: 'or',
home: 'Home',
apply: 'Apply Authority',
contactUs: 'Contact Us: 8008'
}
}
};
module.exports = exports['default'];
});