@operato/property-panel 10.0.0-beta.5 → 10.0.0-beta.52
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/CHANGELOG.md +327 -0
- package/dist/src/ox-property-panel.d.ts +7 -0
- package/dist/src/ox-property-panel.js +62 -34
- package/dist/src/ox-property-panel.js.map +1 -1
- package/dist/src/property-panel/abstract-property.js +11 -2
- package/dist/src/property-panel/abstract-property.js.map +1 -1
- package/dist/src/property-panel/data-binding/data-binding-mapper.js +11 -3
- package/dist/src/property-panel/data-binding/data-binding-mapper.js.map +1 -1
- package/dist/src/property-panel/data-binding/data-binding-popup.d.ts +63 -0
- package/dist/src/property-panel/data-binding/data-binding-popup.js +1414 -0
- package/dist/src/property-panel/data-binding/data-binding-popup.js.map +1 -0
- package/dist/src/property-panel/data-binding/data-binding.d.ts +1 -0
- package/dist/src/property-panel/data-binding/data-binding.js +33 -2
- package/dist/src/property-panel/data-binding/data-binding.js.map +1 -1
- package/dist/src/property-panel/effects/property-event-tap.js +21 -1
- package/dist/src/property-panel/effects/property-event-tap.js.map +1 -1
- package/dist/src/property-panel/effects/property-shadow.js +14 -5
- package/dist/src/property-panel/effects/property-shadow.js.map +1 -1
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.d.ts +20 -0
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.js +125 -0
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.js.map +1 -0
- package/dist/src/property-panel/shapes/placeholder-convert.d.ts +34 -0
- package/dist/src/property-panel/shapes/placeholder-convert.js +117 -0
- package/dist/src/property-panel/shapes/placeholder-convert.js.map +1 -0
- package/dist/src/property-panel/shapes/shapes.js +28 -10
- package/dist/src/property-panel/shapes/shapes.js.map +1 -1
- package/dist/src/property-panel/specifics/specifics.d.ts +1 -0
- package/dist/src/property-panel/specifics/specifics.js +2 -1
- package/dist/src/property-panel/specifics/specifics.js.map +1 -1
- package/dist/src/property-panel/styles/styles.js +2 -0
- package/dist/src/property-panel/styles/styles.js.map +1 -1
- package/dist/src/property-panel/threed/property-material3d.js +8 -1
- package/dist/src/property-panel/threed/property-material3d.js.map +1 -1
- package/dist/src/property-panel/threed/property-scene3d.d.ts +34 -7
- package/dist/src/property-panel/threed/property-scene3d.js +329 -246
- package/dist/src/property-panel/threed/property-scene3d.js.map +1 -1
- package/dist/src/property-panel/threed/threed.js +8 -0
- package/dist/src/property-panel/threed/threed.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -5
- package/themes/grist-theme.css +1 -1
- package/translations/en.json +27 -1
- package/translations/ja.json +27 -1
- package/translations/ko.json +27 -1
- package/translations/ms.json +27 -1
- package/translations/zh.json +27 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/property-panel",
|
|
3
3
|
"description": "Webcomponent property-panel following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.0.0-beta.
|
|
5
|
+
"version": "10.0.0-beta.52",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"./package.json": "./package.json",
|
|
23
23
|
"./ox-property-panel.js": "./dist/src/ox-property-panel.js",
|
|
24
24
|
"./data-binding.js": "./dist/src/property-panel/data-binding/data-binding.js",
|
|
25
|
+
"./data-binding-popup.js": "./dist/src/property-panel/data-binding/data-binding-popup.js",
|
|
25
26
|
"./effects.js": "./dist/src/property-panel/effects/effects.js",
|
|
26
27
|
"./inspector.js": "./dist/src/property-panel/inspector/inspector.js",
|
|
27
28
|
"./shapes.js": "./dist/src/property-panel/shapes/shapes.js",
|
|
@@ -67,10 +68,10 @@
|
|
|
67
68
|
},
|
|
68
69
|
"dependencies": {
|
|
69
70
|
"@material/web": "^2.0.0",
|
|
70
|
-
"@operato/attachment": "^10.0.0-beta.
|
|
71
|
+
"@operato/attachment": "^10.0.0-beta.52",
|
|
71
72
|
"@operato/i18n": "^10.0.0-beta.2",
|
|
72
|
-
"@operato/input": "^10.0.0-beta.
|
|
73
|
-
"@operato/styles": "^10.0.0-beta.
|
|
73
|
+
"@operato/input": "^10.0.0-beta.52",
|
|
74
|
+
"@operato/styles": "^10.0.0-beta.52",
|
|
74
75
|
"@operato/utils": "^10.0.0-beta.2",
|
|
75
76
|
"lit": "^3.1.2"
|
|
76
77
|
},
|
|
@@ -107,5 +108,5 @@
|
|
|
107
108
|
"prettier --write"
|
|
108
109
|
]
|
|
109
110
|
},
|
|
110
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "72f054ca6051ba1c2cf6ea994afe973733b24e21"
|
|
111
112
|
}
|
package/themes/grist-theme.css
CHANGED
|
@@ -99,7 +99,7 @@ body {
|
|
|
99
99
|
--data-card-record-card-border-hover: 1px solid var(--md-sys-color-primary);
|
|
100
100
|
--data-card-record-card-boxshadow-hover: 1px 1px 2px 1px rgba(0, 0, 0, 0.15);
|
|
101
101
|
--data-card-record-card-selected-border: 1px solid var(--md-sys-color-primary);
|
|
102
|
-
--data-card-record-card-border-radius: var(--md-sys-shape-corner-
|
|
102
|
+
--data-card-record-card-border-radius: var(--md-sys-shape-corner-medium);
|
|
103
103
|
--data-card-item-margin: var(--spacing-medium);
|
|
104
104
|
--data-card-item-padding: var(--spacing-medium) var(--spacing-large);
|
|
105
105
|
--data-card-item-border-bottom: var(--grid-container-border-color);
|
package/translations/en.json
CHANGED
|
@@ -101,11 +101,21 @@
|
|
|
101
101
|
"component.polygon": "polygon",
|
|
102
102
|
"component.polyline": "polyline",
|
|
103
103
|
"component.popup": "popup",
|
|
104
|
+
"component.popup-container": "popup container",
|
|
105
|
+
"component.tooltip-3d": "tooltip 3D",
|
|
104
106
|
"component.rect": "rect",
|
|
105
107
|
"component.single arrow": "single arrow",
|
|
106
108
|
"component.star": "star",
|
|
107
109
|
"component.text": "text",
|
|
108
110
|
"component.triangle": "triangle",
|
|
111
|
+
"component.carrier": "carrier",
|
|
112
|
+
"component.floor-plate": "floor plate",
|
|
113
|
+
"component.signal-tower": "signal tower",
|
|
114
|
+
"component.stock-hub": "stock hub",
|
|
115
|
+
"component.stocker": "stocker",
|
|
116
|
+
"component.stocker-port": "stocker port",
|
|
117
|
+
"component.tank": "tank",
|
|
118
|
+
"component.vehicle": "vehicle",
|
|
109
119
|
"component.video": "video",
|
|
110
120
|
"error.MAX_LENGTH_OF_X_IS_Y": "Maximum Length of {name} is {value}",
|
|
111
121
|
"error.SERVER-ERROR": "An error occurred at the server.({msg})",
|
|
@@ -260,6 +270,7 @@
|
|
|
260
270
|
"label.fill-style": "fill style",
|
|
261
271
|
"label.final_confirm": "Final Confirmation",
|
|
262
272
|
"label.fit": "Fit",
|
|
273
|
+
"label.fit-mode": "Fit Mode",
|
|
263
274
|
"label.floor": "floor",
|
|
264
275
|
"label.font": "font",
|
|
265
276
|
"label.font-code": "Font Code",
|
|
@@ -364,6 +375,7 @@
|
|
|
364
375
|
"label.modal": "modal",
|
|
365
376
|
"label.mode": "mode",
|
|
366
377
|
"label.move_to_admin": "Move to Administrator Page",
|
|
378
|
+
"label.mixed-selection": "Mixed Selection",
|
|
367
379
|
"label.multi-axis": "Multi Axis",
|
|
368
380
|
"label.multiple": "multiple",
|
|
369
381
|
"label.name": "Name",
|
|
@@ -463,6 +475,7 @@
|
|
|
463
475
|
"label.screen-size": "Screen Size",
|
|
464
476
|
"label.second-width": "Second Width",
|
|
465
477
|
"label.section": "section",
|
|
478
|
+
"label.see-through": "see-through",
|
|
466
479
|
"label.series": "series",
|
|
467
480
|
"label.shadow": "shadow",
|
|
468
481
|
"label.shadowOffsetX": "Offset-X",
|
|
@@ -732,5 +745,18 @@
|
|
|
732
745
|
"label.align-top": "top",
|
|
733
746
|
"label.align-bottom": "bottom",
|
|
734
747
|
"label.align-left": "left",
|
|
735
|
-
"label.align-right": "right"
|
|
748
|
+
"label.align-right": "right",
|
|
749
|
+
"label.start-in-3d": "Start in 3D",
|
|
750
|
+
"label.keep-above-ground": "Keep Above Ground",
|
|
751
|
+
"label.constant-size": "constant size",
|
|
752
|
+
"label.billboard": "billboard",
|
|
753
|
+
"label.tether": "tether",
|
|
754
|
+
"label.off-screen": "off-screen",
|
|
755
|
+
"label.container-ref": "container ref",
|
|
756
|
+
"label.html-template": "html template",
|
|
757
|
+
"label.anchor-ref": "anchor ref",
|
|
758
|
+
"label.anchor-pin": "anchor pin",
|
|
759
|
+
"label.anchor-offset-x": "anchor offset X",
|
|
760
|
+
"label.anchor-offset-y": "anchor offset Y",
|
|
761
|
+
"label.anchor-offset-z": "anchor offset Z"
|
|
736
762
|
}
|
package/translations/ja.json
CHANGED
|
@@ -105,11 +105,21 @@
|
|
|
105
105
|
"component.polygon": "ポリゴン",
|
|
106
106
|
"component.polyline": "ポリライン",
|
|
107
107
|
"component.popup": "ポップアップ",
|
|
108
|
+
"component.popup-container": "ポップアップコンテナ",
|
|
109
|
+
"component.tooltip-3d": "3Dツールチップ",
|
|
108
110
|
"component.rect": "矩形",
|
|
109
111
|
"component.single arrow": "単一矢印",
|
|
110
112
|
"component.star": "星",
|
|
111
113
|
"component.text": "テキスト",
|
|
112
114
|
"component.triangle": "三角形",
|
|
115
|
+
"component.carrier": "キャリア",
|
|
116
|
+
"component.floor-plate": "フロアプレート",
|
|
117
|
+
"component.signal-tower": "シグナルタワー",
|
|
118
|
+
"component.stock-hub": "ストックハブ",
|
|
119
|
+
"component.stocker": "ストッカー",
|
|
120
|
+
"component.stocker-port": "ストッカーポート",
|
|
121
|
+
"component.tank": "タンク",
|
|
122
|
+
"component.vehicle": "搬送車",
|
|
113
123
|
"component.video": "ビデオ",
|
|
114
124
|
"error.MAX_LENGTH_OF_X_IS_Y": "{name}の最大の長さは{value}です.",
|
|
115
125
|
"error.SERVER-ERROR": "サーバーでエラーが発生しました.({msg})",
|
|
@@ -264,6 +274,7 @@
|
|
|
264
274
|
"label.fill-style": "塗りつぶしスタイル’",
|
|
265
275
|
"label.final_confirm": "最終確認",
|
|
266
276
|
"label.fit": "合わせる",
|
|
277
|
+
"label.fit-mode": "フィットモード",
|
|
267
278
|
"label.floor": "階",
|
|
268
279
|
"label.font": "フォント",
|
|
269
280
|
"label.font-code": "フォント コード",
|
|
@@ -367,6 +378,7 @@
|
|
|
367
378
|
"label.modal": "Modal",
|
|
368
379
|
"label.mode": "モード",
|
|
369
380
|
"label.move_to_admin": "管理者ページに移動",
|
|
381
|
+
"label.mixed-selection": "複数種類選択中",
|
|
370
382
|
"label.multi-axis": "2軸",
|
|
371
383
|
"label.multiple": "多重",
|
|
372
384
|
"label.name": "名前",
|
|
@@ -466,6 +478,7 @@
|
|
|
466
478
|
"label.screen-size": "画面サイズ",
|
|
467
479
|
"label.second-width": "秒針の厚さ",
|
|
468
480
|
"label.section": "セクション",
|
|
481
|
+
"label.see-through": "透過",
|
|
469
482
|
"label.series": "シリーズ",
|
|
470
483
|
"label.shadow": "影の効果",
|
|
471
484
|
"label.shadowOffsetX": "X軸位置",
|
|
@@ -736,5 +749,18 @@
|
|
|
736
749
|
"label.align-top": "上",
|
|
737
750
|
"label.align-left": "左",
|
|
738
751
|
"label.align-right": "右",
|
|
739
|
-
"label.align-bottom": "下"
|
|
752
|
+
"label.align-bottom": "下",
|
|
753
|
+
"label.start-in-3d": "3Dモードで開始",
|
|
754
|
+
"label.keep-above-ground": "地面より上にカメラを維持",
|
|
755
|
+
"label.constant-size": "固定サイズ",
|
|
756
|
+
"label.billboard": "ビルボード",
|
|
757
|
+
"label.tether": "接続線",
|
|
758
|
+
"label.off-screen": "画面外処理",
|
|
759
|
+
"label.container-ref": "コンテナ参照",
|
|
760
|
+
"label.html-template": "HTMLテンプレート",
|
|
761
|
+
"label.anchor-ref": "アンカー参照",
|
|
762
|
+
"label.anchor-pin": "アンカー位置",
|
|
763
|
+
"label.anchor-offset-x": "アンカーオフセット X",
|
|
764
|
+
"label.anchor-offset-y": "アンカーオフセット Y",
|
|
765
|
+
"label.anchor-offset-z": "アンカーオフセット Z"
|
|
740
766
|
}
|
package/translations/ko.json
CHANGED
|
@@ -105,11 +105,21 @@
|
|
|
105
105
|
"component.polygon": "다각형",
|
|
106
106
|
"component.polyline": "폴리라인",
|
|
107
107
|
"component.popup": "팝업",
|
|
108
|
+
"component.popup-container": "팝업 컨테이너",
|
|
109
|
+
"component.tooltip-3d": "3D 툴팁",
|
|
108
110
|
"component.rect": "사각형",
|
|
109
111
|
"component.single arrow": "단방향 화살표",
|
|
110
112
|
"component.star": "별",
|
|
111
113
|
"component.text": "텍스트",
|
|
112
114
|
"component.triangle": "삼각형",
|
|
115
|
+
"component.carrier": "캐리어",
|
|
116
|
+
"component.floor-plate": "플로어 플레이트",
|
|
117
|
+
"component.signal-tower": "시그널 타워",
|
|
118
|
+
"component.stock-hub": "스톡 허브",
|
|
119
|
+
"component.stocker": "스토커",
|
|
120
|
+
"component.stocker-port": "스토커 포트",
|
|
121
|
+
"component.tank": "탱크",
|
|
122
|
+
"component.vehicle": "이동체",
|
|
113
123
|
"component.video": "비디오",
|
|
114
124
|
"error.MAX_LENGTH_OF_X_IS_Y": "{name}의 최대 길이는 {value} 입니다.",
|
|
115
125
|
"error.SERVER-ERROR": "서버에서 에러가 발생했습니다.({msg})",
|
|
@@ -264,6 +274,7 @@
|
|
|
264
274
|
"label.fill-style": "채우기 스타일",
|
|
265
275
|
"label.final_confirm": "최종 확인",
|
|
266
276
|
"label.fit": "맞춤",
|
|
277
|
+
"label.fit-mode": "맞춤 모드",
|
|
267
278
|
"label.floor": "층",
|
|
268
279
|
"label.font": "폰트",
|
|
269
280
|
"label.font-code": "폰트코드",
|
|
@@ -367,6 +378,7 @@
|
|
|
367
378
|
"label.modal": "Modal",
|
|
368
379
|
"label.mode": "모드",
|
|
369
380
|
"label.move_to_admin": "관리자 페이지로 이동",
|
|
381
|
+
"label.mixed-selection": "여러 종류 선택됨",
|
|
370
382
|
"label.multi-axis": "2축",
|
|
371
383
|
"label.multiple": "다중",
|
|
372
384
|
"label.name": "이름",
|
|
@@ -466,6 +478,7 @@
|
|
|
466
478
|
"label.screen-size": "화면 사이즈",
|
|
467
479
|
"label.second-width": "초침 두께",
|
|
468
480
|
"label.section": "섹션",
|
|
481
|
+
"label.see-through": "투과",
|
|
469
482
|
"label.series": "시리즈",
|
|
470
483
|
"label.shadow": "그림자효과",
|
|
471
484
|
"label.shadowOffsetX": "X축 위치",
|
|
@@ -736,5 +749,18 @@
|
|
|
736
749
|
"label.align-top": "상단",
|
|
737
750
|
"label.align-left": "왼쪽",
|
|
738
751
|
"label.align-right": "오른쪽",
|
|
739
|
-
"label.align-bottom": "하단"
|
|
752
|
+
"label.align-bottom": "하단",
|
|
753
|
+
"label.start-in-3d": "3D 모드로 시작",
|
|
754
|
+
"label.keep-above-ground": "지면 위 카메라 유지",
|
|
755
|
+
"label.constant-size": "고정 크기",
|
|
756
|
+
"label.billboard": "카메라 향함",
|
|
757
|
+
"label.tether": "연결선",
|
|
758
|
+
"label.off-screen": "화면 밖 처리",
|
|
759
|
+
"label.container-ref": "컨테이너 참조",
|
|
760
|
+
"label.html-template": "HTML 템플릿",
|
|
761
|
+
"label.anchor-ref": "앵커 참조",
|
|
762
|
+
"label.anchor-pin": "앵커 위치",
|
|
763
|
+
"label.anchor-offset-x": "앵커 오프셋 X",
|
|
764
|
+
"label.anchor-offset-y": "앵커 오프셋 Y",
|
|
765
|
+
"label.anchor-offset-z": "앵커 오프셋 Z"
|
|
740
766
|
}
|
package/translations/ms.json
CHANGED
|
@@ -101,11 +101,21 @@
|
|
|
101
101
|
"component.polygon": "poligon",
|
|
102
102
|
"component.polyline": "polilin",
|
|
103
103
|
"component.popup": "popup",
|
|
104
|
+
"component.popup-container": "kontena popup",
|
|
105
|
+
"component.tooltip-3d": "tooltip 3D",
|
|
104
106
|
"component.rect": "segi empat",
|
|
105
107
|
"component.single arrow": "anak panah tunggal",
|
|
106
108
|
"component.star": "bintang",
|
|
107
109
|
"component.text": "teks",
|
|
108
110
|
"component.triangle": "segitiga",
|
|
111
|
+
"component.carrier": "carrier",
|
|
112
|
+
"component.floor-plate": "floor plate",
|
|
113
|
+
"component.signal-tower": "signal tower",
|
|
114
|
+
"component.stock-hub": "stock hub",
|
|
115
|
+
"component.stocker": "stocker",
|
|
116
|
+
"component.stocker-port": "stocker port",
|
|
117
|
+
"component.tank": "tank",
|
|
118
|
+
"component.vehicle": "vehicle",
|
|
109
119
|
"component.video": "video",
|
|
110
120
|
"error.MAX_LENGTH_OF_X_IS_Y": "Panjang Maksimum {name} adalah {value}",
|
|
111
121
|
"error.SERVER-ERROR": "Ralat berlaku di pelayan. ({msg})",
|
|
@@ -420,6 +430,7 @@
|
|
|
420
430
|
"label.search": "Cari",
|
|
421
431
|
"label.search_hint": "Petunjuk Carian",
|
|
422
432
|
"label.secondary_color": "Warna Sekunder",
|
|
433
|
+
"label.see-through": "tembus pandang",
|
|
423
434
|
"label.select": "Pilih",
|
|
424
435
|
"label.selected": "Dipilih",
|
|
425
436
|
"label.send": "Hantar",
|
|
@@ -608,5 +619,20 @@
|
|
|
608
619
|
"validation.email_format": "Sila masukkan alamat e-mel yang sah",
|
|
609
620
|
"validation.max_length": "Maksimum {length} aksara",
|
|
610
621
|
"validation.min_length": "Minimum {length} aksara",
|
|
611
|
-
"validation.required": "Medan ini diperlukan"
|
|
622
|
+
"validation.required": "Medan ini diperlukan",
|
|
623
|
+
"label.mixed-selection": "Mixed Selection",
|
|
624
|
+
"label.fit-mode": "Fit Mode",
|
|
625
|
+
"label.start-in-3d": "Start in 3D",
|
|
626
|
+
"label.keep-above-ground": "Keep Above Ground",
|
|
627
|
+
"label.constant-size": "saiz tetap",
|
|
628
|
+
"label.billboard": "menghadap kamera",
|
|
629
|
+
"label.tether": "garis sambungan",
|
|
630
|
+
"label.off-screen": "luar skrin",
|
|
631
|
+
"label.container-ref": "rujukan bekas",
|
|
632
|
+
"label.html-template": "templat HTML",
|
|
633
|
+
"label.anchor-ref": "rujukan sauh",
|
|
634
|
+
"label.anchor-pin": "kedudukan sauh",
|
|
635
|
+
"label.anchor-offset-x": "ofset sauh X",
|
|
636
|
+
"label.anchor-offset-y": "ofset sauh Y",
|
|
637
|
+
"label.anchor-offset-z": "ofset sauh Z"
|
|
612
638
|
}
|
package/translations/zh.json
CHANGED
|
@@ -102,11 +102,21 @@
|
|
|
102
102
|
"component.polygon": "多边形",
|
|
103
103
|
"component.polyline": "多段线",
|
|
104
104
|
"component.popup": "弹出窗口",
|
|
105
|
+
"component.popup-container": "弹出容器",
|
|
106
|
+
"component.tooltip-3d": "3D 工具提示",
|
|
105
107
|
"component.rect": "矩形",
|
|
106
108
|
"component.single arrow": "单箭头",
|
|
107
109
|
"component.star": "星形",
|
|
108
110
|
"component.text": "文本",
|
|
109
111
|
"component.triangle": "三角形",
|
|
112
|
+
"component.carrier": "载具",
|
|
113
|
+
"component.floor-plate": "楼层板",
|
|
114
|
+
"component.signal-tower": "信号塔",
|
|
115
|
+
"component.stock-hub": "库存中心",
|
|
116
|
+
"component.stocker": "堆垛机",
|
|
117
|
+
"component.stocker-port": "堆垛机端口",
|
|
118
|
+
"component.tank": "储罐",
|
|
119
|
+
"component.vehicle": "搬运车",
|
|
110
120
|
"component.video": "视频",
|
|
111
121
|
"error.MAX_LENGTH_OF_X_IS_Y": "{name}的最大长度是 {value}。",
|
|
112
122
|
"error.SERVER-ERROR": "发生了服务端错误。({msg})",
|
|
@@ -262,6 +272,7 @@
|
|
|
262
272
|
"label.fill-style": "填充颜色",
|
|
263
273
|
"label.final_confirm": "最终确认",
|
|
264
274
|
"label.fit": "匹配",
|
|
275
|
+
"label.fit-mode": "适配模式",
|
|
265
276
|
"label.floor": "层",
|
|
266
277
|
"label.font": "字体",
|
|
267
278
|
"label.font-code": "字体代码",
|
|
@@ -366,6 +377,7 @@
|
|
|
366
377
|
"label.modal": "模态",
|
|
367
378
|
"label.mode": "mode",
|
|
368
379
|
"label.move_to_admin": "移动到管理者页面。",
|
|
380
|
+
"label.mixed-selection": "多种类型已选择",
|
|
369
381
|
"label.multi-axis": "多轴",
|
|
370
382
|
"label.multiple": "多个",
|
|
371
383
|
"label.name": "名称",
|
|
@@ -465,6 +477,7 @@
|
|
|
465
477
|
"label.screen-size": "界面大小",
|
|
466
478
|
"label.second-width": "秒针厚度",
|
|
467
479
|
"label.section": "段",
|
|
480
|
+
"label.see-through": "透视",
|
|
468
481
|
"label.series": "系列",
|
|
469
482
|
"label.shadow": "阴影",
|
|
470
483
|
"label.shadowOffsetX": "偏移-X",
|
|
@@ -735,5 +748,18 @@
|
|
|
735
748
|
"label.align-top": "顶部",
|
|
736
749
|
"label.align-bottom": "底部",
|
|
737
750
|
"label.align-left": "左侧",
|
|
738
|
-
"label.align-right": "右侧"
|
|
751
|
+
"label.align-right": "右侧",
|
|
752
|
+
"label.start-in-3d": "以3D模式启动",
|
|
753
|
+
"label.keep-above-ground": "保持摄像机在地面以上",
|
|
754
|
+
"label.constant-size": "固定大小",
|
|
755
|
+
"label.billboard": "面向相机",
|
|
756
|
+
"label.tether": "连接线",
|
|
757
|
+
"label.off-screen": "屏幕外处理",
|
|
758
|
+
"label.container-ref": "容器引用",
|
|
759
|
+
"label.html-template": "HTML 模板",
|
|
760
|
+
"label.anchor-ref": "锚点引用",
|
|
761
|
+
"label.anchor-pin": "锚点位置",
|
|
762
|
+
"label.anchor-offset-x": "锚点偏移 X",
|
|
763
|
+
"label.anchor-offset-y": "锚点偏移 Y",
|
|
764
|
+
"label.anchor-offset-z": "锚点偏移 Z"
|
|
739
765
|
}
|