重构华夏erp的整体ui风格

This commit is contained in:
季圣华
2019-09-13 22:16:29 +08:00
parent 4b82ad7f29
commit 9247e77398
345 changed files with 119676 additions and 620 deletions

24
erp_web/js/select2/4.0/i18n/en.js vendored Normal file
View File

@@ -0,0 +1,24 @@
(function() {
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
var e = jQuery.fn.select2.amd;
return e.define("select2/i18n/en", [], function() {
return { errorLoading : function() {
return "The results could not be loaded."
}, inputTooLong : function(e) {
var t = e.input.length - e.maximum, n = "Please delete " + t + " character";
return t != 1 && (n += "s"), n
}, inputTooShort : function(e) {
var t = e.minimum - e.input.length, n = "Please enter " + t + " or more characters";
return n
}, loadingMore : function() {
return "Loading more results…"
}, maximumSelected : function(e) {
var t = "You can only select " + e.maximum + " item";
return e.maximum != 1 && (t += "s"), t
}, noResults : function() {
return "No results found"
}, searching : function() {
return "Searching…"
} }
}), { define : e.define, require : e.require }
})();

24
erp_web/js/select2/4.0/i18n/ja_JP.js vendored Normal file
View File

@@ -0,0 +1,24 @@
(function() {
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
var e = jQuery.fn.select2.amd;
return e.define("select2/i18n/zh_CN", [], function() {
return { errorLoading : function() {
return "結果に載せることはできない。"
}, inputTooLong : function(e) {
var t = e.input.length - e.maximum, n = "" + t + "文字を削除してください";
return n
}, inputTooShort : function(e) {
var t = e.minimum - e.input.length, n = "少なくとも" + t + "文字を入力してください";
return n
}, loadingMore : function() {
return "より多くの……"
}, maximumSelected : function(e) {
var t = "選択するしかない" + e.maximum + "項目別";
return t
}, noResults : function() {
return "一致する項目を見つけることができなかった"
}, searching : function() {
return "検索しています……"
} }
}), { define : e.define, require : e.require }
})();

24
erp_web/js/select2/4.0/i18n/zh_CN.js vendored Normal file
View File

@@ -0,0 +1,24 @@
(function() {
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
var e = jQuery.fn.select2.amd;
return e.define("select2/i18n/zh_CN", [], function() {
return { errorLoading : function() {
return "无法载入结果。"
}, inputTooLong : function(e) {
var t = e.input.length - e.maximum, n = "请删除" + t + "个字符";
return n
}, inputTooShort : function(e) {
var t = e.minimum - e.input.length, n = "请再输入至少" + t + "个字符";
return n
}, loadingMore : function() {
return "加载更多..."
}, maximumSelected : function(e) {
var t = "最多只能选择" + e.maximum + "个项目";
return t
}, noResults : function() {
return "没有找到匹配项"
}, searching : function() {
return "正在搜索..."
} }
}), { define : e.define, require : e.require }
})();

22
erp_web/js/select2/4.0/i18n/zh_TW.js vendored Normal file
View File

@@ -0,0 +1,22 @@
(function() {
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
var e = jQuery.fn.select2.amd;
return e.define("select2/i18n/zh_TW", [], function() {
return { inputTooLong : function(e) {
var t = e.input.length - e.maximum, n = "請刪掉" + t + "個字元";
return n
}, inputTooShort : function(e) {
var t = e.minimum - e.input.length, n = "請再輸入" + t + "個字元";
return n
}, loadingMore : function() {
return "載入中…"
}, maximumSelected : function(e) {
var t = "你只能選擇最多" + e.maximum + "項";
return t
}, noResults : function() {
return "沒有找到相符的項目"
}, searching : function() {
return "搜尋中…"
} }
}), { define : e.define, require : e.require }
})();