@operato/property-panel 9.0.0-beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/.editorconfig +29 -0
  2. package/.storybook/main.js +5 -0
  3. package/.storybook/preview.js +52 -0
  4. package/.storybook/server.mjs +8 -0
  5. package/CHANGELOG.md +11 -0
  6. package/LICENSE +21 -0
  7. package/README.md +76 -0
  8. package/demo/index.html +30 -0
  9. package/dist/src/graphql/board.d.ts +6 -0
  10. package/dist/src/graphql/board.js +130 -0
  11. package/dist/src/graphql/board.js.map +1 -0
  12. package/dist/src/graphql/data-subscription.d.ts +5 -0
  13. package/dist/src/graphql/data-subscription.js +24 -0
  14. package/dist/src/graphql/data-subscription.js.map +1 -0
  15. package/dist/src/graphql/favorite-board.d.ts +1 -0
  16. package/dist/src/graphql/favorite-board.js +23 -0
  17. package/dist/src/graphql/favorite-board.js.map +1 -0
  18. package/dist/src/graphql/group.d.ts +7 -0
  19. package/dist/src/graphql/group.js +125 -0
  20. package/dist/src/graphql/group.js.map +1 -0
  21. package/dist/src/graphql/index.d.ts +4 -0
  22. package/dist/src/graphql/index.js +5 -0
  23. package/dist/src/graphql/index.js.map +1 -0
  24. package/dist/src/graphql/play-group.d.ts +13 -0
  25. package/dist/src/graphql/play-group.js +205 -0
  26. package/dist/src/graphql/play-group.js.map +1 -0
  27. package/dist/src/graphql/scenario.d.ts +6 -0
  28. package/dist/src/graphql/scenario.js +69 -0
  29. package/dist/src/graphql/scenario.js.map +1 -0
  30. package/dist/src/index.d.ts +7 -0
  31. package/dist/src/index.js +8 -0
  32. package/dist/src/index.js.map +1 -0
  33. package/dist/src/ox-property-panel.d.ts +46 -0
  34. package/dist/src/ox-property-panel.js +346 -0
  35. package/dist/src/ox-property-panel.js.map +1 -0
  36. package/dist/src/property-panel/abstract-property.d.ts +10 -0
  37. package/dist/src/property-panel/abstract-property.js +53 -0
  38. package/dist/src/property-panel/abstract-property.js.map +1 -0
  39. package/dist/src/property-panel/data-binding/data-binding-mapper.d.ts +58 -0
  40. package/dist/src/property-panel/data-binding/data-binding-mapper.js +380 -0
  41. package/dist/src/property-panel/data-binding/data-binding-mapper.js.map +1 -0
  42. package/dist/src/property-panel/data-binding/data-binding-value-map.d.ts +6 -0
  43. package/dist/src/property-panel/data-binding/data-binding-value-map.js +20 -0
  44. package/dist/src/property-panel/data-binding/data-binding-value-map.js.map +1 -0
  45. package/dist/src/property-panel/data-binding/data-binding-value-range.d.ts +6 -0
  46. package/dist/src/property-panel/data-binding/data-binding-value-range.js +20 -0
  47. package/dist/src/property-panel/data-binding/data-binding-value-range.js.map +1 -0
  48. package/dist/src/property-panel/data-binding/data-binding.d.ts +44 -0
  49. package/dist/src/property-panel/data-binding/data-binding.js +442 -0
  50. package/dist/src/property-panel/data-binding/data-binding.js.map +1 -0
  51. package/dist/src/property-panel/effects/effects.d.ts +24 -0
  52. package/dist/src/property-panel/effects/effects.js +72 -0
  53. package/dist/src/property-panel/effects/effects.js.map +1 -0
  54. package/dist/src/property-panel/effects/property-animation.d.ts +23 -0
  55. package/dist/src/property-panel/effects/property-animation.js +147 -0
  56. package/dist/src/property-panel/effects/property-animation.js.map +1 -0
  57. package/dist/src/property-panel/effects/property-animations.d.ts +22 -0
  58. package/dist/src/property-panel/effects/property-animations.js +70 -0
  59. package/dist/src/property-panel/effects/property-animations.js.map +1 -0
  60. package/dist/src/property-panel/effects/property-event-hover.d.ts +21 -0
  61. package/dist/src/property-panel/effects/property-event-hover.js +193 -0
  62. package/dist/src/property-panel/effects/property-event-hover.js.map +1 -0
  63. package/dist/src/property-panel/effects/property-event-tap.d.ts +36 -0
  64. package/dist/src/property-panel/effects/property-event-tap.js +262 -0
  65. package/dist/src/property-panel/effects/property-event-tap.js.map +1 -0
  66. package/dist/src/property-panel/effects/property-event.d.ts +22 -0
  67. package/dist/src/property-panel/effects/property-event.js +64 -0
  68. package/dist/src/property-panel/effects/property-event.js.map +1 -0
  69. package/dist/src/property-panel/effects/property-shadow.d.ts +23 -0
  70. package/dist/src/property-panel/effects/property-shadow.js +66 -0
  71. package/dist/src/property-panel/effects/property-shadow.js.map +1 -0
  72. package/dist/src/property-panel/effects/value-converter.d.ts +1 -0
  73. package/dist/src/property-panel/effects/value-converter.js +17 -0
  74. package/dist/src/property-panel/effects/value-converter.js.map +1 -0
  75. package/dist/src/property-panel/inspector/inspector.d.ts +27 -0
  76. package/dist/src/property-panel/inspector/inspector.js +357 -0
  77. package/dist/src/property-panel/inspector/inspector.js.map +1 -0
  78. package/dist/src/property-panel/shapes/shapes.d.ts +26 -0
  79. package/dist/src/property-panel/shapes/shapes.js +312 -0
  80. package/dist/src/property-panel/shapes/shapes.js.map +1 -0
  81. package/dist/src/property-panel/specifics/specific-properties-builder.d.ts +16 -0
  82. package/dist/src/property-panel/specifics/specific-properties-builder.js +138 -0
  83. package/dist/src/property-panel/specifics/specific-properties-builder.js.map +1 -0
  84. package/dist/src/property-panel/specifics/specifics.d.ts +25 -0
  85. package/dist/src/property-panel/specifics/specifics.js +84 -0
  86. package/dist/src/property-panel/specifics/specifics.js.map +1 -0
  87. package/dist/src/property-panel/styles/styles.d.ts +23 -0
  88. package/dist/src/property-panel/styles/styles.js +269 -0
  89. package/dist/src/property-panel/styles/styles.js.map +1 -0
  90. package/dist/src/types.d.ts +43 -0
  91. package/dist/src/types.js +2 -0
  92. package/dist/src/types.js.map +1 -0
  93. package/dist/stories/index.stories.d.ts +22 -0
  94. package/dist/stories/index.stories.js +121 -0
  95. package/dist/stories/index.stories.js.map +1 -0
  96. package/dist/stories/input-table-property.stories.d.ts +21 -0
  97. package/dist/stories/input-table-property.stories.js +84 -0
  98. package/dist/stories/input-table-property.stories.js.map +1 -0
  99. package/dist/test/ox-property-panel.test.d.ts +1 -0
  100. package/dist/test/ox-property-panel.test.js +24 -0
  101. package/dist/test/ox-property-panel.test.js.map +1 -0
  102. package/dist/tsconfig.tsbuildinfo +1 -0
  103. package/package.json +108 -0
  104. package/src/graphql/board.ts +144 -0
  105. package/src/graphql/data-subscription.ts +30 -0
  106. package/src/graphql/favorite-board.ts +25 -0
  107. package/src/graphql/group.ts +138 -0
  108. package/src/graphql/index.ts +4 -0
  109. package/src/graphql/play-group.ts +225 -0
  110. package/src/graphql/scenario.ts +79 -0
  111. package/src/index.ts +8 -0
  112. package/src/ox-property-panel.ts +347 -0
  113. package/src/property-panel/abstract-property.ts +67 -0
  114. package/src/property-panel/data-binding/data-binding-mapper.ts +412 -0
  115. package/src/property-panel/data-binding/data-binding-value-map.ts +19 -0
  116. package/src/property-panel/data-binding/data-binding-value-range.ts +19 -0
  117. package/src/property-panel/data-binding/data-binding.ts +464 -0
  118. package/src/property-panel/effects/effects.ts +77 -0
  119. package/src/property-panel/effects/property-animation.ts +155 -0
  120. package/src/property-panel/effects/property-animations.ts +74 -0
  121. package/src/property-panel/effects/property-event-hover.ts +212 -0
  122. package/src/property-panel/effects/property-event-tap.ts +269 -0
  123. package/src/property-panel/effects/property-event.ts +73 -0
  124. package/src/property-panel/effects/property-shadow.ts +77 -0
  125. package/src/property-panel/effects/value-converter.ts +17 -0
  126. package/src/property-panel/inspector/inspector.ts +407 -0
  127. package/src/property-panel/shapes/shapes.ts +321 -0
  128. package/src/property-panel/specifics/specific-properties-builder.ts +152 -0
  129. package/src/property-panel/specifics/specifics.ts +81 -0
  130. package/src/property-panel/styles/styles.ts +287 -0
  131. package/src/types.ts +63 -0
  132. package/stories/index.stories.ts +134 -0
  133. package/stories/input-table-property.stories.ts +96 -0
  134. package/test/ox-property-panel.test.ts +32 -0
  135. package/themes/app-theme.css +138 -0
  136. package/themes/calendar-theme.css +61 -0
  137. package/themes/dark.css +51 -0
  138. package/themes/grist-theme.css +175 -0
  139. package/themes/help-theme.css +57 -0
  140. package/themes/layout-theme.css +94 -0
  141. package/themes/light.css +51 -0
  142. package/themes/material-theme.css +23 -0
  143. package/themes/md-typescale-styles.css +100 -0
  144. package/themes/oops-theme.css +22 -0
  145. package/themes/report-theme.css +47 -0
  146. package/themes/spacing.css +23 -0
  147. package/themes/state-color.css +6 -0
  148. package/themes/tooltip-theme.css +11 -0
  149. package/translations/en.json +723 -0
  150. package/translations/ja.json +727 -0
  151. package/translations/ko.json +727 -0
  152. package/translations/ms.json +609 -0
  153. package/translations/zh.json +726 -0
  154. package/tsconfig.json +25 -0
  155. package/web-dev-server.config.mjs +27 -0
  156. package/web-test-runner.config.mjs +41 -0
@@ -0,0 +1,723 @@
1
+ {
2
+ "button.accept": "Accept",
3
+ "button.account": "account",
4
+ "button.add": "Add",
5
+ "button.align-bottom": "align bottom",
6
+ "button.align-center": "align center",
7
+ "button.align-left": "align left",
8
+ "button.align-middle": "align middle",
9
+ "button.align-right": "align right",
10
+ "button.align-top": "align top",
11
+ "button.back-to-info": "back to information",
12
+ "button.bring-forward": "bring forward",
13
+ "button.bring-to-back": "bring to back",
14
+ "button.bring-to-front": "bring to front",
15
+ "button.cancel": "cancel",
16
+ "button.cancel-request-confirm": "Re-Edit",
17
+ "button.cancel-request-release": "Re-Edit",
18
+ "button.change_password": "Change Password",
19
+ "button.check": "Check",
20
+ "button.check-initialized": "Check Initialized Settings",
21
+ "button.clear": "Clear",
22
+ "button.close": "Close",
23
+ "button.confirm": "confirm",
24
+ "button.copy": "copy",
25
+ "button.create": "create",
26
+ "button.decrease-font": "decrease font",
27
+ "button.delete": "delete",
28
+ "button.detail": "detail",
29
+ "button.edit": "edit",
30
+ "button.edit-group": "Edit Group",
31
+ "button.export": "export",
32
+ "button.export-locale-file": "export locale files",
33
+ "button.font-selector": "Font Selector",
34
+ "button.fullscreen": "fullscreen",
35
+ "button.group": "group",
36
+ "button.history": "print history",
37
+ "button.image-download": "image download",
38
+ "button.import-board": "import board",
39
+ "button.increase-font": "increase font",
40
+ "button.info": "info",
41
+ "button.init-setting": "Create Settings",
42
+ "button.logout": "logout",
43
+ "button.modeller": "modeller",
44
+ "button.new": "new",
45
+ "button.new-group": "New Group",
46
+ "button.open-import": "Import",
47
+ "button.profile": "profile",
48
+ "button.redo": "redo",
49
+ "button.refresh": "refresh",
50
+ "button.register-template": "register template",
51
+ "button.reject": "Reject",
52
+ "button.release": "release",
53
+ "button.rename": "rename",
54
+ "button.request-confirm": "Finish",
55
+ "button.request-release": "finish",
56
+ "button.request_active": "Activating",
57
+ "button.request_role": "Request Role",
58
+ "button.reset": "Reset",
59
+ "button.reset_password": "Reset",
60
+ "button.revert-board-version": "revert version",
61
+ "button.role-list": "Roles",
62
+ "button.save": "save",
63
+ "button.script": "script",
64
+ "button.self-confirm": "Self confirm",
65
+ "button.send-backward": "send backward",
66
+ "button.setting": "setting",
67
+ "button.setup": "Setup",
68
+ "button.sign_in": "Login",
69
+ "button.sign_up": "Sign Up",
70
+ "button.submit": "Submit",
71
+ "button.toggle-property-panel": "toggle property panel",
72
+ "button.toggle_sidebar": "Menu Toggle",
73
+ "button.undo": "undo",
74
+ "button.ungroup": "ungroup",
75
+ "button.update": "update",
76
+ "button.upload": "Upload",
77
+ "button.version-up": "version up",
78
+ "button.view": "view",
79
+ "button.view-short": "view",
80
+ "button.zoom-in": "zoom in",
81
+ "button.zoom-out": "zoom out",
82
+ "component.audio": "audio",
83
+ "component.both arrow": "both arrow",
84
+ "component.color image": "color image",
85
+ "component.container": "container",
86
+ "component.dash": "dash",
87
+ "component.donut": "donut",
88
+ "component.ellipse": "ellipse",
89
+ "component.embed": "embed",
90
+ "component.gif image": "gif image",
91
+ "component.gif-view": "gif-view",
92
+ "component.global-ref": "global reference",
93
+ "component.gray image": "gray image",
94
+ "component.group": "group",
95
+ "component.image-view": "image-view",
96
+ "component.info-window": "info window",
97
+ "component.line": "line",
98
+ "component.local-ref": "local reference",
99
+ "component.model-layer": "canvas",
100
+ "component.ortholine": "ortholine",
101
+ "component.polygon": "polygon",
102
+ "component.polyline": "polyline",
103
+ "component.popup": "popup",
104
+ "component.rect": "rect",
105
+ "component.single arrow": "single arrow",
106
+ "component.star": "star",
107
+ "component.text": "text",
108
+ "component.triangle": "triangle",
109
+ "component.video": "video",
110
+ "error.MAX_LENGTH_OF_X_IS_Y": "Maximum Length of {name} is {value}",
111
+ "error.SERVER-ERROR": "An error occurred at the server.({msg})",
112
+ "error.SHOULD_NOT_BE_EMPTY": "value '{value}' should not be empty",
113
+ "error.count over license limit": "Your board or domain count over license limit!",
114
+ "error.invalid license key": "Invalid license key!",
115
+ "error.license expiration notice": "License Expiration Notice",
116
+ "error.license key is empty": "License Key is empty!",
117
+ "error.license key is not certified": "License Key is not certified!",
118
+ "error.license token not valid": "Your license token data is not valid!",
119
+ "error.setting-error": "Setting error",
120
+ "error.your license due date is x, please renewal your license!": "Your license due date is {x}, please renewal your license!",
121
+ "error.your license is expired! expired date is [x]": "Your license is expired! Expired date is [{x}]",
122
+ "error.your license is not valid in this host": "Your license is not valid in this host!",
123
+ "field.email": "E-mail",
124
+ "field.password": "password",
125
+ "field.tags": "tags",
126
+ "field.visibility": "visibility",
127
+ "label.3dcontainer-style": "3d containerstyle",
128
+ "label.3dish": "3D",
129
+ "label.3dmode": "3D Mode",
130
+ "label.accessor": "accessor",
131
+ "label.action": "action",
132
+ "label.activation": "Active",
133
+ "label.active": "Active",
134
+ "label.active-fill-style": "active fill style",
135
+ "label.active-font-color": "active font color",
136
+ "label.active-line-color": "active line color",
137
+ "label.active-line-width": "active line width",
138
+ "label.active_request": "Request",
139
+ "label.add": "add",
140
+ "label.add-new-font-family": "add new font-family",
141
+ "label.admin": "Admin",
142
+ "label.admin-email": "Admin Email",
143
+ "label.admin-name": "Admin Name",
144
+ "label.agent-url": "Agent URL",
145
+ "label.align": "Align",
146
+ "label.all": "all",
147
+ "label.animation": "animation",
148
+ "label.animation-interval": "animation-interval",
149
+ "label.anti-alias": "anti aliasing",
150
+ "label.api-key": "api key",
151
+ "label.api-url": "API URL",
152
+ "label.attachment": "Attachment",
153
+ "label.attachment-id": "Attachment ID",
154
+ "label.auth": "authority",
155
+ "label.auth-domain": "auth domain",
156
+ "label.authorization": "authorization",
157
+ "label.auto refresh board view": "auto refresh board view",
158
+ "label.auto-rotate": "auto rotate",
159
+ "label.autoplay": "autoplay",
160
+ "label.axes": "axes",
161
+ "label.axis-max": "Max",
162
+ "label.axis-max-auto": "Max Auto",
163
+ "label.axis-min": "Min",
164
+ "label.axis-min-auto": "Min Auto",
165
+ "label.axis-step-size": "Step",
166
+ "label.back-side-template": "back side template",
167
+ "label.background-color": "background color",
168
+ "label.base-url": "Base URL",
169
+ "label.begin-size": "begin size",
170
+ "label.begin-type": "begin type",
171
+ "label.bevel": "bevel",
172
+ "label.blank-stroke-style": "blank stoke style",
173
+ "label.board": "board",
174
+ "label.board-copy": "board copy (domain, group)",
175
+ "label.board-template": "board template",
176
+ "label.boolean": "boolean",
177
+ "label.border-color": "border color",
178
+ "label.border-style": "border style",
179
+ "label.border-type": "border type",
180
+ "label.border-width": "border width",
181
+ "label.box-color": "box color",
182
+ "label.brand-name": "Brand Name",
183
+ "label.brand_name": "Brand Name",
184
+ "label.broker": "broker",
185
+ "label.cap-type": "cap type",
186
+ "label.change-group": "Group Change",
187
+ "label.chart": "chart",
188
+ "label.chart-style": "chart style",
189
+ "label.chart-type": "Chart type",
190
+ "label.checked": "checked",
191
+ "label.child-data-path": "child data path",
192
+ "label.cl-border-color": "CL border color",
193
+ "label.cl-border-width": "CL border width",
194
+ "label.class": "class",
195
+ "label.client-id": "client ID",
196
+ "label.closable": "closable",
197
+ "label.color": "Color",
198
+ "label.color-stops": "color stops",
199
+ "label.columns": "columns",
200
+ "label.command": "Command",
201
+ "label.compass-style": "compass style",
202
+ "label.confirmed-password": "Confirmed Password",
203
+ "label.confirmed_password": "Confirmed Password",
204
+ "label.confirmer": "Releaser",
205
+ "label.connection": "connection",
206
+ "label.content": "Content",
207
+ "label.conveyor-type": "conveyor type",
208
+ "label.copy-value-to-data": "copy value to data",
209
+ "label.count": "count",
210
+ "label.create": "create",
211
+ "label.created-at": "created at",
212
+ "label.creator": "Creator",
213
+ "label.cross-origin": "Cross-Origin",
214
+ "label.current_password": "Current Password",
215
+ "label.curved": "curved",
216
+ "label.cycle": "Cycle",
217
+ "label.data": "data",
218
+ "label.data-format": "data format",
219
+ "label.data-index": "data index",
220
+ "label.data-key": "Data Key",
221
+ "label.data-spread": "data spread",
222
+ "label.data-type": "Data type",
223
+ "label.database-url": "database url",
224
+ "label.deactivation": "Deactive",
225
+ "label.debug": "debug",
226
+ "label.default-color": "default color",
227
+ "label.default-image-storage": "Default Image Storage",
228
+ "label.delay": "Delay",
229
+ "label.delete": "Delete",
230
+ "label.depth": "depth",
231
+ "label.description": "description",
232
+ "label.dimension": "dimension",
233
+ "label.direction": "Direction",
234
+ "label.disabled": "disabled",
235
+ "label.display": "Display",
236
+ "label.display-tick": "Display Tick",
237
+ "label.domain": "domain",
238
+ "label.domain-name": "Domain Name",
239
+ "label.domain-url": "Domain URL",
240
+ "label.domain_app": "domain application",
241
+ "label.donut-style": "donut style",
242
+ "label.draggable": "draggable",
243
+ "label.duration": "Duration",
244
+ "label.email-id": "email ID",
245
+ "label.email_address": "Email Address",
246
+ "label.emphasize": "Emphasize",
247
+ "label.end-alpha": "End Alpha",
248
+ "label.end-angle": "end angle",
249
+ "label.end-size": "end size",
250
+ "label.end-type": "end type",
251
+ "label.end-value": "end value",
252
+ "label.error": "Error",
253
+ "label.eval": "eval",
254
+ "label.far": "Far",
255
+ "label.field": "field",
256
+ "label.fill": "Fill",
257
+ "label.fill-style": "fill style",
258
+ "label.final_confirm": "Final Confirmation",
259
+ "label.fit": "Fit",
260
+ "label.floor": "floor",
261
+ "label.font": "font",
262
+ "label.font-code": "Font Code",
263
+ "label.font-color": "font color",
264
+ "label.font-family": "font family",
265
+ "label.font-size": "font size",
266
+ "label.format": "format",
267
+ "label.fov": "FOV",
268
+ "label.front-side-template": "front side template",
269
+ "label.gauge-style": "gauge style",
270
+ "label.gradient": "gradient",
271
+ "label.grid-line": "Grid Line",
272
+ "label.group": "Group",
273
+ "label.headless-link": "headless link",
274
+ "label.headless-link by-name": "generate by name",
275
+ "label.headless-link query-key": "query key",
276
+ "label.headless-link query-parameters": "query parameters",
277
+ "label.headless-link target-appliance": "target appliance",
278
+ "label.height": "height",
279
+ "label.hidden": "hidden",
280
+ "label.hide-empty-stock": "hide empty stock",
281
+ "label.hide-rack-frame": "hide rack frame",
282
+ "label.horizontal": "horizontal",
283
+ "label.hour-width": "Hour Width",
284
+ "label.hover-event": "Hover Event",
285
+ "label.href": "href",
286
+ "label.id": "ID",
287
+ "label.identifier": "Identifier",
288
+ "label.image": "Image",
289
+ "label.image-box": "Image Box",
290
+ "label.image-selector": "Image Selector",
291
+ "label.image-source": "Source",
292
+ "label.image-src": "Image Source",
293
+ "label.image-view": "image view",
294
+ "label.in-text": "in text",
295
+ "label.indoor-style": "indoor style",
296
+ "label.info": "Information",
297
+ "label.info-window": "info. window",
298
+ "label.information": "information",
299
+ "label.initial-data": "initial data",
300
+ "label.inner-circle-color": "Inner Circle Color",
301
+ "label.inner-circle-fill-style": "inner circle fill style",
302
+ "label.inner-circle-size": "Inner Circle Size",
303
+ "label.innercircle-fillstyle": "innercircle fill style",
304
+ "label.input-data": "input data",
305
+ "label.intent-sensitive": "Intent Sensitive",
306
+ "label.intext": "intext",
307
+ "label.is-empty": "is empty",
308
+ "label.is-local-time": "is localtime",
309
+ "label.item-hidden": "hidden",
310
+ "label.join-type": "join type",
311
+ "label.key": "key",
312
+ "label.keyword": "Keyword",
313
+ "label.label": "label",
314
+ "label.label-print": "label print",
315
+ "label.label-rotation": "label rotation",
316
+ "label.label-thumbnail-storage": "Label Thumbnail Storage",
317
+ "label.last-sign-in-at": "last sign in at",
318
+ "label.latitude": "latitude",
319
+ "label.layout": "layout",
320
+ "label.leg-color": "leg color",
321
+ "label.legend": "Legend",
322
+ "label.legend-position": "legend position",
323
+ "label.legend-target": "Legend Target",
324
+ "label.line-color": "Line Color",
325
+ "label.line-height": "Line Height",
326
+ "label.line-style": "line style",
327
+ "label.line-tension": "line tension",
328
+ "label.line-type": "line type",
329
+ "label.line-width": "Line Width",
330
+ "label.lines": "Lines",
331
+ "label.locale": "Locale",
332
+ "label.location": "location",
333
+ "label.location-field": "Location Field",
334
+ "label.location-increase-pattern": "location increase pattern",
335
+ "label.location-pattern": "location pattern",
336
+ "label.locked": "locked",
337
+ "label.login": "Login",
338
+ "label.longitude": "longitude",
339
+ "label.loop": "loop",
340
+ "label.mac-address": "Mac Address",
341
+ "label.major": "Major",
342
+ "label.manual": "manual",
343
+ "label.map": "map",
344
+ "label.material": "material",
345
+ "label.max": "max",
346
+ "label.max-length": "max length",
347
+ "label.menu": "Menu",
348
+ "label.messaging-sender-id": "messaging sender ID",
349
+ "label.method": "method",
350
+ "label.min": "min",
351
+ "label.min-section": "min section",
352
+ "label.min-unit": "min unit",
353
+ "label.minimizable": "minimizable",
354
+ "label.minimized": "minimized",
355
+ "label.minor": "Minor",
356
+ "label.minute-width": "Minute Width",
357
+ "label.miter": "miter",
358
+ "label.mm": "mm",
359
+ "label.modal": "modal",
360
+ "label.mode": "mode",
361
+ "label.move_to_admin": "Move to Administrator Page",
362
+ "label.multi-axis": "Multi Axis",
363
+ "label.multiple": "multiple",
364
+ "label.name": "Name",
365
+ "label.ndns": "No Data No Show",
366
+ "label.ndnsp": "No Data No Spreading",
367
+ "label.near": "Near",
368
+ "label.needle-fill-style": "needle fill style",
369
+ "label.needle-fillstyle": "needle fill style",
370
+ "label.needle-round": "Needle Round",
371
+ "label.needle-size": "needle size",
372
+ "label.new_password": "New Password",
373
+ "label.no-fill": "no fill",
374
+ "label.no-repeat": "no repeat",
375
+ "label.number": "number",
376
+ "label.offset-x": "Offset X",
377
+ "label.offset-y": "Offset Y",
378
+ "label.opacity": "opacity",
379
+ "label.opinion": "opinion",
380
+ "label.options": "options",
381
+ "label.padding": "padding",
382
+ "label.partial-spreading": "partial spreading",
383
+ "label.passcode": "passcode",
384
+ "label.path": "path",
385
+ "label.pattern": "pattern",
386
+ "label.period": "period",
387
+ "label.persistent-data": "persistent data",
388
+ "label.picking-location": "picking location",
389
+ "label.picking-order": "picking order",
390
+ "label.placeholder": "placeholder",
391
+ "label.play": "play",
392
+ "label.play-group": "play group",
393
+ "label.player": "player",
394
+ "label.pls-name-font-family": "pls. name font-family",
395
+ "label.point-bg-color": "Point Bg Color",
396
+ "label.point-border-color": "point border color",
397
+ "label.point-border-width": "point border width",
398
+ "label.point-shape": "Point Shape",
399
+ "label.point-size": "Point Size",
400
+ "label.popup-scene": "Popup Scene",
401
+ "label.port": "port",
402
+ "label.position": "Position",
403
+ "label.precision": "precision",
404
+ "label.pressed": "pressed",
405
+ "label.print-history": "Print History",
406
+ "label.printed-at": "Printed At",
407
+ "label.printer": "Printer",
408
+ "label.processed_at": "processed at",
409
+ "label.processor": "processor",
410
+ "label.progress-style": "progress style",
411
+ "label.project-id": "project ID",
412
+ "label.property": "property",
413
+ "label.provider": "provider",
414
+ "label.qos": "qos",
415
+ "label.qty": "qty.",
416
+ "label.rack-style": "rack style",
417
+ "label.range": "range",
418
+ "label.ratio": "ratio",
419
+ "label.readonly": "readonly",
420
+ "label.rect-style": "rect style",
421
+ "label.ref": "reference",
422
+ "label.released_at": "Released at",
423
+ "label.releases": "releases",
424
+ "label.remove": "remove",
425
+ "label.rename": "Rename",
426
+ "label.repeat": "Repeat",
427
+ "label.request": "Request",
428
+ "label.requested_at": "requested at",
429
+ "label.requester": "requester",
430
+ "label.reset-password": "Reset Password",
431
+ "label.reset_password": "Reset Password",
432
+ "label.restore-on-leave": "restore on leave",
433
+ "label.retain": "retain",
434
+ "label.retention": "retention",
435
+ "label.reverse": "reverse",
436
+ "label.role": "Role",
437
+ "label.roll-width": "roll width",
438
+ "label.rotate": "rotate",
439
+ "label.rotation": "rotation",
440
+ "label.rotation-speed": "Rotation Speed",
441
+ "label.rotation-x": "rot. X",
442
+ "label.rotation-y": "rot. Y",
443
+ "label.rotation-z": "rot. Z",
444
+ "label.round": "round",
445
+ "label.rows": "rows",
446
+ "label.rule-type": "rule type",
447
+ "label.save-new-board": "save new board",
448
+ "label.scale": "scale",
449
+ "label.scale-h": "height scale",
450
+ "label.scale-height": "Scale Height",
451
+ "label.scale-w": "width scale",
452
+ "label.scale-width": "Scale Width",
453
+ "label.scene-count": "Scene count",
454
+ "label.scene-number": "SCENE Number",
455
+ "label.screen-size": "Screen Size",
456
+ "label.second-width": "Second Width",
457
+ "label.section": "section",
458
+ "label.series": "series",
459
+ "label.shadow": "shadow",
460
+ "label.shadowOffsetX": "Offset-X",
461
+ "label.shadowOffsetY": "Offset-Y",
462
+ "label.shadowSize": "Size",
463
+ "label.shelf-pattern": "shelf pattern",
464
+ "label.shelves": "shelves",
465
+ "label.show": "show",
466
+ "label.show-end-value": "show end value",
467
+ "label.show-legend": "show legend",
468
+ "label.show-needle": "show needle",
469
+ "label.show-number": "Show Number",
470
+ "label.show-second": "Show Second",
471
+ "label.show-start-value": "show start value",
472
+ "label.show-step-line": "show step line",
473
+ "label.show-step-text": "show step text",
474
+ "label.show-sub-step": "show sub step",
475
+ "label.show-substep": "show substep",
476
+ "label.show-text": "ShowText",
477
+ "label.sign-up": "Sign Up",
478
+ "label.sign_up": "Sign Up",
479
+ "label.size": "size",
480
+ "label.skip-numbering": "Skip Numbering",
481
+ "label.solid": "solid",
482
+ "label.source": "source",
483
+ "label.spc-option": "SPC option",
484
+ "label.spread-on-init": "spread on init",
485
+ "label.square": "square",
486
+ "label.src": "source",
487
+ "label.ssl": "SSL",
488
+ "label.stacked": "Stacked",
489
+ "label.star-style": "star style",
490
+ "label.start-alpha": "Start Alpha",
491
+ "label.start-angle": "start angle",
492
+ "label.start-section": "Start Section",
493
+ "label.start-unit": "Start Unit",
494
+ "label.start-value": "start value",
495
+ "label.status": "Status",
496
+ "label.step": "step",
497
+ "label.step-fill-style": "step fill style",
498
+ "label.step-fillstyle": "step fill style",
499
+ "label.step-needle-size": "step needle size",
500
+ "label.step-text-size": "step text size",
501
+ "label.stock-scale": "Stock Scale",
502
+ "label.storage": "Storage",
503
+ "label.storage-bucket": "storage bucket",
504
+ "label.storage-root": "Storage Root",
505
+ "label.string": "string",
506
+ "label.stroke-style": "stroke style",
507
+ "label.style": "style",
508
+ "label.sub-step": "sub step",
509
+ "label.subdomain": "Subdomain",
510
+ "label.subject": "subject",
511
+ "label.submit-on-change": "submit on change",
512
+ "label.submit-on-load": "submit on load",
513
+ "label.substep": "substep",
514
+ "label.subtext-size": "subtext size",
515
+ "label.support-markdown": "markdown formatting",
516
+ "label.symbol": "Symbol",
517
+ "label.system_flag": "System Flag",
518
+ "label.tab-active-index": "tab active index",
519
+ "label.tab-reference": "tab reference",
520
+ "label.tag": "tag",
521
+ "label.tap-event": "Tap Event",
522
+ "label.target": "target",
523
+ "label.target-axis": "Target Axis",
524
+ "label.target-map": "target map",
525
+ "label.template": "template",
526
+ "label.template-prefix": "template prefix",
527
+ "label.text": "text",
528
+ "label.text-align": "Text Align",
529
+ "label.text-box": "text box",
530
+ "label.text-fill-style": "text color",
531
+ "label.text-fillstyle": "text fill style",
532
+ "label.text-format": "text format",
533
+ "label.text-overflow": "text overflow",
534
+ "label.text-size": "Text Size",
535
+ "label.text-style": "text style",
536
+ "label.text-wrap": "text wrap",
537
+ "label.textbox": "text box",
538
+ "label.theme": "theme",
539
+ "label.theta": "Theta",
540
+ "label.thickness": "Thickness",
541
+ "label.tilt": "tilt",
542
+ "label.time-format": "time format",
543
+ "label.title": "Title",
544
+ "label.topic": "topic",
545
+ "label.translate": "translate",
546
+ "label.type": "type",
547
+ "label.ucl/lcl-border-color": "LCL border color",
548
+ "label.ucl/lcl-border-width": "LCL border width",
549
+ "label.unit": "unit",
550
+ "label.update": "update",
551
+ "label.updated-at": "updated at",
552
+ "label.updater": "Updater",
553
+ "label.url": "URL",
554
+ "label.user": "user",
555
+ "label.user_auth_setting": "User Authority Assignment",
556
+ "label.user_name": "User Name",
557
+ "label.utc": "UTC",
558
+ "label.uuid": "UUID",
559
+ "label.value": "Value",
560
+ "label.value-display": "Display Value",
561
+ "label.value-prefix": "Value Prefix",
562
+ "label.value-suffix": "Value Suffix",
563
+ "label.variable": "variable",
564
+ "label.variable-list": "variable list",
565
+ "label.variables": "Variables",
566
+ "label.version": "Version",
567
+ "label.vertical": "vertical",
568
+ "label.viewer-option": "viewer option",
569
+ "label.waiting-time": "Waiting Time",
570
+ "label.warning": "Warning",
571
+ "label.wheel-size": "wheel size",
572
+ "label.width": "width",
573
+ "label.will-get-return": "will get return",
574
+ "label.wing": "wing",
575
+ "label.with-credentials": "with credentials",
576
+ "label.wslivevideo-style": "live video style",
577
+ "label.x-axes": "X Axes",
578
+ "label.y-2nd-axes": "Y 2nd Axes",
579
+ "label.y-axes": "Y Axes",
580
+ "label.z-axes": "Z Axes",
581
+ "label.z-pos": "pos. Z",
582
+ "label.zone": "zone",
583
+ "label.zoom": "Zoom",
584
+ "menu.admin": "Administrator",
585
+ "menu.attachments": "attachments",
586
+ "menu.board-list": "board list",
587
+ "menu.board-template": "board template",
588
+ "menu.domain": "Domain",
589
+ "menu.domain-list": "Domain",
590
+ "menu.fonts": "Fonts",
591
+ "menu.group-auth": "Group Authority",
592
+ "menu.group-list": "group list",
593
+ "menu.initialize-setting": "initialize settings",
594
+ "menu.my-scenes": "my scenes",
595
+ "menu.play-groups": "play group list",
596
+ "menu.preferences": "Preferences",
597
+ "menu.recent-created": "recent created",
598
+ "menu.recent-printed": "recent printed",
599
+ "menu.recent-released": "recent released",
600
+ "menu.recent-submitted": "recent submitted",
601
+ "menu.recent-updated": "recent updated",
602
+ "menu.request-auth": "Approval Authorization",
603
+ "menu.user-list": "User",
604
+ "menu.variables": "Variables",
605
+ "scene.scene-height": "Scene Height(Pixel)",
606
+ "scene.scene-width": "Scene Width(Pixel)",
607
+ "text.NOTHING_CHANGED": "Nothing Changed",
608
+ "text.New Alarm Message is Arrived.": "New Alarm Message is Arrived.",
609
+ "text.Server Processing": "Server Processing ...",
610
+ "text.Success to Process": "Success to Process",
611
+ "text.Sure To Delete Important": "All related data will be removed. Are you sure to delete?",
612
+ "text.Sure to X": "Are you sure to {x}",
613
+ "text.add_files": "text.Add Files",
614
+ "text.board cloned": "board '{board}' is cloned successfully",
615
+ "text.board created": "board '{board}' is created successfully",
616
+ "text.board deleted": "board '{board}' is deleted successfully",
617
+ "text.board released": "board '{board}' is released successfully",
618
+ "text.board reverted": "board '{board}' is reverted to version-'{version}' successfully",
619
+ "text.board updated": "board '{board}' is updated successfully",
620
+ "text.boards imported": "{count} boards are imported into group {group}",
621
+ "text.can-not-change-group": "You don't have authority to change group information!",
622
+ "text.can-not-version-up": "There exists not released version, can not create new version.",
623
+ "text.cancel": "text.Cancel",
624
+ "text.cancel_all": "text.Cancel All",
625
+ "text.cannot-be-deleted": "This can not be deleted",
626
+ "text.character-number-allowed": "Only characters and number are allowed.",
627
+ "text.check_password_in_mail": "You can check your password through your email",
628
+ "text.check_register_in_mail": "You can check result of acceptance through your email.",
629
+ "text.connecting": "text.Connecting...",
630
+ "text.delete-domain": "Delete Domain!",
631
+ "text.delete-in-proc": "Deleting is in process.",
632
+ "text.deleting": "Deleting",
633
+ "text.drop_file_here": "text.Drop file here...",
634
+ "text.drop_files_here": "text.Drop files here...",
635
+ "text.empty-admin-url-allowed": "Administrator Page URL should not be empty! Please set the Administrator Page URL at Settings page",
636
+ "text.empty-base-url-not-allowed": "Base URL should not be empty! Please set the Base URL",
637
+ "text.emptyDataMessage": "Search Result is Nothing.",
638
+ "text.emptyGridMessage": "It's Empty Grid.",
639
+ "text.failed_logout": "Failed to Logout.",
640
+ "text.file_is_too_big": "text.File is Too Big.",
641
+ "text.final-confirmation": "Final Confirmation!",
642
+ "text.forbidden": "text.Forbidden",
643
+ "text.group created": "group '{group}' is created successfully",
644
+ "text.group deleted": "group '{group}' is deleted successfully",
645
+ "text.group updated": "group '{group}' is updated successfully",
646
+ "text.group-required": "Label Group is Required!",
647
+ "text.incorrect_file_type": "text.Incorrect File Type.",
648
+ "text.info_invalid": "Typed information is not valid.",
649
+ "text.initialize-setting-success": "Initialization process is finished successfully",
650
+ "text.invalid-email": "It's invalid email form.",
651
+ "text.invalid-value": "Typed invalid value.",
652
+ "text.invalid_input": "Invalid Input.",
653
+ "text.joined into play-group": "board '{board}' joined into play-group '{playGroup}'",
654
+ "text.leaved from play-group": "board '{board}' leaved from play-group '{playGroup}'",
655
+ "text.login_failure": "Login failure.",
656
+ "text.model-overlay": "Because this label is status of {1} \n, you can not edit more.",
657
+ "text.model-overlay-authority-not-allow-change": "Cause of your authority, you can not edit more.",
658
+ "text.model-overlay-status-not-allow-change": "Because this label is status of {1} \n, you can not edit more.",
659
+ "text.modeller-release-msg": "The version now you edit is older version, do you want to create and release new version base on the version?",
660
+ "text.modeller-release-title": "Release:Version Warning",
661
+ "text.modeller-save-msg": "The version now you edit is older version, do you want to create new version base on the version?",
662
+ "text.modeller-save-title": "Save:Version Warning",
663
+ "text.move-to-home": "It will be moved to home.",
664
+ "text.name-and-group-required": "Label Name and Label Group is Required!",
665
+ "text.no released version information available": "no released version information available",
666
+ "text.only-edit-status-label-can-be-deleted": "Only EDIT Status Label allow to be deleted!",
667
+ "text.only-edit-status-label-can-be-saved": "Only authorized user and EDIT Status Label allow to be updated!",
668
+ "text.password_inited": "Password Initialized",
669
+ "text.password_mismatch": "Password mismatch password and confirmed password",
670
+ "text.play-group created": "play-group '{playGroup}' is created successfully",
671
+ "text.play-group deleted": "play-group '{playGroup}' is deleted successfully",
672
+ "text.play-group updated": "play-group '{playGroup}' is updated successfully",
673
+ "text.pls-name-board": "Type board name",
674
+ "text.processing_file": "Processing File...",
675
+ "text.processing_msg": "Your Request is Processing.",
676
+ "text.pw_changed": "Password is changed",
677
+ "text.pw_changed_msg": "Your Account Password is Changed",
678
+ "text.register-template": "register template",
679
+ "text.register_in_process": "User registering is on processing.",
680
+ "text.remaining_time": "remaining time: ",
681
+ "text.reorder play-group": "play-group '{playGroup}' is reordered successfully",
682
+ "text.request-role-success": "Role requested and admin will check it at e-mail.",
683
+ "text.required_error": "Value Required.",
684
+ "text.saved": "saved",
685
+ "text.search with type, id or tag": "search with type, id or tag",
686
+ "text.select_file": "Select File",
687
+ "text.server_unavailable": "text.Server Unavailable",
688
+ "text.settings-already-done": "Settings are already done.",
689
+ "text.stalled": "text.Stalled.",
690
+ "text.sure-delete-domain": "Are you sure to delete it? (Every related data will be removed.)",
691
+ "text.sure-delete-domain-final": "Every related data will be removed. Are you sure to DELETE it?",
692
+ "text.sure-to-delete": "Are you sure to delete?",
693
+ "text.theme": "theme",
694
+ "text.too_many_files": "Too Many Files.",
695
+ "text.unexpected_server_error": "Unexpected Server Error",
696
+ "text.unknown_remaining_time": "unknown remaining time",
697
+ "text.user-active-confirm": "Would you like to active this user?",
698
+ "text.want-to-cancel-request-confirm": "Do you want to change this version to eidting version?",
699
+ "text.want-to-confirm": "Do you want to release this version?",
700
+ "text.want-to-request-confirm": "Do you want to change this to finished version?",
701
+ "text.want-to-version-up": "Do you want to version up?",
702
+ "title.attachment list": "attachment list",
703
+ "title.board view setting": "Board UI setting",
704
+ "title.board-template list": "board template list",
705
+ "title.copy": "Copy",
706
+ "title.create-board": "create board",
707
+ "title.create-group": "create group",
708
+ "title.error": "Error",
709
+ "title.info": "Information",
710
+ "title.new-preferences": "New Preferences",
711
+ "title.new-variable": "New Variable",
712
+ "title.select attachment": "select attachment",
713
+ "title.select board": "select board",
714
+ "title.select font": "select font",
715
+ "title.setting schedule": "setting schedule",
716
+ "title.theme list": "theme list",
717
+ "title.update-domain": "Update Domain",
718
+ "title.update-group": "Update Group",
719
+ "title.update-preferences": "Update Preferences",
720
+ "title.update-user": "Update User",
721
+ "title.update-variable": "Update Variable",
722
+ "title.warn": "Warning"
723
+ }