Files
OMS/app/desktop/lang/en-us/js/lang.js
2026-01-04 19:08:31 +08:00

107 lines
3.4 KiB
JavaScript

/**
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
LANG_Wpage={
failure:{
status_404:'Page Not Found',
status_401:'Need to login again.<a href="javascript:void(0);" onclick="location.reload();">Click here to login</a>',
status_403:'You do not have permission for this operation',
status:'Request error occurred [HTTP-ERROR-CODE:'
},
loading:'Loading...',
complete:'Loading complete...',
form:{
error:'Form validation failed.',
loading:'Submitting form...',
submiting:'Still in progress...',
complete:'Submission complete!'
}
};
LANG_Cmdrunner={
install:'Install',
uninstall:'Uninstall',
update:'Update',
stop:'Stop',
start:'Start',
download:'Download',
success:'Operation successful',
console:'Open Console',
title:'Dependent apps:'
};
LANG_Datepicker={
months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
dateerror:'Invalid date!'
};
LANG_Dialog={
failure:'Dialog loading failed',
loading:'Loading...',
success:'Loading complete...',
error:'Content loading failed!'
};
LANG_Editor={
error:'Sorry, adding hyperlinks to inserted images is currently not supported.'
};
LANG_Finder={
error:'Please select items to operate.',
refresh_confirm:'Do you want to keep the selected items selected?',
detail:{
request:'Loading details...',
complete:'Details loading complete...',
failure:'Failed to load details---'
}
};
LANG_Pager={
nextpage:'Next Page',
prevpage:'Previous Page'
};
LANG_Validate={
'required':'This field is required',
'number':'Please enter a number',
'digits':'Please enter integers only',
'unsignedint':'Please enter a positive integer',
'unsigned':'Please enter a number greater than or equal to 0',
'positive':'Please enter a number greater than 0',
'alpha':'Please enter English letters only',
'alphaint':'Please enter English letters or numbers',
'alphanum':'Please enter English letters, Chinese characters or numbers',
'date':'Please enter date in yyyy-mm-dd format',
'email':'Please enter a valid email address',
'url':'Please enter a valid URL',
'area':'Please select a complete region',
'greater':'Cannot be less than the previous item',
'requiredonly':'Must select one item'
};
LANG_MessageBox = {
close:'Close'
};
//by Jason @ 2010/12/28 BEGIN
LANG_StduplodFilterError = {
'FE_IMG': 'Only supports jpg, jpeg, gif, png format images',
'FE_THEME': 'Only supports jpg, tgz, tar.gz, theme format templates',
'UE_FILE_ERROR': ['File', 'upload failed'],
'UP_PROGRESS': ['images uploaded to gallery', 'total', 'images'],
'C_DELETE': 'Are you sure you want to delete this image'
};
//END