UNPKG

@wcardinal/wcardinal-geditor

Version:

WebGL-based graphic editor, tester and viewer for supervisory systems

51 lines 2.21 kB
import { __extends } from "tslib"; import { EEditorSearchConditionState } from "../../../editor/e-editor-search-condition-state"; import { EEditorSearchConditionType } from "../../../editor/e-editor-search-condition-type"; import { EThemeDefaultEditorSearch } from "./e-theme-default-editor-search"; var EThemeDefaultJaJpEditorSearch = /** @class */ (function (_super) { __extends(EThemeDefaultJaJpEditorSearch, _super); function EThemeDefaultJaJpEditorSearch() { return _super !== null && _super.apply(this, arguments) || this; } EThemeDefaultJaJpEditorSearch.prototype.getLabel = function () { return "検索"; }; EThemeDefaultJaJpEditorSearch.prototype.getInputIdLabel = function () { return "ID"; }; EThemeDefaultJaJpEditorSearch.prototype.getSelectTypeLabel = function () { return "種別"; }; EThemeDefaultJaJpEditorSearch.prototype.toTypeLabel = function (type) { switch (type) { case EEditorSearchConditionType.NONE: return "指定しない"; } return "不明"; }; EThemeDefaultJaJpEditorSearch.prototype.getSelectStateLabel = function () { return "状態"; }; EThemeDefaultJaJpEditorSearch.prototype.toStateLabel = function (state) { switch (state) { case EEditorSearchConditionState.NONE: return "指定しない"; case EEditorSearchConditionState.CONNECTED_FULLY: return "完全に接続"; case EEditorSearchConditionState.CONNECTED_PARTIALLY: return "部分的に接続"; case EEditorSearchConditionState.UNCONNECTED: return "接続していない"; } return "不明"; }; EThemeDefaultJaJpEditorSearch.prototype.getButtonExecuteTitle = function () { return "実行"; }; EThemeDefaultJaJpEditorSearch.prototype.getDialogErrorLabel = function () { return "シェイプが見つかりません"; }; return EThemeDefaultJaJpEditorSearch; }(EThemeDefaultEditorSearch)); export { EThemeDefaultJaJpEditorSearch }; //# sourceMappingURL=e-theme-default-ja-jp-editor-search.js.map