mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-10 00:15:32 +08:00
98 lines
2.9 KiB
JavaScript
98 lines
2.9 KiB
JavaScript
/**
|
|
* Shopex OMS
|
|
*
|
|
* Copyright (c) 2025 Shopex (http://www.shopex.cn)
|
|
* Licensed under Apache-2.0 with additional terms (See LICENSE file)
|
|
*/
|
|
|
|
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
|