From 80d2e4ed31af3fc3fe0adddf21897b5048e8c90f Mon Sep 17 00:00:00 2001 From: Treecat Date: Thu, 6 Apr 2023 11:44:17 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-14316=20chore:=20=E5=90=88=E5=B9=B6?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/base/combination/group.combo.js | 2 +- .../fineui/src/base/combination/loader.js | 2 +- .../fineui/src/base/combination/searcher.js | 2 +- packages/fineui/src/base/pager/pager.js | 4 +-- .../fineui/src/base/single/input/input.js | 6 ++-- packages/fineui/src/case/layer/pane.list.js | 2 +- packages/fineui/src/core/2.base.js | 2 +- packages/fineui/src/core/4.widget.js | 6 ++-- packages/fineui/src/core/5.inject.js | 34 +++++++++---------- packages/fineui/src/core/6.plugin.js | 4 +-- .../src/core/controller/controller.layer.js | 2 +- .../fineui/src/core/listener/listener.show.js | 2 +- packages/fineui/src/core/utils/dom.js | 2 +- .../adapt/absolute.leftrightvertical.js | 4 +-- .../layout/adapt/adapt.leftrightvertical.js | 6 ++-- .../layout/fill/float.fill.horizontal.js | 2 +- .../flex/flex.leftrightvertical.center.js | 2 +- .../float/float.absolute.leftrightvertical.js | 4 +-- .../src/core/wrapper/layout/layout.border.js | 2 +- .../src/core/wrapper/layout/layout.card.js | 6 ++-- .../core/wrapper/layout/layout.division.js | 4 +-- .../src/core/wrapper/layout/layout.grid.js | 2 +- .../src/core/wrapper/layout/layout.tape.js | 4 +-- .../src/core/wrapper/layout/layout.window.js | 4 +-- .../wrapper/layout/middle/middle.center.js | 2 +- .../layout/middle/middle.float.center.js | 2 +- .../layout/middle/middle.horizontal.js | 2 +- .../wrapper/layout/middle/middle.vertical.js | 2 +- .../fineui/src/widget/multiselect/loader.js | 2 +- packages/fineui/webpack/webpack.prod.js | 2 +- 30 files changed, 61 insertions(+), 61 deletions(-) diff --git a/packages/fineui/src/base/combination/group.combo.js b/packages/fineui/src/base/combination/group.combo.js index a44c55477..252828ef8 100644 --- a/packages/fineui/src/base/combination/group.combo.js +++ b/packages/fineui/src/base/combination/group.combo.js @@ -74,7 +74,7 @@ export class ComboGroup extends Widget { } = this.options; const children = items; if (isEmpty(children)) { - throw new Error("ComboGroup构造错误"); + throw new Error("ComboGroup create items error"); } each(children, (i, ch) => { const son = formatEL(ch).el.children; diff --git a/packages/fineui/src/base/combination/loader.js b/packages/fineui/src/base/combination/loader.js index 0f248d852..14ec167bc 100644 --- a/packages/fineui/src/base/combination/loader.js +++ b/packages/fineui/src/base/combination/loader.js @@ -255,7 +255,7 @@ export class Loader extends Widget { { times: 1 }, (...args) => { if (args.length === 0) { - throw new Error("参数不能为空"); + throw new Error("Parameter cannot be empty"); } this.populate(...args); o.onLoaded(); diff --git a/packages/fineui/src/base/combination/searcher.js b/packages/fineui/src/base/combination/searcher.js index 87f1ad1b6..6487e2c34 100644 --- a/packages/fineui/src/base/combination/searcher.js +++ b/packages/fineui/src/base/combination/searcher.js @@ -278,7 +278,7 @@ export class Searcher extends Widget { this.editor.blur(); } catch (e) { if (!this.editor.blur) { - throw new Error("editor没有实现blur方法"); + throw new Error("The editor does not implement the blur method"); } } finally { this.editor.setValue(""); diff --git a/packages/fineui/src/base/pager/pager.js b/packages/fineui/src/base/pager/pager.js index 19f47066f..61baf07e1 100644 --- a/packages/fineui/src/base/pager/pager.js +++ b/packages/fineui/src/base/pager/pager.js @@ -54,8 +54,8 @@ export class Pager extends Widget { jump: emptyFn, // 分页的回调函数 first: false, // 是否显示首页 last: false, // 是否显示尾页 - prev: "上一页", - next: "下一页", + prev: BI.i18nText("BI-Previous_Page"), + next: BI.i18nText("BI-Next_Page"), firstPage: 1, lastPage: () => diff --git a/packages/fineui/src/base/single/input/input.js b/packages/fineui/src/base/single/input/input.js index fdfb95a6d..9ca0207f5 100644 --- a/packages/fineui/src/base/single/input/input.js +++ b/packages/fineui/src/base/single/input/input.js @@ -289,7 +289,7 @@ export class Input extends Single { focus() { if (!this.element.is(":visible")) { - throw new Error("input输入框在不可见下不能focus"); + throw new Error("input cannot be focus when it's invisible"); } if (!this._isEditing === true) { this.element.focus(); @@ -299,7 +299,7 @@ export class Input extends Single { blur() { if (!this.element.is(":visible")) { - throw new Error("input输入框在不可见下不能blur"); + throw new Error("input cannot be blur when it's invisible"); } if (this._isEditing === true) { this.element.blur(); @@ -309,7 +309,7 @@ export class Input extends Single { selectAll() { if (!this.element.is(":visible")) { - throw new Error("input输入框在不可见下不能select"); + throw new Error("input cannot be select when it's invisible"); } this.element.select(); this._isEditing = true; diff --git a/packages/fineui/src/case/layer/pane.list.js b/packages/fineui/src/case/layer/pane.list.js index a34ff3c41..161ae449b 100644 --- a/packages/fineui/src/case/layer/pane.list.js +++ b/packages/fineui/src/case/layer/pane.list.js @@ -165,7 +165,7 @@ export class ListPane extends Pane { { times: 1 }, (...args) => { if (args.length === 0) { - throw new Error("参数不能为空"); + throw new Error("Parameter cannot be empty"); } this.populate(...args); } diff --git a/packages/fineui/src/core/2.base.js b/packages/fineui/src/core/2.base.js index 57d7f657c..288709927 100644 --- a/packages/fineui/src/core/2.base.js +++ b/packages/fineui/src/core/2.base.js @@ -93,7 +93,7 @@ export function isWidget(widget) { export function createWidgets(items, options, context) { if (!isArray(items)) { - throw new Error("items必须是数组", items); + throw new Error("items must be array", items); } if (isWidget(options)) { context = options; diff --git a/packages/fineui/src/core/4.widget.js b/packages/fineui/src/core/4.widget.js index 2e5fae77d..0f22ebc19 100644 --- a/packages/fineui/src/core/4.widget.js +++ b/packages/fineui/src/core/4.widget.js @@ -158,7 +158,7 @@ export class Widget extends OB { if (initCallbackCalled === true) { _global.console && console.error( - "组件: 请检查beforeInit内部的写法,callback只能执行一次" + "widget: please check the beforeInit method. The callback can only be executed once" ); return; @@ -170,7 +170,7 @@ export class Widget extends OB { if (renderCallbackCalled === true) { _global.console && console.error( - "组件: 请检查beforeRender内部的写法,callback只能执行一次" + "widget: please check the beforeRender method. The callback can only be executed once" ); return; @@ -698,7 +698,7 @@ export class Widget extends OB { } name = name || widget.getName() || uniqueId("widget"); if (this._children[name]) { - throw new Error("组件:组件名已存在,不能进行添加"); + throw new Error("widget: widget name already exists, cannot be added"); } widget._setParent && widget._setParent(this); widget.on(Events.DESTROY, function () { diff --git a/packages/fineui/src/core/5.inject.js b/packages/fineui/src/core/5.inject.js index 9c3cb555e..d6f8391c8 100644 --- a/packages/fineui/src/core/5.inject.js +++ b/packages/fineui/src/core/5.inject.js @@ -18,7 +18,7 @@ const moduleInjection = {}, moduleInjectionMap = { export function module(xtype, cls) { if (isNotNull(moduleInjection[xtype])) { - _global.console && console.error(`module: [${xtype}] 已经注册过了`); + _global.console && console.error(`module: [${xtype}] already registered`); } else { if (isFunction(cls)) { cls = cls(); @@ -48,7 +48,7 @@ export function module(xtype, cls) { const constantInjection = {}; export function constant(xtype, cls) { if (isNotNull(constantInjection[xtype])) { - _global.console && console.error(`constant: [${xtype}]已经注册过了`); + _global.console && console.error(`constant: [${xtype}]already registered`); } else { constantInjection[xtype] = cls; } @@ -59,7 +59,7 @@ export function constant(xtype, cls) { const modelInjection = {}; export function model(xtype, cls) { if (isNotNull(modelInjection[xtype])) { - _global.console && console.error(`model: [${xtype}] 已经注册过了`); + _global.console && console.error(`model: [${xtype}] already registered`); } else { modelInjection[xtype] = cls; } @@ -70,7 +70,7 @@ export function model(xtype, cls) { const storeInjection = {}; export function store(xtype, cls) { if (isNotNull(storeInjection[xtype])) { - _global.console && console.error(`store: [${xtype}] 已经注册过了`); + _global.console && console.error(`store: [${xtype}] already registered`); } else { storeInjection[xtype] = cls; } @@ -81,7 +81,7 @@ export function store(xtype, cls) { const serviceInjection = {}; export function service(xtype, cls) { if ((serviceInjection[xtype])) { - _global.console && console.error(`service: [${xtype}] 已经注册过了`); + _global.console && console.error(`service: [${xtype}] already registered`); } serviceInjection[xtype] = cls; @@ -92,7 +92,7 @@ export function service(xtype, cls) { const providerInjection = {}; export function provider(xtype, cls) { if ((providerInjection[xtype])) { - _global.console && console.error(`provider: [${xtype}] 已经注册过了`); + _global.console && console.error(`provider: [${xtype}] already registered`); } else { providerInjection[xtype] = cls; } @@ -145,7 +145,7 @@ const runConfigFunction = (type, configFn) => { } } if (findVersion === true) { - _global.console && console.error(`moduleId: [${module.moduleId}] 接口: [${type}] 接口版本: [${version}] 已过期,版本要求为:`, dependencies[module.moduleId], "=>", moduleInjection[module.moduleId]); + _global.console && console.error(`moduleId: [${module.moduleId}] interface: [${type}] version: [${version}] has expired. The version requirement is: `, dependencies[module.moduleId], "=>", moduleInjection[module.moduleId]); continue; } } @@ -245,7 +245,7 @@ export function point(type, action, pointFn, after) { export const Modules = { getModule (type) { if (!moduleInjection[type]) { - _global.console && console.error(`module: [${type}] 未定义`); + _global.console && console.error(`module: [${type}] undefined`); } return moduleInjection[type]; @@ -258,7 +258,7 @@ export const Modules = { export const Constants = { getConstant (type) { if (isNull(constantInjection[type])) { - _global.console && console.error(`constant: [${type}] 未定义`); + _global.console && console.error(`constant: [${type}] undefined`); } runConfigFunction(type); @@ -307,7 +307,7 @@ function callPoint(inst, types) { export const Models = { getModel (type, config) { if (!modelInjection[type]) { - _global.console && console.error(`model: [${type}] 未定义`); + _global.console && console.error(`model: [${type}] undefined`); } runConfigFunction(type); const inst = new modelInjection[type](config); @@ -323,7 +323,7 @@ const stores = {}; export const Stores = { getStore (type, config) { if (!storeInjection[type]) { - _global.console && console.error(`store: [${type}] 未定义`); + _global.console && console.error(`store: [${type}] undefined`); } if (stores[type]) { return stores[type]; @@ -342,7 +342,7 @@ const services = {}; export const Services = { getService: (type, config) => { if (!serviceInjection[type]) { - _global.console && console.error(`service: [${type}] 未定义`); + _global.console && console.error(`service: [${type}] undefined`); } if (services[type]) { return services[type]; @@ -359,7 +359,7 @@ const providers = {}, export const Providers = { getProvider: (type, config) => { if (!providerInjection[type]) { - _global.console && console.error(`provider: [${type}] 未定义`); + _global.console && console.error(`provider: [${type}] undefined`); } runConfigFunction(type); if (!providers[type]) { @@ -398,7 +398,7 @@ export const Actions = { const kv = {}; export function shortcut(xtype, cls) { if (isNotNull(kv[xtype])) { - _global.console && console.error(`组件: [${xtype}] 已经注册过了`); + _global.console && console.error(`widget: [${xtype}] already registered`); } if (cls) { cls.xtype = xtype; @@ -413,7 +413,7 @@ const createRealWidget = (config, context, lazy) => { const Cls = isFunction(config.type) ? config.type : kv[config.type]; if (!Cls) { - throw new Error(`组件: [${config.type}] 未定义`); + throw new Error(`widget: [${config.type}] undefined`); } let pushed = false; const widget = new Cls(); @@ -495,7 +495,7 @@ export function createWidget(item, options, context, lazy) { if (isWidget(item.el)) { return item.el; } - throw new Error("组件:无法根据item创建组件", item); + throw new Error("widget: Unable to create widget from item ", item); } export function _lazyCreateWidget (item, options, context) { @@ -524,5 +524,5 @@ export function getResource(type, config) { if (providerInjection[type]) { return Providers.getProvider(type, config); } - throw new Error(`未知类型: [${type}] 未定义`); + throw new Error("unknown type: [" + type + "] undefined"); } diff --git a/packages/fineui/src/core/6.plugin.js b/packages/fineui/src/core/6.plugin.js index e0561b4fd..70b3f95d0 100644 --- a/packages/fineui/src/core/6.plugin.js +++ b/packages/fineui/src/core/6.plugin.js @@ -76,7 +76,7 @@ export const Plugin = { _WidgetsPlugin[type] = []; } if (_WidgetsPlugin[type].length > 0) { - console.log("组件已经注册过了!"); + console.log("widget already registered!"); } _WidgetsPlugin[type].push(fn); }, @@ -116,7 +116,7 @@ export const Plugin = { _ObjectPlugin[type] = []; } if (_ObjectPlugin[type].length > 0) { - console.log("对象已经注册过了!"); + console.log("object already registered!"); } _ObjectPlugin[type].push(fn); }, diff --git a/packages/fineui/src/core/controller/controller.layer.js b/packages/fineui/src/core/controller/controller.layer.js index 7364a3ee2..9701a6d60 100644 --- a/packages/fineui/src/core/controller/controller.layer.js +++ b/packages/fineui/src/core/controller/controller.layer.js @@ -154,7 +154,7 @@ export class LayerController extends Controller { add(name, layer, layout) { if (this.has(name)) { - throw new Error("不能创建同名的Layer"); + throw new Error("can not create Layers with the same name"); } layout.setVisible(false); this.layerManager[name] = layer; diff --git a/packages/fineui/src/core/listener/listener.show.js b/packages/fineui/src/core/listener/listener.show.js index f761b9d91..e4bff5ffd 100644 --- a/packages/fineui/src/core/listener/listener.show.js +++ b/packages/fineui/src/core/listener/listener.show.js @@ -30,7 +30,7 @@ export class ShowListener extends OB { v = v || eventObj.getValue(); v = isArray(v) ? (v.length > 1 ? v.toString() : v[0]) : v; if (isNull(v)) { - throw new Error("不能为null"); + throw new Error("canot be null"); } const cardName = cardNameCreator(v); if (!cardLayout.isCardExisted(cardName)) { diff --git a/packages/fineui/src/core/utils/dom.js b/packages/fineui/src/core/utils/dom.js index 2b8fb0790..fcc53e9d7 100644 --- a/packages/fineui/src/core/utils/dom.js +++ b/packages/fineui/src/core/utils/dom.js @@ -19,7 +19,7 @@ export function patchProps(fromElement, toElement) { }); const fromChildren = fromElement.children(), toChildren = toElement.children(); if (fromChildren.length !== toChildren.length) { - throw new Error("不匹配"); + throw new Error("don't match"); } each(fromChildren, (i, child) => { patchProps($(child), $(toChildren[i])); diff --git a/packages/fineui/src/core/wrapper/layout/adapt/absolute.leftrightvertical.js b/packages/fineui/src/core/wrapper/layout/adapt/absolute.leftrightvertical.js index c8e2bc533..aec88d0ba 100644 --- a/packages/fineui/src/core/wrapper/layout/adapt/absolute.leftrightvertical.js +++ b/packages/fineui/src/core/wrapper/layout/adapt/absolute.leftrightvertical.js @@ -111,7 +111,7 @@ export class AbsoluteLeftRightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { @@ -166,7 +166,7 @@ export class AbsoluteRightVerticalAdaptLayout extends Layout { addItem () { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate (items) { diff --git a/packages/fineui/src/core/wrapper/layout/adapt/adapt.leftrightvertical.js b/packages/fineui/src/core/wrapper/layout/adapt/adapt.leftrightvertical.js index 5fd5e9a65..0668c0aa2 100644 --- a/packages/fineui/src/core/wrapper/layout/adapt/adapt.leftrightvertical.js +++ b/packages/fineui/src/core/wrapper/layout/adapt/adapt.leftrightvertical.js @@ -117,7 +117,7 @@ export class LeftRightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { @@ -176,7 +176,7 @@ export class LeftVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { @@ -234,7 +234,7 @@ export class RightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(...args) { diff --git a/packages/fineui/src/core/wrapper/layout/fill/float.fill.horizontal.js b/packages/fineui/src/core/wrapper/layout/fill/float.fill.horizontal.js index cd3475ad8..1d8f8beb0 100644 --- a/packages/fineui/src/core/wrapper/layout/fill/float.fill.horizontal.js +++ b/packages/fineui/src/core/wrapper/layout/fill/float.fill.horizontal.js @@ -35,7 +35,7 @@ export class FloatHorizontalFillLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { diff --git a/packages/fineui/src/core/wrapper/layout/flex/flex.leftrightvertical.center.js b/packages/fineui/src/core/wrapper/layout/flex/flex.leftrightvertical.center.js index db2aeadc7..4292347d3 100644 --- a/packages/fineui/src/core/wrapper/layout/flex/flex.leftrightvertical.center.js +++ b/packages/fineui/src/core/wrapper/layout/flex/flex.leftrightvertical.center.js @@ -105,7 +105,7 @@ export class FlexLeftRightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/core/wrapper/layout/float/float.absolute.leftrightvertical.js b/packages/fineui/src/core/wrapper/layout/float/float.absolute.leftrightvertical.js index 0b545c822..6a1893e08 100644 --- a/packages/fineui/src/core/wrapper/layout/float/float.absolute.leftrightvertical.js +++ b/packages/fineui/src/core/wrapper/layout/float/float.absolute.leftrightvertical.js @@ -128,7 +128,7 @@ export class FloatAbsoluteLeftRightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { @@ -198,7 +198,7 @@ export class FloatAbsoluteRightVerticalAdaptLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/core/wrapper/layout/layout.border.js b/packages/fineui/src/core/wrapper/layout/layout.border.js index 717bc173a..f3a00211e 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.border.js +++ b/packages/fineui/src/core/wrapper/layout/layout.border.js @@ -31,7 +31,7 @@ export class BorderLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(regions) { diff --git a/packages/fineui/src/core/wrapper/layout/layout.card.js b/packages/fineui/src/core/wrapper/layout/layout.card.js index 1dcc0d657..f2f717938 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.card.js +++ b/packages/fineui/src/core/wrapper/layout/layout.card.js @@ -88,7 +88,7 @@ export class CardLayout extends Layout { getCardByName(cardName) { if (!this.isCardExisted(cardName)) { - throw new Error("cardName不存在", cardName); + throw new Error("cardName not exist", cardName); } return this._children[this._getChildName(cardName)]; @@ -104,7 +104,7 @@ export class CardLayout extends Layout { deleteCardByName(cardName) { if (!this.isCardExisted(cardName)) { - throw new Error("cardName不存在", cardName); + throw new Error("cardName not exist", cardName); } const child = this._children[this._getChildName(cardName)]; @@ -114,7 +114,7 @@ export class CardLayout extends Layout { addCardByName(cardName, cardItem) { if (this.isCardExisted(cardName)) { - throw new Error("cardName 已存在", cardName); + throw new Error("cardName already exist", cardName); } const widget = _lazyCreateWidget(cardItem, this); widget.element.css({ diff --git a/packages/fineui/src/core/wrapper/layout/layout.division.js b/packages/fineui/src/core/wrapper/layout/layout.division.js index 92701e7c0..82f09bfc2 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.division.js +++ b/packages/fineui/src/core/wrapper/layout/layout.division.js @@ -34,7 +34,7 @@ export class DivisionLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { @@ -88,7 +88,7 @@ export class DivisionLayout extends Layout { for (let j = 0; j < columns; j++) { let w; if (!map[i][j]) { - throw new Error(`item(${i}${j}) 必须`, map); + throw new Error(`item(${i}${j}) must exist`, map); } if (!this.hasWidget(this._getChildName(`${i}_${j}`))) { w = _lazyCreateWidget(map[i][j]); diff --git a/packages/fineui/src/core/wrapper/layout/layout.grid.js b/packages/fineui/src/core/wrapper/layout/layout.grid.js index 9f06311b9..780bc6015 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.grid.js +++ b/packages/fineui/src/core/wrapper/layout/layout.grid.js @@ -28,7 +28,7 @@ export class GridLayout extends Layout { addItem() { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { diff --git a/packages/fineui/src/core/wrapper/layout/layout.tape.js b/packages/fineui/src/core/wrapper/layout/layout.tape.js index 9ad981f4e..f5e32698a 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.tape.js +++ b/packages/fineui/src/core/wrapper/layout/layout.tape.js @@ -39,7 +39,7 @@ export class HTapeLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { @@ -168,7 +168,7 @@ export class VTapeLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { diff --git a/packages/fineui/src/core/wrapper/layout/layout.window.js b/packages/fineui/src/core/wrapper/layout/layout.window.js index 34dfe422f..89357bd27 100644 --- a/packages/fineui/src/core/wrapper/layout/layout.window.js +++ b/packages/fineui/src/core/wrapper/layout/layout.window.js @@ -41,7 +41,7 @@ export class WindowLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } stroke(items) { @@ -80,7 +80,7 @@ export class WindowLayout extends Layout { for (let i = 0; i < o.rows; i++) { for (let j = 0; j < o.columns; j++) { if (!o.items[i][j]) { - throw new Error("构造错误", o.items); + throw new Error("create items error", o.items); } if (!this.hasWidget(this._getChildName(`${i}_${j}`))) { const w = _lazyCreateWidget(o.items[i][j]); diff --git a/packages/fineui/src/core/wrapper/layout/middle/middle.center.js b/packages/fineui/src/core/wrapper/layout/middle/middle.center.js index 039d90a19..fe5396e31 100644 --- a/packages/fineui/src/core/wrapper/layout/middle/middle.center.js +++ b/packages/fineui/src/core/wrapper/layout/middle/middle.center.js @@ -71,7 +71,7 @@ export class CenterLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/core/wrapper/layout/middle/middle.float.center.js b/packages/fineui/src/core/wrapper/layout/middle/middle.float.center.js index 63b6f157d..11d38b2f6 100644 --- a/packages/fineui/src/core/wrapper/layout/middle/middle.float.center.js +++ b/packages/fineui/src/core/wrapper/layout/middle/middle.float.center.js @@ -71,7 +71,7 @@ export class FloatCenterLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/core/wrapper/layout/middle/middle.horizontal.js b/packages/fineui/src/core/wrapper/layout/middle/middle.horizontal.js index b6fff379c..a5c59b6bf 100644 --- a/packages/fineui/src/core/wrapper/layout/middle/middle.horizontal.js +++ b/packages/fineui/src/core/wrapper/layout/middle/middle.horizontal.js @@ -70,7 +70,7 @@ export class HorizontalCenterLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/core/wrapper/layout/middle/middle.vertical.js b/packages/fineui/src/core/wrapper/layout/middle/middle.vertical.js index a203e205f..30db63466 100644 --- a/packages/fineui/src/core/wrapper/layout/middle/middle.vertical.js +++ b/packages/fineui/src/core/wrapper/layout/middle/middle.vertical.js @@ -70,7 +70,7 @@ export class VerticalCenterLayout extends Layout { addItem(item) { // do nothing - throw new Error("不能添加子组件"); + throw new Error("Cannot add subwidget"); } populate(items) { diff --git a/packages/fineui/src/widget/multiselect/loader.js b/packages/fineui/src/widget/multiselect/loader.js index 07aaab62f..c3aa3ffa3 100644 --- a/packages/fineui/src/widget/multiselect/loader.js +++ b/packages/fineui/src/widget/multiselect/loader.js @@ -207,7 +207,7 @@ export class MultiSelectInnerLoader extends Widget { { times: 1 }, function (items, keyword) { if (arguments.length === 0) { - throw new Error("参数不能为空"); + throw new Error("object already registered"); } self.populate(...arguments); o.onLoaded(); diff --git a/packages/fineui/webpack/webpack.prod.js b/packages/fineui/webpack/webpack.prod.js index d42cff8db..d5eab3742 100644 --- a/packages/fineui/webpack/webpack.prod.js +++ b/packages/fineui/webpack/webpack.prod.js @@ -41,7 +41,7 @@ module.exports = merge(common, { }, }), new webpack.BannerPlugin({ - banner: `time: ${new Date().toLocaleString()}; branch: ${git( + banner: `time: ${new Date().toLocaleString("en-US")}; branch: ${git( "name-rev --name-only HEAD" )} commit: ${git("rev-parse HEAD")}`, }),