123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // Default language
- var __lang = 'en_US';
- /**
- * 通用国际化
- *
- * @type
- */
- var $lang = {
- tip : {
- msg : 'prompt',
- confirm : 'prompt',
- warn : 'prompt',
- error : 'prompt',
- errorMsg : 'wrong!',
- waiting : 'Please wait ...',
- loading : 'Loading ...',
- notRecord : 'There are no records. ',
- success : 'Operation successful!',
- failure : 'Operation failed!',
- sure : 'Are you sure? ',
- timeout : 'System Timeout Please log in again!'
- },
- add : {
- success : '{0} successfully added, continue to add it?'
- },
- del : {
- selectRecord : 'Please select the deleted records!',
- success : 'deleted successfully!',
- failure : 'Delete failed!'
- },
- upd : {
- success : '{0} updated successfully, continue to update it?'
- },
- save : {
- success : 'saved successfully!',
- failure : 'Save failed!',
- waiting : 'Saving, please wait ...'
- },
- copy : {
- success : 'copied successfully!',
- failure : 'copy failed!'
- },
- operateTip : {
- selectRecord : 'Please select the record!',
- selectOneRecord : 'has no choice, choose a record!',
- selectMulti : 'has selected a number, select a record!',
- sureDelete : 'sure you want to delete this?',
- continueOp : 'whether to continue operating?',
- continueOperate : ', continues to operate it?',
- successContinue : 'operation is successful, continue to operate it?',
- notSelectEdit : 'has no choice, choose one for editing!',
- selectMultiEdit : 'has selected a number, select an edit!',
- pageTip : 'Please enter a page number in between 1 and {0}'
- },
- button : {
- add : 'add',
- edit : 'Edit',
- save : 'Save',
- del : 'Delete',
- ok : 'OK',
- cancel : 'Cancel',
- close : 'Close',
- selectTemplate : 'Select Template',
- preview : 'Preview',
- yes:'yes',
- no:'no'
- },
- operateType : {
- or : 'or',
- and : 'and',
- exclude : 'exclusion',
- either : 'or',
- also : 'And',
- eq : 'equals',
- notEq : 'does not equal',
- gt : 'greater than',
- lt : 'less than',
- gtEq : 'greater than or equal',
- ltEq : 'less than or equal',
- equals : 'exactly equal',
- equalsIgnoreCase : 'equals (ignoring case)',
- between : 'between the date',
- contains : 'contain',
- notContains : 'does not contain',
- like : 'similar',
- not : 'not',
- rightBrackets : 'right parenthesis',
- leftBrackets : 'left parenthesis',
- plus : 'plus',
- minus : 'minus',
- multiply : 'multiply',
- except : 'Save'
- },
- operate : {
- moveUp : 'Move',
- moveDown : 'Down',
- del : 'Delete',
- defValue : 'default value',
- fixedValue : 'fixed',
- paramAfferent : 'argument to',
- script : 'script',
- formInput : 'form input',
- commonScript : 'common scripting'
- },
- window : {
- status : 'do not enter the form name or form name is entered incorrectly!'
- },
- request : {
- error_page : 'page wrong'
- }
- };
|