@things-factory/board-ui 4.0.0-y.0 → 4.0.4
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.
- package/assets/images/components/popup.png +0 -0
- package/client/board-modeller/board-modeller.js +4 -7
- package/client/index.js +0 -2
- package/client/pages/board-player-page.js +24 -8
- package/client/pages/board-viewer-page.js +23 -14
- package/client/pages/printable-board-viewer-page.js +1 -1
- package/client/reducers/board.js +31 -16
- package/helps/scene/component/popup.ko.md +27 -0
- package/helps/scene/component/popup.md +27 -0
- package/package.json +8 -7
- package/translations/en.json +4 -0
- package/translations/ko.json +4 -0
- package/translations/ms.json +4 -0
- package/translations/zh.json +4 -0
- package/client/board-player/board-player-style.js +0 -199
- package/client/board-player/board-player.js +0 -279
- package/client/board-player/board-wrapper.js +0 -126
- package/client/board-player/player/board-player-carousel.js +0 -187
- package/client/board-player/player/board-player-cube.js +0 -195
- package/client/board-player/player/board-player-enlarge-grid.js +0 -103
- package/client/board-player/player/board-player-flipcard-edge.js +0 -172
- package/client/board-player/player/board-player-flipcard.js +0 -162
- package/client/board-player/player/board-player-grid.js +0 -69
- package/client/board-viewer/board-viewer-style.js +0 -75
- package/client/board-viewer/board-viewer.js +0 -495
|
Binary file
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
|
|
3
1
|
import '@material/mwc-fab'
|
|
4
|
-
|
|
2
|
+
import '@operato/board' // ox-board-viewer
|
|
5
3
|
import '@polymer/paper-dialog/paper-dialog'
|
|
6
|
-
import '../board-viewer/board-viewer'
|
|
7
|
-
|
|
8
4
|
import './scene-viewer/things-scene-viewer'
|
|
9
|
-
|
|
10
5
|
import './component-toolbar/component-toolbar'
|
|
11
6
|
import './property-sidebar/property-sidebar'
|
|
12
7
|
|
|
8
|
+
import { LitElement, css, html } from 'lit-element'
|
|
9
|
+
|
|
13
10
|
export class BoardModeller extends LitElement {
|
|
14
11
|
constructor() {
|
|
15
12
|
super()
|
|
@@ -192,7 +189,7 @@ export class BoardModeller extends LitElement {
|
|
|
192
189
|
* https://github.com/PolymerElements/paper-dialog/issues/152
|
|
193
190
|
**/
|
|
194
191
|
|
|
195
|
-
var preview = document.createElement('board-viewer')
|
|
192
|
+
var preview = document.createElement('ox-board-viewer')
|
|
196
193
|
|
|
197
194
|
preview.style.width = '100%'
|
|
198
195
|
preview.style.height = '100%'
|
package/client/index.js
CHANGED
|
@@ -2,8 +2,6 @@ export * from './actions/board'
|
|
|
2
2
|
|
|
3
3
|
export * from './board-modeller/board-modeller'
|
|
4
4
|
export * from './board-modeller/edit-toolbar'
|
|
5
|
-
export * from './board-player/board-player'
|
|
6
|
-
export * from './board-viewer/board-viewer'
|
|
7
5
|
export * from './board-provider'
|
|
8
6
|
export * from './viewparts/board-selector'
|
|
9
7
|
export * from './viewparts/board-creation-card'
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import './things-scene-components.import'
|
|
2
|
+
import '@operato/board' // ox-board-player
|
|
3
|
+
|
|
4
|
+
import { PageView, client, store } from '@things-factory/shell'
|
|
3
5
|
import { css, html } from 'lit-element'
|
|
6
|
+
|
|
4
7
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
5
|
-
import '../board-
|
|
6
|
-
import '
|
|
8
|
+
import { createBoardProvider } from '../board-provider'
|
|
9
|
+
import gql from 'graphql-tag'
|
|
7
10
|
|
|
8
11
|
const NOOP = () => {}
|
|
9
12
|
|
|
@@ -31,7 +34,7 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
31
34
|
position: relative;
|
|
32
35
|
}
|
|
33
36
|
|
|
34
|
-
board-player {
|
|
37
|
+
ox-board-player {
|
|
35
38
|
flex: 1;
|
|
36
39
|
}
|
|
37
40
|
|
|
@@ -58,6 +61,19 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
58
61
|
]
|
|
59
62
|
}
|
|
60
63
|
|
|
64
|
+
connectedCallback() {
|
|
65
|
+
super.connectedCallback()
|
|
66
|
+
|
|
67
|
+
this.provider = createBoardProvider()
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
disconnectedCallback() {
|
|
71
|
+
super.disconnectedCallback()
|
|
72
|
+
|
|
73
|
+
this.provider.despose()
|
|
74
|
+
delete this.provider
|
|
75
|
+
}
|
|
76
|
+
|
|
61
77
|
async refresh() {
|
|
62
78
|
if (!this._playGroupId) {
|
|
63
79
|
return
|
|
@@ -124,7 +140,7 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
124
140
|
|
|
125
141
|
updated(changes) {
|
|
126
142
|
if (changes.has('_playGroupId')) {
|
|
127
|
-
this.shadowRoot.querySelector('board-player').stop()
|
|
143
|
+
this.shadowRoot.querySelector('ox-board-player').stop()
|
|
128
144
|
this.refresh()
|
|
129
145
|
}
|
|
130
146
|
}
|
|
@@ -164,7 +180,7 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
164
180
|
></oops-note>
|
|
165
181
|
`
|
|
166
182
|
: html`
|
|
167
|
-
<board-player .boards=${this._boards}></board-player>
|
|
183
|
+
<ox-board-player .boards=${this._boards} .provider=${this.provider}></ox-board-player>
|
|
168
184
|
<oops-spinner ?show=${this._showSpinner}></oops-spinner>
|
|
169
185
|
`
|
|
170
186
|
}
|
|
@@ -176,7 +192,7 @@ export class BoardPlayerPage extends connect(store)(PageView) {
|
|
|
176
192
|
this.refresh()
|
|
177
193
|
} else {
|
|
178
194
|
this._playGroupId = null
|
|
179
|
-
this.shadowRoot.querySelector('board-player').stop()
|
|
195
|
+
this.shadowRoot.querySelector('ox-board-player').stop()
|
|
180
196
|
}
|
|
181
197
|
}
|
|
182
198
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import './things-scene-components.import'
|
|
2
|
+
import '@operato/board' // ox-board-viewer
|
|
3
|
+
|
|
4
|
+
import { PageView, client, gqlContext, store } from '@things-factory/shell'
|
|
4
5
|
import { css, html } from 'lit-element'
|
|
6
|
+
|
|
7
|
+
import { buildLabelPrintCommand } from '@things-factory/barcode-base'
|
|
5
8
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
9
|
+
import gql from 'graphql-tag'
|
|
6
10
|
import { provider } from '../board-provider'
|
|
7
|
-
import '../board-viewer/board-viewer'
|
|
8
|
-
import './things-scene-components.import'
|
|
9
11
|
|
|
10
12
|
const NOOP = () => {}
|
|
11
13
|
|
|
@@ -33,7 +35,7 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
33
35
|
position: relative;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
|
-
board-viewer {
|
|
38
|
+
ox-board-viewer {
|
|
37
39
|
flex: 1;
|
|
38
40
|
}
|
|
39
41
|
|
|
@@ -90,15 +92,13 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
90
92
|
></oops-note>
|
|
91
93
|
`
|
|
92
94
|
: html`
|
|
93
|
-
<board-viewer .board=${this._board} .provider=${provider}></board-viewer>
|
|
95
|
+
<ox-board-viewer .board=${this._board} .provider=${provider}></ox-board-viewer>
|
|
94
96
|
<oops-spinner ?show=${this._showSpinner}></oops-spinner>
|
|
95
97
|
`
|
|
96
98
|
}
|
|
97
99
|
|
|
98
100
|
updated(changes) {
|
|
99
101
|
if (changes.has('_boardId')) {
|
|
100
|
-
var boardViewerElement = this.shadowRoot.querySelector('board-viewer')
|
|
101
|
-
boardViewerElement && boardViewerElement.closeScene()
|
|
102
102
|
this.refresh()
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -107,9 +107,17 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
107
107
|
if (this.active) {
|
|
108
108
|
this._boardId = lifecycle.resourceId
|
|
109
109
|
} else {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
/*
|
|
111
|
+
* 비활성화된 페이지에서 render update가 발생하지 않으므로, 강제로 scene을 close 한다.
|
|
112
|
+
* 화면이 inactive 될 때, 굳이 scene을 close하는 이유는,
|
|
113
|
+
* 새로운 board가 선택되어 뷰어가 열릴 때, 기존 보드 잔상이 보이지 않도록 하기위해서이다.
|
|
114
|
+
*/
|
|
115
|
+
if (this._boardId) {
|
|
116
|
+
let boardViewer = this.shadowRoot.querySelector('ox-board-viewer')
|
|
117
|
+
boardViewer && boardViewer.closeScene()
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
this._boardId = ''
|
|
113
121
|
}
|
|
114
122
|
}
|
|
115
123
|
|
|
@@ -119,6 +127,7 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
119
127
|
|
|
120
128
|
async refresh() {
|
|
121
129
|
if (!this._boardId) {
|
|
130
|
+
this._board = null
|
|
122
131
|
return
|
|
123
132
|
}
|
|
124
133
|
|
|
@@ -170,7 +179,7 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
170
179
|
async getGrf() {
|
|
171
180
|
var { labelRotation } = this._board.model
|
|
172
181
|
|
|
173
|
-
var { width, height, data } = (await this.shadowRoot.querySelector('board-viewer').getSceneImageData()) || {}
|
|
182
|
+
var { width, height, data } = (await this.shadowRoot.querySelector('ox-board-viewer').getSceneImageData()) || {}
|
|
174
183
|
if (!width) {
|
|
175
184
|
throw 'Cannot get SceneImageData...'
|
|
176
185
|
}
|
|
@@ -179,7 +188,7 @@ export class BoardViewerPage extends connect(store)(PageView) {
|
|
|
179
188
|
}
|
|
180
189
|
|
|
181
190
|
async printTrick(image) {
|
|
182
|
-
await this.renderRoot.querySelector('board-viewer').printTrick(image)
|
|
191
|
+
await this.renderRoot.querySelector('ox-board-viewer').printTrick(image)
|
|
183
192
|
}
|
|
184
193
|
}
|
|
185
194
|
|
package/client/reducers/board.js
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { ADD_BOARD_COMPONENTS } from '../actions/board.js'
|
|
2
|
-
|
|
3
|
-
import rect from '../../assets/images/components/rect.png'
|
|
4
|
-
import ellipse from '../../assets/images/components/ellipse.png'
|
|
5
|
-
import donut from '../../assets/images/components/donut.png'
|
|
6
|
-
import triangle from '../../assets/images/components/triangle.png'
|
|
7
|
-
import polygon from '../../assets/images/components/polygon.png'
|
|
8
|
-
import star from '../../assets/images/components/star.png'
|
|
9
|
-
import line from '../../assets/images/components/line.png'
|
|
10
|
-
import dash from '../../assets/images/components/dash.png'
|
|
11
|
-
import singleArrow from '../../assets/images/components/single-arrow.png'
|
|
2
|
+
import audio from '../../assets/images/components/audio.png'
|
|
12
3
|
import bothArrow from '../../assets/images/components/both-arrow.png'
|
|
13
|
-
import polyline from '../../assets/images/components/polyline.png'
|
|
14
|
-
import text from '../../assets/images/components/text.png'
|
|
15
4
|
import colorImage from '../../assets/images/components/color-image.png'
|
|
16
|
-
import grayImage from '../../assets/images/components/gray-image.png'
|
|
17
|
-
import gifImage from '../../assets/images/components/gif-image.png'
|
|
18
|
-
import audio from '../../assets/images/components/audio.png'
|
|
19
5
|
import container from '../../assets/images/components/container.png'
|
|
6
|
+
import dash from '../../assets/images/components/dash.png'
|
|
7
|
+
import donut from '../../assets/images/components/donut.png'
|
|
8
|
+
import ellipse from '../../assets/images/components/ellipse.png'
|
|
9
|
+
import gifImage from '../../assets/images/components/gif-image.png'
|
|
10
|
+
import globalReference from '../../assets/images/components/global-reference.png'
|
|
11
|
+
import grayImage from '../../assets/images/components/gray-image.png'
|
|
20
12
|
import infoWindow from '../../assets/images/components/info-window.png'
|
|
13
|
+
import line from '../../assets/images/components/line.png'
|
|
21
14
|
import localReference from '../../assets/images/components/local-reference.png'
|
|
22
|
-
import
|
|
15
|
+
import polygon from '../../assets/images/components/polygon.png'
|
|
16
|
+
import polyline from '../../assets/images/components/polyline.png'
|
|
17
|
+
import popup from '../../assets/images/components/popup.png'
|
|
18
|
+
import rect from '../../assets/images/components/rect.png'
|
|
19
|
+
import singleArrow from '../../assets/images/components/single-arrow.png'
|
|
20
|
+
import star from '../../assets/images/components/star.png'
|
|
21
|
+
import text from '../../assets/images/components/text.png'
|
|
22
|
+
import triangle from '../../assets/images/components/triangle.png'
|
|
23
23
|
|
|
24
24
|
function shapes() {
|
|
25
25
|
return [
|
|
@@ -366,6 +366,21 @@ function groupContainer() {
|
|
|
366
366
|
lineDash: 'solid',
|
|
367
367
|
lineCap: 'butt'
|
|
368
368
|
}
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
type: 'popup',
|
|
372
|
+
description: 'popup window',
|
|
373
|
+
icon: popup,
|
|
374
|
+
model: {
|
|
375
|
+
type: 'popup',
|
|
376
|
+
left: 100,
|
|
377
|
+
top: 100,
|
|
378
|
+
width: 100,
|
|
379
|
+
height: 100,
|
|
380
|
+
fillStyle: '#fff',
|
|
381
|
+
strokeStyle: 'DarkGoldenRod',
|
|
382
|
+
hidden: true
|
|
383
|
+
}
|
|
369
384
|
}
|
|
370
385
|
]
|
|
371
386
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Popup
|
|
2
|
+
|
|
3
|
+
팝업 윈도우에 타겟 보드를 표시하는 컴포넌트이다.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
- board
|
|
8
|
+
- 팝업으로 보여주고자 하는 대상 보드를 선택한다.
|
|
9
|
+
- show
|
|
10
|
+
- 팝업을 시작 시점에 보여주고자 할 때 설정한다.
|
|
11
|
+
- started
|
|
12
|
+
- 속성 화면상에서 설정하지 않지만, 데이타 바인딩에서 이 속성을 true/false로 지정하면 팝업이 보이거나 닫혀지게 된다.
|
|
13
|
+
- boolean 타입
|
|
14
|
+
- modal
|
|
15
|
+
- 팝업의 모달 여부를 설정한다.
|
|
16
|
+
- closable
|
|
17
|
+
- close 버튼을 보여줄 것인지를 설정한다.
|
|
18
|
+
- location
|
|
19
|
+
- 팝업 윈도우가 보여지게 될 위치를 지정한다.
|
|
20
|
+
- auto 로 지정하게되면, 이 Popup 컴포넌트의 맞은편 가장 많은 공간을 가진 위치에 보여지게된다.
|
|
21
|
+
- value
|
|
22
|
+
- 팝업으로 보여주게될 대상 보드의 초기값을 지정한다.
|
|
23
|
+
- 데이타 바인딩 등에 의해서 value 값이 설정되게되면, 자동으로 started 속성이 true가 되어 팝업이 보여지게 된다.
|
|
24
|
+
- 팝업이 보여지는 상태에서 value 값이 재설정되면, 기존 팝업이 새로운 value값을 초기값으로 다시 보여지게 된다.
|
|
25
|
+
- data
|
|
26
|
+
- 팝업이 사용자 정의 버튼 클릭으로 닫혀지게 되면, 해당 버튼의 data가 이 popup 컴포넌트의 data에 설정되게 된다.
|
|
27
|
+
- 팝업 실행 결과를 처리하는 의미로 활용된다.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Popup
|
|
2
|
+
|
|
3
|
+
This component displays the target board in a pop-up window.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
- board
|
|
8
|
+
- Select the target board to be displayed in a popup.
|
|
9
|
+
- show
|
|
10
|
+
- Set when you want to show a popup at the start time.
|
|
11
|
+
- started
|
|
12
|
+
- Although not shown on the property screen, if this property is set to true/false during data binding, the popup will be shown or closed.
|
|
13
|
+
- boolean type
|
|
14
|
+
- modal
|
|
15
|
+
- Set whether the popup is modal.
|
|
16
|
+
- closable
|
|
17
|
+
- Set whether to show the close button.
|
|
18
|
+
- location
|
|
19
|
+
- Designate the position where the pop-up window will be displayed.
|
|
20
|
+
- If set to auto, it will be displayed in the position with the most space opposite this Popup component.
|
|
21
|
+
- value
|
|
22
|
+
- Designate the initial value of the target board to be displayed as a popup.
|
|
23
|
+
- When the value value is set by data binding, the started property automatically becomes true and a popup is displayed.
|
|
24
|
+
- If the value is reset while the popup is already displayed, the existing popup will be re-opened with the new initial value.
|
|
25
|
+
- data
|
|
26
|
+
- When the popup is closed by clicking a user-defined button, the data of the corresponding button is set in the data of this popup component.
|
|
27
|
+
- It is used in the meaning of processing the pop-up execution result.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/board-ui",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@material/mwc-list": "^0.22.1",
|
|
28
28
|
"@material/mwc-select": "^0.22.1",
|
|
29
|
+
"@operato/board": "^0.2.18",
|
|
29
30
|
"@polymer/iron-icon": "^3.0.1",
|
|
30
31
|
"@polymer/iron-icons": "^3.0.1",
|
|
31
32
|
"@polymer/paper-button": "^3.0.1",
|
|
@@ -37,13 +38,13 @@
|
|
|
37
38
|
"@polymer/paper-listbox": "^3.0.1",
|
|
38
39
|
"@polymer/paper-menu-button": "^3.0.1",
|
|
39
40
|
"@polymer/paper-slider": "^3.0.1",
|
|
40
|
-
"@things-factory/barcode-base": "^4.0.
|
|
41
|
-
"@things-factory/grist-ui": "^4.0.
|
|
42
|
-
"@things-factory/help": "^4.0.
|
|
43
|
-
"@things-factory/i18n-base": "^4.0.
|
|
44
|
-
"@things-factory/modeller-ui": "^4.0.
|
|
41
|
+
"@things-factory/barcode-base": "^4.0.4",
|
|
42
|
+
"@things-factory/grist-ui": "^4.0.1",
|
|
43
|
+
"@things-factory/help": "^4.0.4",
|
|
44
|
+
"@things-factory/i18n-base": "^4.0.4",
|
|
45
|
+
"@things-factory/modeller-ui": "^4.0.4",
|
|
45
46
|
"file-saver": "^2.0.2",
|
|
46
47
|
"sortablejs": "^1.10.2"
|
|
47
48
|
},
|
|
48
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "292d7c4e2675d228d6be474ea6a0525d26ac1657"
|
|
49
50
|
}
|
package/translations/en.json
CHANGED
|
@@ -127,6 +127,7 @@
|
|
|
127
127
|
"label.bevel": "bevel",
|
|
128
128
|
"label.blank-stroke-style": "blank stoke style",
|
|
129
129
|
"label.boolean": "boolean",
|
|
130
|
+
"label.board": "board",
|
|
130
131
|
"label.border-color": "border color",
|
|
131
132
|
"label.border-style": "border style",
|
|
132
133
|
"label.border-type": "border type",
|
|
@@ -142,6 +143,7 @@
|
|
|
142
143
|
"label.chart": "chart",
|
|
143
144
|
"label.checked": "checked",
|
|
144
145
|
"label.child-data-path": "child data path",
|
|
146
|
+
"label.closable": "closable",
|
|
145
147
|
"label.cl-border-color": "CL border color",
|
|
146
148
|
"label.cl-border-width": "CL border width",
|
|
147
149
|
"label.class": "class",
|
|
@@ -296,6 +298,7 @@
|
|
|
296
298
|
"label.minute-width": "Minute Width",
|
|
297
299
|
"label.miter": "miter",
|
|
298
300
|
"label.mm": "mm",
|
|
301
|
+
"label.modal": "modal",
|
|
299
302
|
"label.mode": "mode",
|
|
300
303
|
"label.move_to_admin": "Move to Administrator Page",
|
|
301
304
|
"label.multi-axis": "Multi Axis",
|
|
@@ -395,6 +398,7 @@
|
|
|
395
398
|
"label.shadowSize": "Size",
|
|
396
399
|
"label.shelf-pattern": "shelf pattern",
|
|
397
400
|
"label.shelves": "shelves",
|
|
401
|
+
"label.show": "show",
|
|
398
402
|
"label.show-axis": "show axis",
|
|
399
403
|
"label.show-end-value": "show end value",
|
|
400
404
|
"label.show-legend": "show legend",
|
package/translations/ko.json
CHANGED
|
@@ -127,6 +127,7 @@
|
|
|
127
127
|
"label.bevel": "비스듬한 면",
|
|
128
128
|
"label.blank-stroke-style": "빈공간 선 스타일",
|
|
129
129
|
"label.boolean": "True-False",
|
|
130
|
+
"label.board": "보드",
|
|
130
131
|
"label.border-color": "경계부분 색상",
|
|
131
132
|
"label.border-style": "테두리 스타일",
|
|
132
133
|
"label.border-type": "테두리 종류",
|
|
@@ -142,6 +143,7 @@
|
|
|
142
143
|
"label.chart": "차트",
|
|
143
144
|
"label.checked": "체크됨",
|
|
144
145
|
"label.child-data-path": "child data path",
|
|
146
|
+
"label.closable": "닫기 기능",
|
|
145
147
|
"label.cl-border-color": "CL 경계 색상",
|
|
146
148
|
"label.cl-border-width": "CL 경계 넓이",
|
|
147
149
|
"label.class": "클래스",
|
|
@@ -296,6 +298,7 @@
|
|
|
296
298
|
"label.minute-width": "분침 두께",
|
|
297
299
|
"label.miter": "비스듬한 각모양",
|
|
298
300
|
"label.mm": "mm",
|
|
301
|
+
"label.modal": "Modal",
|
|
299
302
|
"label.mode": "모드",
|
|
300
303
|
"label.move_to_admin": "관리자 페이지로 이동",
|
|
301
304
|
"label.multi-axis": "2축",
|
|
@@ -389,6 +392,7 @@
|
|
|
389
392
|
"label.second-width": "초침 두께",
|
|
390
393
|
"label.section": "섹션",
|
|
391
394
|
"label.series": "시리즈",
|
|
395
|
+
"label.show": "보이기",
|
|
392
396
|
"label.shadow": "그림자효과",
|
|
393
397
|
"label.shadowOffsetX": "X축 위치",
|
|
394
398
|
"label.shadowOffsetY": "Y축 위치",
|
package/translations/ms.json
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
"label.begin-type": "jenis permulaan",
|
|
126
126
|
"label.bevel": "serong",
|
|
127
127
|
"label.blank-stroke-style": "gaya strok kosong",
|
|
128
|
+
"label.board": "board",
|
|
128
129
|
"label.boolean": "boolean",
|
|
129
130
|
"label.border-color": "warna sempadan",
|
|
130
131
|
"label.border-style": "gaya sempadan",
|
|
@@ -145,6 +146,7 @@
|
|
|
145
146
|
"label.cl-border-width": "lebar sempadan CL",
|
|
146
147
|
"label.class": "kelas",
|
|
147
148
|
"label.client-id": "ID pelanggan",
|
|
149
|
+
"label.closable": "[ms] closable",
|
|
148
150
|
"label.color-stops": "berhenti warna",
|
|
149
151
|
"label.color": "warna",
|
|
150
152
|
"label.columns": "lajur",
|
|
@@ -296,6 +298,7 @@
|
|
|
296
298
|
"label.minute-width": "lebar minit",
|
|
297
299
|
"label.miter": "miter",
|
|
298
300
|
"label.mm": "mm",
|
|
301
|
+
"label.modal": "[ms] modal",
|
|
299
302
|
"label.mode": "mod",
|
|
300
303
|
"label.move_to_admin": "pindah ke page administrator",
|
|
301
304
|
"label.multi-axis": "pelbagai paksi",
|
|
@@ -395,6 +398,7 @@
|
|
|
395
398
|
"label.shadowSize": "saiz",
|
|
396
399
|
"label.shelf-pattern": "corak rak",
|
|
397
400
|
"label.shelves": "rak-rak",
|
|
401
|
+
"label.show": "[ms] show",
|
|
398
402
|
"label.show-axis": "tunjuk paksi",
|
|
399
403
|
"label.show-end-value": "tunjuk nilai akhir",
|
|
400
404
|
"label.show-legend": "tunjuk legend",
|
package/translations/zh.json
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
"label.begin-type": "起始类型",
|
|
126
126
|
"label.bevel": "斜面",
|
|
127
127
|
"label.blank-stroke-style": "空白斯托克风格",
|
|
128
|
+
"label.board": "看板",
|
|
128
129
|
"label.boolean": "布尔值",
|
|
129
130
|
"label.border-color": "边框颜色",
|
|
130
131
|
"label.border-style": "边框样式",
|
|
@@ -141,6 +142,7 @@
|
|
|
141
142
|
"label.chart": "图标",
|
|
142
143
|
"label.checked": "已勾选",
|
|
143
144
|
"label.child-data-path": "子数据路径",
|
|
145
|
+
"label.closable": "[zh] closable",
|
|
144
146
|
"label.cl-border-color": "中间线颜色",
|
|
145
147
|
"label.cl-border-width": "中间线宽度",
|
|
146
148
|
"label.class": "分组",
|
|
@@ -297,6 +299,7 @@
|
|
|
297
299
|
"label.minute-width": "分针厚度",
|
|
298
300
|
"label.miter": "斜边",
|
|
299
301
|
"label.mm": "毫米",
|
|
302
|
+
"label.modal": "[zh] modal",
|
|
300
303
|
"label.mode": "mode",
|
|
301
304
|
"label.move_to_admin": "移动到管理者页面。",
|
|
302
305
|
"label.multi-axis": "多轴",
|
|
@@ -396,6 +399,7 @@
|
|
|
396
399
|
"label.shadowSize": "大小",
|
|
397
400
|
"label.shelf-pattern": "架子模式",
|
|
398
401
|
"label.shelves": "站位高度",
|
|
402
|
+
"label.show": "[zh] show",
|
|
399
403
|
"label.show-axis": "显示轴",
|
|
400
404
|
"label.show-end-value": "显示结束值",
|
|
401
405
|
"label.show-legend": "显示图列",
|