@plurid/plurid-data 0.0.0-2 → 0.0.0-21

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 (66) hide show
  1. package/distribution/index.d.mts +2678 -0
  2. package/distribution/index.d.ts +2678 -3
  3. package/distribution/index.js +1720 -1453
  4. package/distribution/index.js.map +1 -1
  5. package/distribution/index.mjs +1762 -0
  6. package/distribution/index.mjs.map +1 -0
  7. package/package.json +64 -62
  8. package/distribution/constants/compare/index.d.ts +0 -2
  9. package/distribution/constants/configuration/index.d.ts +0 -15
  10. package/distribution/constants/defaults/index.d.ts +0 -19
  11. package/distribution/constants/entities/index.d.ts +0 -18
  12. package/distribution/constants/events/index.d.ts +0 -2
  13. package/distribution/constants/index.d.ts +0 -11
  14. package/distribution/constants/internationalization/chinese/index.d.ts +0 -3
  15. package/distribution/constants/internationalization/english/index.d.ts +0 -3
  16. package/distribution/constants/internationalization/fields.d.ts +0 -3
  17. package/distribution/constants/internationalization/french/index.d.ts +0 -3
  18. package/distribution/constants/internationalization/german/index.d.ts +0 -3
  19. package/distribution/constants/internationalization/hindi/index.d.ts +0 -3
  20. package/distribution/constants/internationalization/index.d.ts +0 -14
  21. package/distribution/constants/internationalization/italian/index.d.ts +0 -3
  22. package/distribution/constants/internationalization/japanese/index.d.ts +0 -3
  23. package/distribution/constants/internationalization/languages.d.ts +0 -3
  24. package/distribution/constants/internationalization/romanian/index.d.ts +0 -3
  25. package/distribution/constants/internationalization/russian/index.d.ts +0 -3
  26. package/distribution/constants/internationalization/spanish/index.d.ts +0 -3
  27. package/distribution/constants/keys/index.d.ts +0 -2
  28. package/distribution/constants/pubsub/index.d.ts +0 -32
  29. package/distribution/constants/shortcuts/index.d.ts +0 -16
  30. package/distribution/constants/space/index.d.ts +0 -7
  31. package/distribution/constants/tree/index.d.ts +0 -2
  32. package/distribution/enumerations/general/index.d.ts +0 -68
  33. package/distribution/enumerations/index.d.ts +0 -1
  34. package/distribution/index.es.js +0 -1451
  35. package/distribution/index.es.js.map +0 -1
  36. package/distribution/interfaces/external/animation/index.d.ts +0 -18
  37. package/distribution/interfaces/external/application/index.d.ts +0 -57
  38. package/distribution/interfaces/external/cluster/index.d.ts +0 -9
  39. package/distribution/interfaces/external/compare/index.d.ts +0 -13
  40. package/distribution/interfaces/external/component/index.d.ts +0 -45
  41. package/distribution/interfaces/external/configuration/index.d.ts +0 -206
  42. package/distribution/interfaces/external/configurator/index.d.ts +0 -12
  43. package/distribution/interfaces/external/index.d.ts +0 -16
  44. package/distribution/interfaces/external/keys/index.d.ts +0 -1
  45. package/distribution/interfaces/external/layout/index.d.ts +0 -159
  46. package/distribution/interfaces/external/link/index.d.ts +0 -133
  47. package/distribution/interfaces/external/metastate/index.d.ts +0 -5
  48. package/distribution/interfaces/external/plane/index.d.ts +0 -64
  49. package/distribution/interfaces/external/pubsub/index.d.ts +0 -11
  50. package/distribution/interfaces/external/pubsub/message.d.ts +0 -232
  51. package/distribution/interfaces/external/registrar/index.d.ts +0 -7
  52. package/distribution/interfaces/external/router/index.d.ts +0 -264
  53. package/distribution/interfaces/external/universe/index.d.ts +0 -37
  54. package/distribution/interfaces/external/view/index.d.ts +0 -18
  55. package/distribution/interfaces/external/window/index.d.ts +0 -4
  56. package/distribution/interfaces/helpers/index.d.ts +0 -10
  57. package/distribution/interfaces/index.d.ts +0 -3
  58. package/distribution/interfaces/internal/context/index.d.ts +0 -9
  59. package/distribution/interfaces/internal/index.d.ts +0 -7
  60. package/distribution/interfaces/internal/internationalization/index.d.ts +0 -157
  61. package/distribution/interfaces/internal/plane/index.d.ts +0 -10
  62. package/distribution/interfaces/internal/shortcuts/index.d.ts +0 -10
  63. package/distribution/interfaces/internal/state/index.d.ts +0 -41
  64. package/distribution/interfaces/internal/tree/index.d.ts +0 -106
  65. package/distribution/interfaces/internal/universe/index.d.ts +0 -27
  66. package/distribution/interfaces/internal/utilities/index.d.ts +0 -19
@@ -1,1575 +1,1842 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- const compareTypes = {
8
- equal: "==",
9
- equalLessThan: "<=",
10
- lessThan: "<",
11
- equalGreaterThan: ">=",
12
- greaterThan: ">"
1
+ 'use strict';
2
+
3
+ // source/constants/compare/index.ts
4
+ var compareTypes = {
5
+ equal: "==",
6
+ equalLessThan: "<=",
7
+ lessThan: "<",
8
+ equalGreaterThan: ">=",
9
+ greaterThan: ">"
13
10
  };
14
11
 
15
- exports.SHORTCUTS = void 0;
16
-
17
- (function(SHORTCUTS) {
18
- SHORTCUTS["TOGGLE_FIRST_PERSON"] = "TOGGLE_FIRST_PERSON";
19
- SHORTCUTS["MOVE_FORWARD"] = "MOVE_FORWARD";
20
- SHORTCUTS["MOVE_BACKWARD"] = "MOVE_BACKWARD";
21
- SHORTCUTS["MOVE_LEFT"] = "MOVE_LEFT";
22
- SHORTCUTS["MOVE_RIGHT"] = "MOVE_RIGHT";
23
- SHORTCUTS["MOVE_UP"] = "MOVE_UP";
24
- SHORTCUTS["MOVE_DOWN"] = "MOVE_DOWN";
25
- SHORTCUTS["TURN_LEFT"] = "TURN_LEFT";
26
- SHORTCUTS["TURN_RIGHT"] = "TURN_RIGHT";
27
- SHORTCUTS["TURN_UP"] = "TURN_UP";
28
- SHORTCUTS["TURN_DOWN"] = "TURN_DOWN";
29
- SHORTCUTS["ROTATE_UP"] = "ROTATE_UP";
30
- SHORTCUTS["ROTATE_DOWN"] = "ROTATE_DOWN";
31
- SHORTCUTS["ROTATE_LEFT"] = "ROTATE_LEFT";
32
- SHORTCUTS["ROTATE_RIGHT"] = "ROTATE_RIGHT";
33
- SHORTCUTS["TOGGLE_ROTATE"] = "TOGGLE_ROTATE";
34
- SHORTCUTS["TRANSLATE_UP"] = "TRANSLATE_UP";
35
- SHORTCUTS["TRANSLATE_DOWN"] = "TRANSLATE_DOWN";
36
- SHORTCUTS["TRANSLATE_LEFT"] = "TRANSLATE_LEFT";
37
- SHORTCUTS["TRANSLATE_RIGHT"] = "TRANSLATE_RIGHT";
38
- SHORTCUTS["TRANSLATE_IN"] = "TRANSLATE_IN";
39
- SHORTCUTS["TRANSLATE_OUT"] = "TRANSLATE_OUT";
40
- SHORTCUTS["TOGGLE_TRANSLATE"] = "TOGGLE_TRANSLATE";
41
- SHORTCUTS["SCALE_UP"] = "SCALE_UP";
42
- SHORTCUTS["SCALE_DOWN"] = "SCALE_DOWN";
43
- SHORTCUTS["TOGGLE_SCALE"] = "TOGGLE_SCALE";
44
- })(exports.SHORTCUTS || (exports.SHORTCUTS = {}));
45
-
46
- exports.KEY_MODIFIERS = void 0;
47
-
48
- (function(KEY_MODIFIERS) {
49
- KEY_MODIFIERS["SHIFT"] = "SHIFT";
50
- KEY_MODIFIERS["ALT"] = "ALT";
51
- KEY_MODIFIERS["CTRL"] = "CTRL";
52
- KEY_MODIFIERS["META"] = "META";
53
- KEY_MODIFIERS["METACTRL"] = "METACTRL";
54
- })(exports.KEY_MODIFIERS || (exports.KEY_MODIFIERS = {}));
55
-
56
- exports.LAYOUT_TYPES = void 0;
57
-
58
- (function(LAYOUT_TYPES) {
59
- LAYOUT_TYPES["COLUMNS"] = "COLUMNS";
60
- LAYOUT_TYPES["ROWS"] = "ROWS";
61
- LAYOUT_TYPES["FACE_TO_FACE"] = "FACE_TO_FACE";
62
- LAYOUT_TYPES["ZIG_ZAG"] = "ZIG_ZAG";
63
- LAYOUT_TYPES["SHEAVES"] = "SHEAVES";
64
- LAYOUT_TYPES["META"] = "META";
65
- })(exports.LAYOUT_TYPES || (exports.LAYOUT_TYPES = {}));
66
-
67
- exports.SIZES = void 0;
68
-
69
- (function(SIZES) {
70
- SIZES["SMALL"] = "SMALL";
71
- SIZES["NORMAL"] = "NORMAL";
72
- SIZES["LARGE"] = "LARGE";
73
- })(exports.SIZES || (exports.SIZES = {}));
74
-
75
- exports.TRANSFORM_MODES = void 0;
76
-
77
- (function(TRANSFORM_MODES) {
78
- TRANSFORM_MODES["ROTATION"] = "ROTATION";
79
- TRANSFORM_MODES["SCALE"] = "SCALE";
80
- TRANSFORM_MODES["TRANSLATION"] = "TRANSLATION";
81
- TRANSFORM_MODES["ALL"] = "ALL";
82
- })(exports.TRANSFORM_MODES || (exports.TRANSFORM_MODES = {}));
83
-
84
- exports.TRANSFORM_TOUCHES = void 0;
85
-
86
- (function(TRANSFORM_TOUCHES) {
87
- TRANSFORM_TOUCHES["SWIPE"] = "SWIPE";
88
- TRANSFORM_TOUCHES["PAN"] = "PAN";
89
- })(exports.TRANSFORM_TOUCHES || (exports.TRANSFORM_TOUCHES = {}));
90
-
91
- exports.TOOLBAR_DRAWERS = void 0;
92
-
93
- (function(TOOLBAR_DRAWERS) {
94
- TOOLBAR_DRAWERS["ALL"] = "ALL";
95
- TOOLBAR_DRAWERS["GLOBAL"] = "GLOBAL";
96
- TOOLBAR_DRAWERS["TRANSFORM"] = "TRANSFORM";
97
- TOOLBAR_DRAWERS["SPACE"] = "SPACE";
98
- TOOLBAR_DRAWERS["TOOLBAR"] = "TOOLBAR";
99
- TOOLBAR_DRAWERS["VIEWCUBE"] = "VIEWCUBE";
100
- TOOLBAR_DRAWERS["TECHNICAL"] = "TECHNICAL";
101
- TOOLBAR_DRAWERS["SHORTCUTS"] = "SHORTCUTS";
102
- })(exports.TOOLBAR_DRAWERS || (exports.TOOLBAR_DRAWERS = {}));
103
-
104
- const PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE = 1500;
105
-
106
- const PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX = "'";
107
-
108
- const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW = true;
109
-
110
- const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN = 800;
111
-
112
- const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT = 400;
113
-
114
- const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X = 5;
115
-
116
- const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y = 0;
117
-
118
- const PLURID_ROUTE_SEPARATOR = "://";
119
-
120
- const PLURID_ROUTE_DEFAULT = "default";
121
-
122
- const PLURID_ROUTE_DEFAULT_PATH_VALUE = "/";
123
-
124
- const PLURID_ROUTE_DEFAULT_PATH = "p";
125
-
126
- const PLURID_ROUTE_DEFAULT_SPACE_VALUE = "default";
127
-
128
- const PLURID_ROUTE_DEFAULT_SPACE = "s";
129
-
130
- const PLURID_ROUTE_DEFAULT_UNIVERSE_VALUE = "default";
131
-
132
- const PLURID_ROUTE_DEFAULT_UNIVERSE = "u";
133
-
134
- const PLURID_ROUTE_DEFAULT_CLUSTER_VALUE = "default";
135
-
136
- const PLURID_ROUTE_DEFAULT_CLUSTER = "c";
137
-
138
- const PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST = "originhost";
139
-
140
- const PLURID_ROUTER_STORAGE = "__PLURID_ROUTER__";
141
-
142
- const defaultConfigurationGlobal = {
143
- micro: false,
144
- theme: {
145
- general: "plurid",
146
- interaction: "plurid"
147
- },
148
- language: "english",
149
- transparentUI: false,
150
- render: "plurid"
12
+ // source/enumerations/general/index.ts
13
+ var SHORTCUTS = /* @__PURE__ */ ((SHORTCUTS2) => {
14
+ SHORTCUTS2["TOGGLE_FIRST_PERSON"] = "TOGGLE_FIRST_PERSON";
15
+ SHORTCUTS2["MOVE_FORWARD"] = "MOVE_FORWARD";
16
+ SHORTCUTS2["MOVE_BACKWARD"] = "MOVE_BACKWARD";
17
+ SHORTCUTS2["MOVE_LEFT"] = "MOVE_LEFT";
18
+ SHORTCUTS2["MOVE_RIGHT"] = "MOVE_RIGHT";
19
+ SHORTCUTS2["MOVE_UP"] = "MOVE_UP";
20
+ SHORTCUTS2["MOVE_DOWN"] = "MOVE_DOWN";
21
+ SHORTCUTS2["TURN_LEFT"] = "TURN_LEFT";
22
+ SHORTCUTS2["TURN_RIGHT"] = "TURN_RIGHT";
23
+ SHORTCUTS2["TURN_UP"] = "TURN_UP";
24
+ SHORTCUTS2["TURN_DOWN"] = "TURN_DOWN";
25
+ SHORTCUTS2["ROTATE_UP"] = "ROTATE_UP";
26
+ SHORTCUTS2["ROTATE_DOWN"] = "ROTATE_DOWN";
27
+ SHORTCUTS2["ROTATE_LEFT"] = "ROTATE_LEFT";
28
+ SHORTCUTS2["ROTATE_RIGHT"] = "ROTATE_RIGHT";
29
+ SHORTCUTS2["TOGGLE_ROTATE"] = "TOGGLE_ROTATE";
30
+ SHORTCUTS2["TRANSLATE_UP"] = "TRANSLATE_UP";
31
+ SHORTCUTS2["TRANSLATE_DOWN"] = "TRANSLATE_DOWN";
32
+ SHORTCUTS2["TRANSLATE_LEFT"] = "TRANSLATE_LEFT";
33
+ SHORTCUTS2["TRANSLATE_RIGHT"] = "TRANSLATE_RIGHT";
34
+ SHORTCUTS2["TRANSLATE_IN"] = "TRANSLATE_IN";
35
+ SHORTCUTS2["TRANSLATE_OUT"] = "TRANSLATE_OUT";
36
+ SHORTCUTS2["TOGGLE_TRANSLATE"] = "TOGGLE_TRANSLATE";
37
+ SHORTCUTS2["SCALE_UP"] = "SCALE_UP";
38
+ SHORTCUTS2["SCALE_DOWN"] = "SCALE_DOWN";
39
+ SHORTCUTS2["TOGGLE_SCALE"] = "TOGGLE_SCALE";
40
+ SHORTCUTS2["FOCUS_PLANE"] = "FOCUS_PLANE";
41
+ SHORTCUTS2["FOCUS_PARENT"] = "FOCUS_PARENT";
42
+ SHORTCUTS2["REFRESH_PLANE"] = "REFRESH_PLANE";
43
+ SHORTCUTS2["ISOLATE_PLANE"] = "ISOLATE_PLANE";
44
+ SHORTCUTS2["OPEN_CLOSED_PLANE"] = "OPEN_CLOSED_PLANE";
45
+ SHORTCUTS2["CLOSE_PLANE"] = "CLOSE_PLANE";
46
+ SHORTCUTS2["PREVIOUS_ROOT"] = "PREVIOUS_ROOT";
47
+ SHORTCUTS2["NEXT_ROOT"] = "NEXT_ROOT";
48
+ SHORTCUTS2["FOCUS_ROOT"] = "FOCUS_ROOT";
49
+ return SHORTCUTS2;
50
+ })(SHORTCUTS || {});
51
+ var KEY_MODIFIERS = /* @__PURE__ */ ((KEY_MODIFIERS2) => {
52
+ KEY_MODIFIERS2["SHIFT"] = "SHIFT";
53
+ KEY_MODIFIERS2["ALT"] = "ALT";
54
+ KEY_MODIFIERS2["CTRL"] = "CTRL";
55
+ KEY_MODIFIERS2["META"] = "META";
56
+ KEY_MODIFIERS2["METACTRL"] = "METACTRL";
57
+ return KEY_MODIFIERS2;
58
+ })(KEY_MODIFIERS || {});
59
+ var LAYOUT_TYPES = /* @__PURE__ */ ((LAYOUT_TYPES2) => {
60
+ LAYOUT_TYPES2["COLUMNS"] = "COLUMNS";
61
+ LAYOUT_TYPES2["ROWS"] = "ROWS";
62
+ LAYOUT_TYPES2["FACE_TO_FACE"] = "FACE_TO_FACE";
63
+ LAYOUT_TYPES2["ZIG_ZAG"] = "ZIG_ZAG";
64
+ LAYOUT_TYPES2["SHEAVES"] = "SHEAVES";
65
+ LAYOUT_TYPES2["META"] = "META";
66
+ return LAYOUT_TYPES2;
67
+ })(LAYOUT_TYPES || {});
68
+ var SIZES = /* @__PURE__ */ ((SIZES2) => {
69
+ SIZES2["SMALL"] = "SMALL";
70
+ SIZES2["NORMAL"] = "NORMAL";
71
+ SIZES2["LARGE"] = "LARGE";
72
+ return SIZES2;
73
+ })(SIZES || {});
74
+ var TRANSFORM_MODES = /* @__PURE__ */ ((TRANSFORM_MODES2) => {
75
+ TRANSFORM_MODES2["ROTATION"] = "ROTATION";
76
+ TRANSFORM_MODES2["SCALE"] = "SCALE";
77
+ TRANSFORM_MODES2["TRANSLATION"] = "TRANSLATION";
78
+ TRANSFORM_MODES2["ALL"] = "ALL";
79
+ return TRANSFORM_MODES2;
80
+ })(TRANSFORM_MODES || {});
81
+ var TRANSFORM_TOUCHES = /* @__PURE__ */ ((TRANSFORM_TOUCHES2) => {
82
+ TRANSFORM_TOUCHES2["SWIPE"] = "SWIPE";
83
+ TRANSFORM_TOUCHES2["PAN"] = "PAN";
84
+ return TRANSFORM_TOUCHES2;
85
+ })(TRANSFORM_TOUCHES || {});
86
+ var TOOLBAR_DRAWERS = /* @__PURE__ */ ((TOOLBAR_DRAWERS2) => {
87
+ TOOLBAR_DRAWERS2["ALL"] = "ALL";
88
+ TOOLBAR_DRAWERS2["GLOBAL"] = "GLOBAL";
89
+ TOOLBAR_DRAWERS2["TRANSFORM"] = "TRANSFORM";
90
+ TOOLBAR_DRAWERS2["SPACE"] = "SPACE";
91
+ TOOLBAR_DRAWERS2["TOOLBAR"] = "TOOLBAR";
92
+ TOOLBAR_DRAWERS2["VIEWCUBE"] = "VIEWCUBE";
93
+ TOOLBAR_DRAWERS2["MINIMAP"] = "MINIMAP";
94
+ TOOLBAR_DRAWERS2["TECHNICAL"] = "TECHNICAL";
95
+ TOOLBAR_DRAWERS2["SHORTCUTS"] = "SHORTCUTS";
96
+ return TOOLBAR_DRAWERS2;
97
+ })(TOOLBAR_DRAWERS || {});
98
+
99
+ // source/constants/defaults/index.ts
100
+ var PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE = 1500;
101
+ var PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX = "'";
102
+ var PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW = true;
103
+ var PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN = 800;
104
+ var PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT = 400;
105
+ var PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X = 5;
106
+ var PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y = 0;
107
+ var PLURID_ROUTE_SEPARATOR = "://";
108
+ var PLURID_ROUTE_DEFAULT = "default";
109
+ var PLURID_ROUTE_DEFAULT_PATH_VALUE = "/";
110
+ var PLURID_ROUTE_DEFAULT_PATH = "p";
111
+ var PLURID_ROUTE_DEFAULT_SPACE_VALUE = "default";
112
+ var PLURID_ROUTE_DEFAULT_SPACE = "s";
113
+ var PLURID_ROUTE_DEFAULT_UNIVERSE_VALUE = "default";
114
+ var PLURID_ROUTE_DEFAULT_UNIVERSE = "u";
115
+ var PLURID_ROUTE_DEFAULT_CLUSTER_VALUE = "default";
116
+ var PLURID_ROUTE_DEFAULT_CLUSTER = "c";
117
+ var PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST = "originhost";
118
+ var PLURID_ROUTER_STORAGE = "__PLURID_ROUTER__";
119
+ var PLURID_DEFAULT_RESIZE_DEBOUNCE_TIME = 50;
120
+ var PLURID_DEFAULT_PREVENT_OVERSCROLL_TIMEOUT = 250;
121
+ var PLURID_DEFAULT_ANIMATED_TRANSFORM_TIMEOUT = 500;
122
+
123
+ // source/constants/configuration/index.ts
124
+ var defaultConfigurationGlobal = {
125
+ micro: false,
126
+ theme: {
127
+ general: "plurid",
128
+ interaction: "plurid"
129
+ },
130
+ language: "english",
131
+ transparentUI: false,
132
+ render: "plurid"
151
133
  };
152
-
153
- const defaultConfigurationElements = {
154
- toolbar: {
155
- show: true,
156
- opaque: true,
157
- conceal: false,
158
- transformIcons: false,
159
- transformButtons: false,
160
- toggledDrawers: []
161
- },
162
- viewcube: {
163
- show: true,
164
- opaque: true,
165
- conceal: false,
166
- buttons: true
167
- },
168
- plane: {
169
- width: 1,
170
- opacity: 1,
171
- controls: {
172
- show: true,
173
- pathbar: {
174
- domainURL: true
175
- }
176
- }
177
- },
178
- link: {
179
- suffix: PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX,
180
- preview: {
181
- show: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW,
182
- fadeIn: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN,
183
- fadeOut: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT,
184
- offsetX: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X,
185
- offsetY: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y
186
- }
187
- },
188
- switch: {
189
- show: false
134
+ var defaultConfigurationElements = {
135
+ toolbar: {
136
+ show: true,
137
+ opaque: true,
138
+ conceal: false,
139
+ transformIcons: false,
140
+ transformButtons: false,
141
+ drawers: [],
142
+ toggledDrawers: []
143
+ },
144
+ viewcube: {
145
+ show: true,
146
+ opaque: true,
147
+ conceal: false,
148
+ buttons: true
149
+ },
150
+ minimap: {
151
+ show: false,
152
+ transparent: true
153
+ },
154
+ plane: {
155
+ width: 1,
156
+ opacity: 1,
157
+ controls: {
158
+ show: true,
159
+ title: true,
160
+ pathbar: {
161
+ domainURL: true
162
+ }
163
+ }
164
+ },
165
+ link: {
166
+ suffix: PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX,
167
+ preview: {
168
+ show: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW,
169
+ fadeIn: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN,
170
+ fadeOut: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT,
171
+ offsetX: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X,
172
+ offsetY: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y
190
173
  }
174
+ },
175
+ switch: {
176
+ show: false
177
+ }
191
178
  };
192
-
193
- const defaultConfigurationSpace = {
194
- layout: {
195
- type: exports.LAYOUT_TYPES.COLUMNS,
196
- columns: 2
197
- },
198
- perspective: 2e3,
199
- opaque: true,
200
- center: false,
201
- transformOrigin: {
202
- show: true,
203
- size: exports.SIZES.NORMAL
204
- },
205
- transformLocks: {
206
- rotationX: true,
207
- rotationY: true,
208
- translationY: true,
209
- translationX: true,
210
- translationZ: true,
211
- scale: true
212
- },
213
- transformMode: exports.TRANSFORM_MODES.ALL,
214
- transformMultimode: false,
215
- transformTouch: exports.TRANSFORM_TOUCHES.PAN,
216
- firstPerson: false,
217
- cullingDistance: PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE
179
+ var defaultConfigurationSpace = {
180
+ layout: {
181
+ type: "COLUMNS" /* COLUMNS */,
182
+ columns: 2
183
+ },
184
+ perspective: 2e3,
185
+ opaque: true,
186
+ fadeInTime: 1500,
187
+ center: false,
188
+ transformOrigin: {
189
+ show: true,
190
+ size: "NORMAL" /* NORMAL */
191
+ },
192
+ transformLocks: {
193
+ rotationX: true,
194
+ rotationY: true,
195
+ translationY: true,
196
+ translationX: true,
197
+ translationZ: true,
198
+ scale: true
199
+ },
200
+ transformMode: "ALL" /* ALL */,
201
+ transformMultimode: false,
202
+ transformTouch: "PAN" /* PAN */,
203
+ firstPerson: false,
204
+ collaboration: false,
205
+ undo: true,
206
+ viewpointURLWrite: false,
207
+ viewpointURLRestore: false,
208
+ viewpointURLParam: "v",
209
+ viewpointURLDebounce: 400,
210
+ timings: {
211
+ persistDebounce: 300,
212
+ viewpointChangeDebounce: 250
213
+ },
214
+ cullingDistance: PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE,
215
+ bridge: {
216
+ length: 100,
217
+ planeAngle: 90
218
+ }
218
219
  };
219
-
220
- const defaultConfigurationNetwork = {
221
- protocol: "https",
222
- host: PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST
220
+ var defaultConfigurationNetwork = {
221
+ protocol: "https",
222
+ host: PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST
223
223
  };
224
-
225
- const defaultConfigurationDevelopment = {
226
- planeDebugger: false,
227
- spaceDebugger: false
224
+ var defaultConfigurationDevelopment = {
225
+ planeDebugger: false,
226
+ spaceDebugger: false
228
227
  };
229
-
230
- const defaultConfiguration = {
231
- global: Object.assign({}, defaultConfigurationGlobal),
232
- elements: Object.assign({}, defaultConfigurationElements),
233
- space: Object.assign({}, defaultConfigurationSpace),
234
- network: Object.assign({}, defaultConfigurationNetwork),
235
- development: Object.assign({}, defaultConfigurationDevelopment)
228
+ var defaultConfiguration = {
229
+ global: {
230
+ ...defaultConfigurationGlobal
231
+ },
232
+ elements: {
233
+ ...defaultConfigurationElements
234
+ },
235
+ space: {
236
+ ...defaultConfigurationSpace
237
+ },
238
+ network: {
239
+ ...defaultConfigurationNetwork
240
+ },
241
+ development: {
242
+ ...defaultConfigurationDevelopment
243
+ }
236
244
  };
237
-
238
- const layoutNames = {
239
- COLUMNS: "columns",
240
- ROWS: "rows",
241
- FACE_TO_FACE: "face to face",
242
- ZIG_ZAG: "zig zag",
243
- SHEAVES: "sheaves",
244
- META: "meta"
245
+ var layoutNames = {
246
+ COLUMNS: "columns",
247
+ ROWS: "rows",
248
+ FACE_TO_FACE: "face to face",
249
+ ZIG_ZAG: "zig zag",
250
+ SHEAVES: "sheaves",
251
+ META: "meta"
245
252
  };
246
253
 
247
- const PLURID_ENTITY_VIEW = "PluridView";
248
-
249
- const PLURID_ENTITY_APPLICATION_CONFIGURATOR = "PluridApplicationConfigurator";
250
-
251
- const PLURID_ENTITY_TRANSFORM_ORIGIN = "PluridTransformOrigin";
252
-
253
- const PLURID_ENTITY_PLANE = "PluridPlane";
254
-
255
- const PLURID_ENTITY_PLANE_BRIDGE = "PluridPlaneBridge";
256
-
257
- const PLURID_ENTITY_PLANE_CONTROLS = "PluridPlaneControls";
258
-
259
- const PLURID_ENTITY_PLANE_CONTENT = "PluridPlaneContent";
260
-
261
- const PLURID_ENTITY_PLANE_CONFIGURATOR = "PluridPlaneConfigurator";
262
-
263
- const PLURID_ENTITY_PLANE_DEBUGGER = "PluridPlaneDebugger";
264
-
265
- const PLURID_ENTITY_LINK = "PluridLink";
266
-
267
- const PLURID_ENTITY_ROOT = "PluridRoot";
268
-
269
- const PLURID_ENTITY_ROOTS = "PluridRoots";
270
-
271
- const PLURID_ENTITY_SPACE = "PluridSpace";
272
-
273
- const PLURID_ENTITY_SPACE_DEBUGGER = "PluridSpaceDebugger";
274
-
275
- const PLURID_ENTITY_MULTISPACE = "PluridMultispace";
276
-
277
- const PLURID_ENTITY_TOOLBAR = "PluridToolbar";
278
-
279
- const PLURID_ENTITY_VIEWCUBE = "PluridViewcube";
280
-
281
- const PLURID_ENTITY_UNIVERSE_EXPLORER = "PluridUniverseExplorer";
282
-
283
- const PLURID_ROUTER_LOCATION_CHANGED = "pluridrouterlocationchanged";
284
-
285
- const PLURID_ROUTER_LOCATION_STORED = "pluridrouterlocationstored";
286
-
287
- const chinese = {
288
- viewcubeFront: "面前",
289
- viewcubeBack: "背部",
290
- viewcubeLeft: "剩下",
291
- viewcubeRight: "剩下",
292
- viewcubeTop: "最佳",
293
- viewcubeBase: "基础",
294
- toolbarTransformRotate: "旋转",
295
- toolbarTransformScale: "规模",
296
- toolbarTransformTranslate: "翻译",
297
- toolbarDrawerGlobalTitle: "全球",
298
- toolbarDrawerGlobalGeneralTheme: "一般主题",
299
- toolbarDrawerGlobalInteractionTheme: "互动主题",
300
- toolbarDrawerGlobalLanguage: "语言",
301
- toolbarDrawerTransformTitle: "转变",
302
- toolbarDrawerTransformMultiModeTransform: "多模变换",
303
- toolbarDrawerTransformAllowRotationX: "允许旋转x",
304
- toolbarDrawerTransformAllowRotationY: "允许旋转y",
305
- toolbarDrawerTransformAllowTranslationX: "允许翻译x",
306
- toolbarDrawerTransformAllowTranslationY: "允许翻译y",
307
- toolbarDrawerTransformAllowTranslationZ: "允许翻译z",
308
- toolbarDrawerTransformAllowScale: "允许规模",
309
- toolbarDrawerTransformTouchTransform: "触摸变换",
310
- toolbarDrawerSpaceTitle: "空间",
311
- toolbarDrawerSpaceTransparentUserInterface: "透明的用户界面",
312
- toolbarDrawerSpaceShowTransformOrigin: "显示变换原点",
313
- toolbarDrawerSpaceTransformOriginSize: "转换原点大小",
314
- toolbarDrawerSpacePlaneOpacity: "平面不透明度",
315
- toolbarDrawerSpaceLayoutType: "布局类型",
316
- toolbarDrawerToolbarTitle: "工具栏",
317
- toolbarDrawerToolbarAlwaysOpaque: "总是不透明",
318
- toolbarDrawerToolbarShowTransformIcons: "显示转换图标",
319
- toolbarDrawerToolbarShowTransformArrows: "显示变换箭头",
320
- toolbarDrawerToolbarConcealToolbar: "隐藏工具栏",
321
- toolbarDrawerViewcubeTitle: "查看立方体",
322
- toolbarDrawerViewcubeShowViewcube: "显示视图立方体",
323
- toolbarDrawerViewcubeShowTransformButtons: "显示转换按钮",
324
- toolbarDrawerViewcubeAlwaysOpaque: "总是不透明",
325
- toolbarDrawerViewcubeConcealViewcube: "隐藏视点",
326
- toolbarDrawerTechnicalTitle: "技术",
327
- toolbarDrawerTechnicalCullingDistance: "剔除距离",
328
- toolbarDrawerShortcutsTitle: "捷径",
329
- toolbarDrawerShortcutsToggleFirstPerson: "切换第一人称",
330
- toolbarDrawerShortcutsMoveForward: "前进",
331
- toolbarDrawerShortcutsMoveBackward: "往后退",
332
- toolbarDrawerShortcutsMoveLeft: "向左移动",
333
- toolbarDrawerShortcutsMoveRight: "向右移",
334
- toolbarDrawerShortcutsMoveUp: "提升",
335
- toolbarDrawerShortcutsMoveDown: "下移",
336
- toolbarDrawerShortcutsTurnLeft: "转左",
337
- toolbarDrawerShortcutsTurnRight: "右转",
338
- toolbarDrawerShortcutsTurnUp: "到场",
339
- toolbarDrawerShortcutsTurnDown: "驳回",
340
- toolbarDrawerShortcutsRotateUp: "向上旋转",
341
- toolbarDrawerShortcutsRotateDown: "向下旋转",
342
- toolbarDrawerShortcutsRotateLeft: "向左旋转",
343
- toolbarDrawerShortcutsRotateRight: "右旋",
344
- toolbarDrawerShortcutsToggleRotate: "拨动旋转",
345
- toolbarDrawerShortcutsTranslateUp: "向上翻译",
346
- toolbarDrawerShortcutsTranslateDown: "向下翻译",
347
- toolbarDrawerShortcutsTranslateLeft: "向左翻译",
348
- toolbarDrawerShortcutsTranslateRight: "正确翻译",
349
- toolbarDrawerShortcutsTranslateIn: "翻译成",
350
- toolbarDrawerShortcutsTranslateOut: "翻译出来",
351
- toolbarDrawerShortcutsToggleTranslate: "切换翻译",
352
- toolbarDrawerShortcutsScaleUp: "放大",
353
- toolbarDrawerShortcutsScaleDown: "缩小",
354
- toolbarDrawerShortcutsToggleScale: "切换刻度",
355
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ 或向上滚动",
356
- toolbarDrawerShortcutsArrowOrScrollDown: "↓ 或向下滚动",
357
- toolbarDrawerShortcutsArrowOrScrollLeft: "← 或向左滚动",
358
- toolbarDrawerShortcutsArrowOrScrollRight: "→ 或向右滚动"
254
+ // source/constants/entities/index.ts
255
+ var PLURID_ENTITY_VIEW = "PluridView";
256
+ var PLURID_ENTITY_APPLICATION_CONFIGURATOR = "PluridApplicationConfigurator";
257
+ var PLURID_ENTITY_TRANSFORM_ORIGIN = "PluridTransformOrigin";
258
+ var PLURID_ENTITY_PLANE = "PluridPlane";
259
+ var PLURID_ENTITY_PLANE_BRIDGE = "PluridPlaneBridge";
260
+ var PLURID_ENTITY_PLANE_CONTROLS = "PluridPlaneControls";
261
+ var PLURID_ENTITY_PLANE_CONTENT = "PluridPlaneContent";
262
+ var PLURID_ENTITY_PLANE_CONFIGURATOR = "PluridPlaneConfigurator";
263
+ var PLURID_ENTITY_PLANE_DEBUGGER = "PluridPlaneDebugger";
264
+ var PLURID_ENTITY_LINK = "PluridLink";
265
+ var PLURID_ENTITY_ROOT = "PluridRoot";
266
+ var PLURID_ENTITY_ROOTS = "PluridRoots";
267
+ var PLURID_ENTITY_PLANE_LINKS = "PluridPlaneLinks";
268
+ var PLURID_ENTITY_ALIGNMENT_GUIDES = "PluridAlignmentGuides";
269
+ var PLURID_ENTITY_SPACE = "PluridSpace";
270
+ var PLURID_ENTITY_SPACE_DEBUGGER = "PluridSpaceDebugger";
271
+ var PLURID_ENTITY_MULTISPACE = "PluridMultispace";
272
+ var PLURID_ENTITY_TOOLBAR = "PluridToolbar";
273
+ var PLURID_ENTITY_VIEWCUBE = "PluridViewcube";
274
+ var PLURID_ENTITY_UNIVERSE_EXPLORER = "PluridUniverseExplorer";
275
+
276
+ // source/constants/events/index.ts
277
+ var PLURID_ROUTER_LOCATION_CHANGED = "pluridrouterlocationchanged";
278
+ var PLURID_ROUTER_LOCATION_STORED = "pluridrouterlocationstored";
279
+
280
+ // source/constants/general/index.ts
281
+ var directions = {
282
+ left: "left",
283
+ right: "right",
284
+ up: "up",
285
+ down: "down"
359
286
  };
360
287
 
361
- const english = {
362
- viewcubeFront: "front",
363
- viewcubeBack: "back",
364
- viewcubeLeft: "left",
365
- viewcubeRight: "right",
366
- viewcubeTop: "top",
367
- viewcubeBase: "base",
368
- toolbarTransformRotate: "rotate",
369
- toolbarTransformScale: "scale",
370
- toolbarTransformTranslate: "translate",
371
- toolbarDrawerGlobalTitle: "global",
372
- toolbarDrawerGlobalGeneralTheme: "general theme",
373
- toolbarDrawerGlobalInteractionTheme: "interaction theme",
374
- toolbarDrawerGlobalLanguage: "language",
375
- toolbarDrawerTransformTitle: "transform",
376
- toolbarDrawerTransformMultiModeTransform: "multi-mode transform",
377
- toolbarDrawerTransformAllowRotationX: "allow rotation x",
378
- toolbarDrawerTransformAllowRotationY: "allow rotation y",
379
- toolbarDrawerTransformAllowTranslationX: "allow translation x",
380
- toolbarDrawerTransformAllowTranslationY: "allow translation y",
381
- toolbarDrawerTransformAllowTranslationZ: "allow translation z",
382
- toolbarDrawerTransformAllowScale: "allow scale",
383
- toolbarDrawerTransformTouchTransform: "touch transform",
384
- toolbarDrawerSpaceTitle: "space",
385
- toolbarDrawerSpaceTransparentUserInterface: "transparent user interface",
386
- toolbarDrawerSpaceShowTransformOrigin: "show transform origin",
387
- toolbarDrawerSpaceTransformOriginSize: "transform origin size",
388
- toolbarDrawerSpacePlaneOpacity: "plane opacity",
389
- toolbarDrawerSpaceLayoutType: "layout type",
390
- toolbarDrawerToolbarTitle: "toolbar",
391
- toolbarDrawerToolbarAlwaysOpaque: "always opaque",
392
- toolbarDrawerToolbarShowTransformIcons: "show transform icons",
393
- toolbarDrawerToolbarShowTransformArrows: "show transform arrows",
394
- toolbarDrawerToolbarConcealToolbar: "conceal toolbar",
395
- toolbarDrawerViewcubeTitle: "viewcube",
396
- toolbarDrawerViewcubeShowViewcube: "show viewcube",
397
- toolbarDrawerViewcubeShowTransformButtons: "show transform buttons",
398
- toolbarDrawerViewcubeAlwaysOpaque: "always opaque",
399
- toolbarDrawerViewcubeConcealViewcube: "conceal viewcube",
400
- toolbarDrawerTechnicalTitle: "technical",
401
- toolbarDrawerTechnicalCullingDistance: "culling distance",
402
- toolbarDrawerShortcutsTitle: "shortcuts",
403
- toolbarDrawerShortcutsToggleFirstPerson: "toggle first person",
404
- toolbarDrawerShortcutsMoveForward: "move forward",
405
- toolbarDrawerShortcutsMoveBackward: "move backward",
406
- toolbarDrawerShortcutsMoveLeft: "move left",
407
- toolbarDrawerShortcutsMoveRight: "move right",
408
- toolbarDrawerShortcutsMoveUp: "move up",
409
- toolbarDrawerShortcutsMoveDown: "move down",
410
- toolbarDrawerShortcutsTurnLeft: "turn left",
411
- toolbarDrawerShortcutsTurnRight: "turn right",
412
- toolbarDrawerShortcutsTurnUp: "turn up",
413
- toolbarDrawerShortcutsTurnDown: "turn down",
414
- toolbarDrawerShortcutsRotateUp: "rotate up",
415
- toolbarDrawerShortcutsRotateDown: "rotate down",
416
- toolbarDrawerShortcutsRotateLeft: "rotate left",
417
- toolbarDrawerShortcutsRotateRight: "rotate right",
418
- toolbarDrawerShortcutsToggleRotate: "toggle rotate",
419
- toolbarDrawerShortcutsTranslateUp: "translate up",
420
- toolbarDrawerShortcutsTranslateDown: "translate down",
421
- toolbarDrawerShortcutsTranslateLeft: "translate left",
422
- toolbarDrawerShortcutsTranslateRight: "translate right",
423
- toolbarDrawerShortcutsTranslateIn: "translate in",
424
- toolbarDrawerShortcutsTranslateOut: "translate out",
425
- toolbarDrawerShortcutsToggleTranslate: "toggle translate",
426
- toolbarDrawerShortcutsScaleUp: "scale up",
427
- toolbarDrawerShortcutsScaleDown: "scale down",
428
- toolbarDrawerShortcutsToggleScale: "toggle scale",
429
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ or scroll up",
430
- toolbarDrawerShortcutsArrowOrScrollDown: "↓ or scroll down",
431
- toolbarDrawerShortcutsArrowOrScrollLeft: "← or scroll left",
432
- toolbarDrawerShortcutsArrowOrScrollRight: "→ or scroll right"
288
+ // source/constants/internationalization/chinese/index.ts
289
+ var chinese = {
290
+ viewcubeFront: "\u9762\u524D",
291
+ viewcubeBack: "\u80CC\u90E8",
292
+ viewcubeLeft: "\u5269\u4E0B",
293
+ viewcubeRight: "\u5269\u4E0B",
294
+ viewcubeTop: "\u6700\u4F73",
295
+ viewcubeBase: "\u57FA\u7840",
296
+ toolbarTransformRotate: "\u65CB\u8F6C",
297
+ toolbarTransformScale: "\u89C4\u6A21",
298
+ toolbarTransformTranslate: "\u7FFB\u8BD1",
299
+ toolbarDrawerGlobalTitle: "\u5168\u7403",
300
+ toolbarDrawerGlobalGeneralTheme: "\u4E00\u822C\u4E3B\u9898",
301
+ toolbarDrawerGlobalInteractionTheme: "\u4E92\u52A8\u4E3B\u9898",
302
+ toolbarDrawerGlobalLanguage: "\u8BED\u8A00",
303
+ toolbarDrawerTransformTitle: "\u8F6C\u53D8",
304
+ toolbarDrawerTransformMultiModeTransform: "\u591A\u6A21\u53D8\u6362",
305
+ toolbarDrawerTransformAllowRotationX: "\u5141\u8BB8\u65CB\u8F6Cx",
306
+ toolbarDrawerTransformAllowRotationY: "\u5141\u8BB8\u65CB\u8F6Cy",
307
+ toolbarDrawerTransformAllowTranslationX: "\u5141\u8BB8\u7FFB\u8BD1x",
308
+ toolbarDrawerTransformAllowTranslationY: "\u5141\u8BB8\u7FFB\u8BD1y",
309
+ toolbarDrawerTransformAllowTranslationZ: "\u5141\u8BB8\u7FFB\u8BD1z",
310
+ toolbarDrawerTransformAllowScale: "\u5141\u8BB8\u89C4\u6A21",
311
+ toolbarDrawerTransformTouchTransform: "\u89E6\u6478\u53D8\u6362",
312
+ toolbarDrawerSpaceTitle: "\u7A7A\u95F4",
313
+ toolbarDrawerSpaceTransparentUserInterface: "\u900F\u660E\u7684\u7528\u6237\u754C\u9762",
314
+ toolbarDrawerSpaceShowTransformOrigin: "\u663E\u793A\u53D8\u6362\u539F\u70B9",
315
+ toolbarDrawerSpaceTransformOriginSize: "\u8F6C\u6362\u539F\u70B9\u5927\u5C0F",
316
+ toolbarDrawerSpacePlaneOpacity: "\u5E73\u9762\u4E0D\u900F\u660E\u5EA6",
317
+ toolbarDrawerSpaceLayoutType: "\u5E03\u5C40\u7C7B\u578B",
318
+ toolbarDrawerToolbarTitle: "\u5DE5\u5177\u680F",
319
+ toolbarDrawerToolbarAlwaysOpaque: "\u603B\u662F\u4E0D\u900F\u660E",
320
+ toolbarDrawerToolbarShowTransformIcons: "\u663E\u793A\u8F6C\u6362\u56FE\u6807",
321
+ toolbarDrawerToolbarShowTransformArrows: "\u663E\u793A\u53D8\u6362\u7BAD\u5934",
322
+ toolbarDrawerToolbarConcealToolbar: "\u9690\u85CF\u5DE5\u5177\u680F",
323
+ toolbarDrawerViewcubeTitle: "\u67E5\u770B\u7ACB\u65B9\u4F53",
324
+ toolbarDrawerViewcubeShowViewcube: "\u663E\u793A\u89C6\u56FE\u7ACB\u65B9\u4F53",
325
+ toolbarDrawerViewcubeShowTransformButtons: "\u663E\u793A\u8F6C\u6362\u6309\u94AE",
326
+ toolbarDrawerViewcubeAlwaysOpaque: "\u603B\u662F\u4E0D\u900F\u660E",
327
+ toolbarDrawerViewcubeConcealViewcube: "\u9690\u85CF\u89C6\u70B9",
328
+ toolbarDrawerTechnicalTitle: "\u6280\u672F",
329
+ toolbarDrawerTechnicalCullingDistance: "\u5254\u9664\u8DDD\u79BB",
330
+ toolbarDrawerShortcutsTitle: "\u6377\u5F84",
331
+ toolbarDrawerShortcutsToggleFirstPerson: "\u5207\u6362\u7B2C\u4E00\u4EBA\u79F0",
332
+ toolbarDrawerShortcutsMoveForward: "\u524D\u8FDB",
333
+ toolbarDrawerShortcutsMoveBackward: "\u5F80\u540E\u9000",
334
+ toolbarDrawerShortcutsMoveLeft: "\u5411\u5DE6\u79FB\u52A8",
335
+ toolbarDrawerShortcutsMoveRight: "\u5411\u53F3\u79FB",
336
+ toolbarDrawerShortcutsMoveUp: "\u63D0\u5347",
337
+ toolbarDrawerShortcutsMoveDown: "\u4E0B\u79FB",
338
+ toolbarDrawerShortcutsTurnLeft: "\u8F6C\u5DE6",
339
+ toolbarDrawerShortcutsTurnRight: "\u53F3\u8F6C",
340
+ toolbarDrawerShortcutsTurnUp: "\u5230\u573A",
341
+ toolbarDrawerShortcutsTurnDown: "\u9A73\u56DE",
342
+ toolbarDrawerShortcutsRotateUp: "\u5411\u4E0A\u65CB\u8F6C",
343
+ toolbarDrawerShortcutsRotateDown: "\u5411\u4E0B\u65CB\u8F6C",
344
+ toolbarDrawerShortcutsRotateLeft: "\u5411\u5DE6\u65CB\u8F6C",
345
+ toolbarDrawerShortcutsRotateRight: "\u53F3\u65CB",
346
+ toolbarDrawerShortcutsToggleRotate: "\u62E8\u52A8\u65CB\u8F6C",
347
+ toolbarDrawerShortcutsTranslateUp: "\u5411\u4E0A\u7FFB\u8BD1",
348
+ toolbarDrawerShortcutsTranslateDown: "\u5411\u4E0B\u7FFB\u8BD1",
349
+ toolbarDrawerShortcutsTranslateLeft: "\u5411\u5DE6\u7FFB\u8BD1",
350
+ toolbarDrawerShortcutsTranslateRight: "\u6B63\u786E\u7FFB\u8BD1",
351
+ toolbarDrawerShortcutsTranslateIn: "\u7FFB\u8BD1\u6210",
352
+ toolbarDrawerShortcutsTranslateOut: "\u7FFB\u8BD1\u51FA\u6765",
353
+ toolbarDrawerShortcutsToggleTranslate: "\u5207\u6362\u7FFB\u8BD1",
354
+ toolbarDrawerShortcutsScaleUp: "\u653E\u5927",
355
+ toolbarDrawerShortcutsScaleDown: "\u7F29\u5C0F",
356
+ toolbarDrawerShortcutsToggleScale: "\u5207\u6362\u523B\u5EA6",
357
+ toolbarDrawerShortcutsFocusPlane: "\u7126\u5E73\u9762",
358
+ toolbarDrawerShortcutsFocusParent: "\u7126\u9EDE\u7236\u6BCD",
359
+ toolbarDrawerShortcutsRefreshPlane: "\u5237\u65B0\u5E73\u9762",
360
+ toolbarDrawerShortcutsIsolatePlane: "\u9694\u96E2\u5E73\u9762",
361
+ toolbarDrawerShortcutsOpenClosedPlane: "\u958B\u9589\u5E73\u9762",
362
+ toolbarDrawerShortcutsClosePlane: "\u95DC\u9589\u5E73\u9762",
363
+ toolbarDrawerShortcutsPreviousRoot: "\u524D\u6839",
364
+ toolbarDrawerShortcutsNextRoot: "\u4E0B\u4E00\u500B\u6839",
365
+ toolbarDrawerShortcutsFocusRoot: "\u7126\u9EDE\u6839",
366
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 \u6216\u5411\u4E0A\u6EDA\u52A8",
367
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 \u6216\u5411\u4E0B\u6EDA\u52A8",
368
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 \u6216\u5411\u5DE6\u6EDA\u52A8",
369
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 \u6216\u5411\u53F3\u6EDA\u52A8"
433
370
  };
434
-
435
- const french = {
436
- viewcubeFront: "avant",
437
- viewcubeBack: "arrière",
438
- viewcubeLeft: "gauche",
439
- viewcubeRight: "droite",
440
- viewcubeTop: "haut",
441
- viewcubeBase: "base",
442
- toolbarTransformRotate: "tourner",
443
- toolbarTransformScale: "échelle",
444
- toolbarTransformTranslate: "transpose",
445
- toolbarDrawerGlobalTitle: "global",
446
- toolbarDrawerGlobalGeneralTheme: "thème général",
447
- toolbarDrawerGlobalInteractionTheme: "thème d'interaction",
448
- toolbarDrawerGlobalLanguage: "langue",
449
- toolbarDrawerTransformTitle: "transformer",
450
- toolbarDrawerTransformMultiModeTransform: "transformation multimode",
451
- toolbarDrawerTransformAllowRotationX: "autoriser la rotation x",
452
- toolbarDrawerTransformAllowRotationY: "autoriser la rotation y",
453
- toolbarDrawerTransformAllowTranslationX: "autoriser transposer x",
454
- toolbarDrawerTransformAllowTranslationY: "autoriser transposer y",
455
- toolbarDrawerTransformAllowTranslationZ: "autoriser transposer z",
456
- toolbarDrawerTransformAllowScale: "autoriser l'échelle",
457
- toolbarDrawerTransformTouchTransform: "transformation tactile",
458
- toolbarDrawerSpaceTitle: "espace",
459
- toolbarDrawerSpaceTransparentUserInterface: "interface utilisateur transparente",
460
- toolbarDrawerSpaceShowTransformOrigin: "montrer l'origine de la transformation",
461
- toolbarDrawerSpaceTransformOriginSize: "transformer la taille d'origine",
462
- toolbarDrawerSpacePlaneOpacity: "opacité du plan",
463
- toolbarDrawerSpaceLayoutType: "type de mise en page",
464
- toolbarDrawerToolbarTitle: "barre d'outils",
465
- toolbarDrawerToolbarAlwaysOpaque: "toujours opaque",
466
- toolbarDrawerToolbarShowTransformIcons: "afficher les icônes de transformation",
467
- toolbarDrawerToolbarShowTransformArrows: "afficher les flèches de transformation",
468
- toolbarDrawerToolbarConcealToolbar: "masquer la barre d'outils",
469
- toolbarDrawerViewcubeTitle: "cube",
470
- toolbarDrawerViewcubeShowViewcube: "montrer le cube",
471
- toolbarDrawerViewcubeShowTransformButtons: "afficher les boutons de transformation",
472
- toolbarDrawerViewcubeAlwaysOpaque: "toujours opaque",
473
- toolbarDrawerViewcubeConcealViewcube: "cacher le cube",
474
- toolbarDrawerTechnicalTitle: "technique",
475
- toolbarDrawerTechnicalCullingDistance: "distance d'abattage",
476
- toolbarDrawerShortcutsTitle: "raccourcis",
477
- toolbarDrawerShortcutsToggleFirstPerson: "basculer à la première personne",
478
- toolbarDrawerShortcutsMoveForward: "avancer",
479
- toolbarDrawerShortcutsMoveBackward: "recule",
480
- toolbarDrawerShortcutsMoveLeft: "à gauche",
481
- toolbarDrawerShortcutsMoveRight: "à droite",
482
- toolbarDrawerShortcutsMoveUp: "en haut",
483
- toolbarDrawerShortcutsMoveDown: "descendre",
484
- toolbarDrawerShortcutsTurnLeft: "tournez à gauche",
485
- toolbarDrawerShortcutsTurnRight: "tournez à droite",
486
- toolbarDrawerShortcutsTurnUp: "relever",
487
- toolbarDrawerShortcutsTurnDown: "rabattre",
488
- toolbarDrawerShortcutsRotateUp: "tourner vers le haut",
489
- toolbarDrawerShortcutsRotateDown: "tourner vers le bas",
490
- toolbarDrawerShortcutsRotateLeft: "tourne à gauche",
491
- toolbarDrawerShortcutsRotateRight: "tourner à droite",
492
- toolbarDrawerShortcutsToggleRotate: "basculer tourner",
493
- toolbarDrawerShortcutsTranslateUp: "transpose vers le haut",
494
- toolbarDrawerShortcutsTranslateDown: "transpose vers le bas",
495
- toolbarDrawerShortcutsTranslateLeft: "transposez à gauche",
496
- toolbarDrawerShortcutsTranslateRight: "transposez à droite",
497
- toolbarDrawerShortcutsTranslateIn: "transposez en",
498
- toolbarDrawerShortcutsTranslateOut: "transposez dehors",
499
- toolbarDrawerShortcutsToggleTranslate: "basculer transposez",
500
- toolbarDrawerShortcutsScaleUp: "augmenter",
501
- toolbarDrawerShortcutsScaleDown: "réduire",
502
- toolbarDrawerShortcutsToggleScale: "basculer l'échelle",
503
- toolbarDrawerShortcutsArrowOrScrollUp: " ou scroll vers le haut",
504
- toolbarDrawerShortcutsArrowOrScrollDown: " ou scroll vers le bas",
505
- toolbarDrawerShortcutsArrowOrScrollLeft: " ou scroll vers la gauche",
506
- toolbarDrawerShortcutsArrowOrScrollRight: " ou scroll vers la droite"
371
+ var chinese_default = chinese;
372
+
373
+ // source/constants/internationalization/english/index.ts
374
+ var english = {
375
+ viewcubeFront: "front",
376
+ viewcubeBack: "back",
377
+ viewcubeLeft: "left",
378
+ viewcubeRight: "right",
379
+ viewcubeTop: "top",
380
+ viewcubeBase: "base",
381
+ toolbarTransformRotate: "rotate",
382
+ toolbarTransformScale: "scale",
383
+ toolbarTransformTranslate: "translate",
384
+ toolbarDrawerGlobalTitle: "global",
385
+ toolbarDrawerGlobalGeneralTheme: "general theme",
386
+ toolbarDrawerGlobalInteractionTheme: "interaction theme",
387
+ toolbarDrawerGlobalLanguage: "language",
388
+ toolbarDrawerTransformTitle: "transform",
389
+ toolbarDrawerTransformMultiModeTransform: "multi-mode transform",
390
+ toolbarDrawerTransformAllowRotationX: "allow rotation x",
391
+ toolbarDrawerTransformAllowRotationY: "allow rotation y",
392
+ toolbarDrawerTransformAllowTranslationX: "allow translation x",
393
+ toolbarDrawerTransformAllowTranslationY: "allow translation y",
394
+ toolbarDrawerTransformAllowTranslationZ: "allow translation z",
395
+ toolbarDrawerTransformAllowScale: "allow scale",
396
+ toolbarDrawerTransformTouchTransform: "touch transform",
397
+ toolbarDrawerSpaceTitle: "space",
398
+ toolbarDrawerSpaceTransparentUserInterface: "transparent user interface",
399
+ toolbarDrawerSpaceShowTransformOrigin: "show transform origin",
400
+ toolbarDrawerSpaceTransformOriginSize: "transform origin size",
401
+ toolbarDrawerSpacePlaneOpacity: "plane opacity",
402
+ toolbarDrawerSpaceLayoutType: "layout type",
403
+ toolbarDrawerToolbarTitle: "toolbar",
404
+ toolbarDrawerToolbarAlwaysOpaque: "always opaque",
405
+ toolbarDrawerToolbarShowTransformIcons: "show transform icons",
406
+ toolbarDrawerToolbarShowTransformArrows: "show transform arrows",
407
+ toolbarDrawerToolbarConcealToolbar: "conceal toolbar",
408
+ toolbarDrawerViewcubeTitle: "viewcube",
409
+ toolbarDrawerViewcubeShowViewcube: "show viewcube",
410
+ toolbarDrawerViewcubeShowTransformButtons: "show transform buttons",
411
+ toolbarDrawerViewcubeAlwaysOpaque: "always opaque",
412
+ toolbarDrawerViewcubeConcealViewcube: "conceal viewcube",
413
+ toolbarDrawerMinimapTitle: "minimap",
414
+ toolbarDrawerMinimapShowMinimap: "show minimap",
415
+ toolbarDrawerMinimapTransparent: "transparent",
416
+ toolbarDrawerTechnicalTitle: "technical",
417
+ toolbarDrawerTechnicalCullingDistance: "culling distance",
418
+ toolbarDrawerShortcutsTitle: "shortcuts",
419
+ toolbarDrawerShortcutsToggleFirstPerson: "toggle first person",
420
+ toolbarDrawerShortcutsMoveForward: "move forward",
421
+ toolbarDrawerShortcutsMoveBackward: "move backward",
422
+ toolbarDrawerShortcutsMoveLeft: "move left",
423
+ toolbarDrawerShortcutsMoveRight: "move right",
424
+ toolbarDrawerShortcutsMoveUp: "move up",
425
+ toolbarDrawerShortcutsMoveDown: "move down",
426
+ toolbarDrawerShortcutsTurnLeft: "turn left",
427
+ toolbarDrawerShortcutsTurnRight: "turn right",
428
+ toolbarDrawerShortcutsTurnUp: "turn up",
429
+ toolbarDrawerShortcutsTurnDown: "turn down",
430
+ toolbarDrawerShortcutsRotateUp: "rotate up",
431
+ toolbarDrawerShortcutsRotateDown: "rotate down",
432
+ toolbarDrawerShortcutsRotateLeft: "rotate left",
433
+ toolbarDrawerShortcutsRotateRight: "rotate right",
434
+ toolbarDrawerShortcutsToggleRotate: "toggle rotate",
435
+ toolbarDrawerShortcutsTranslateUp: "translate up",
436
+ toolbarDrawerShortcutsTranslateDown: "translate down",
437
+ toolbarDrawerShortcutsTranslateLeft: "translate left",
438
+ toolbarDrawerShortcutsTranslateRight: "translate right",
439
+ toolbarDrawerShortcutsTranslateIn: "translate in",
440
+ toolbarDrawerShortcutsTranslateOut: "translate out",
441
+ toolbarDrawerShortcutsToggleTranslate: "toggle translate",
442
+ toolbarDrawerShortcutsScaleUp: "scale up",
443
+ toolbarDrawerShortcutsScaleDown: "scale down",
444
+ toolbarDrawerShortcutsToggleScale: "toggle scale",
445
+ toolbarDrawerShortcutsFocusPlane: "focus plane",
446
+ toolbarDrawerShortcutsFocusParent: "focus parent",
447
+ toolbarDrawerShortcutsRefreshPlane: "refresh plane",
448
+ toolbarDrawerShortcutsIsolatePlane: "isolate plane",
449
+ toolbarDrawerShortcutsOpenClosedPlane: "open closed plane",
450
+ toolbarDrawerShortcutsClosePlane: "close plane",
451
+ toolbarDrawerShortcutsPreviousRoot: "previous root",
452
+ toolbarDrawerShortcutsNextRoot: "next root",
453
+ toolbarDrawerShortcutsFocusRoot: "focus root",
454
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 or scroll up",
455
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 or scroll down",
456
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 or scroll left",
457
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 or scroll right"
507
458
  };
508
-
509
- const german = {
510
- viewcubeFront: "front",
511
- viewcubeBack: "zurück",
512
- viewcubeLeft: "links",
513
- viewcubeRight: "rechts",
514
- viewcubeTop: "top",
515
- viewcubeBase: "base",
516
- toolbarTransformRotate: "rotieren",
517
- toolbarTransformScale: "skala",
518
- toolbarTransformTranslate: "umsetzen",
519
- toolbarDrawerGlobalTitle: "global",
520
- toolbarDrawerGlobalGeneralTheme: "allgemeines thema",
521
- toolbarDrawerGlobalInteractionTheme: "interaktionsthema",
522
- toolbarDrawerGlobalLanguage: "sprache",
523
- toolbarDrawerTransformTitle: "verwandeln",
524
- toolbarDrawerTransformMultiModeTransform: "multimode-transformation",
525
- toolbarDrawerTransformAllowRotationX: "drehung zulassen x",
526
- toolbarDrawerTransformAllowRotationY: "drehung zulassen y",
527
- toolbarDrawerTransformAllowTranslationX: "umsetzen zulassen x",
528
- toolbarDrawerTransformAllowTranslationY: "umsetzen zulassen y",
529
- toolbarDrawerTransformAllowTranslationZ: "umsetzen zulassen z",
530
- toolbarDrawerTransformAllowScale: "skalierung zulassen",
531
- toolbarDrawerTransformTouchTransform: "touch-transformation",
532
- toolbarDrawerSpaceTitle: "raum",
533
- toolbarDrawerSpaceTransparentUserInterface: "transparente benutzeroberfläche",
534
- toolbarDrawerSpaceShowTransformOrigin: "zeige transformationsursprung",
535
- toolbarDrawerSpaceTransformOriginSize: "ursprungsgröße transformieren",
536
- toolbarDrawerSpacePlaneOpacity: "ebenenopazität",
537
- toolbarDrawerSpaceLayoutType: "layouttyp",
538
- toolbarDrawerToolbarTitle: "symbolleiste",
539
- toolbarDrawerToolbarAlwaysOpaque: "immer undurchsichtig",
540
- toolbarDrawerToolbarShowTransformIcons: "transformationssymbole anzeigen",
541
- toolbarDrawerToolbarShowTransformArrows: "transformationspfeile anzeigen",
542
- toolbarDrawerToolbarConcealToolbar: "symbolleiste verbergen",
543
- toolbarDrawerViewcubeTitle: "würfel",
544
- toolbarDrawerViewcubeShowViewcube: "würfel anzeigen",
545
- toolbarDrawerViewcubeShowTransformButtons: "transformationsschaltflächen anzeigen",
546
- toolbarDrawerViewcubeAlwaysOpaque: "immer undurchsichtig",
547
- toolbarDrawerViewcubeConcealViewcube: "würfel verbergen",
548
- toolbarDrawerTechnicalTitle: "technisch",
549
- toolbarDrawerTechnicalCullingDistance: "keulungsentfernung",
550
- toolbarDrawerShortcutsTitle: "verknüpfungen",
551
- toolbarDrawerShortcutsToggleFirstPerson: "erste person umschalten",
552
- toolbarDrawerShortcutsMoveForward: "vorwärts bewegen",
553
- toolbarDrawerShortcutsMoveBackward: "rückwärts bewegen",
554
- toolbarDrawerShortcutsMoveLeft: "nach links bewegen",
555
- toolbarDrawerShortcutsMoveRight: "nach rechts bewegen",
556
- toolbarDrawerShortcutsMoveUp: "nach oben bewegen",
557
- toolbarDrawerShortcutsMoveDown: "sich abwärts bewegen",
558
- toolbarDrawerShortcutsTurnLeft: "biegen sie links ab",
559
- toolbarDrawerShortcutsTurnRight: "biegen sie rechts ab",
560
- toolbarDrawerShortcutsTurnUp: "höher drehen",
561
- toolbarDrawerShortcutsTurnDown: "umlegen",
562
- toolbarDrawerShortcutsRotateUp: "nach oben drehen",
563
- toolbarDrawerShortcutsRotateDown: "nach unten drehen",
564
- toolbarDrawerShortcutsRotateLeft: "nach links drehen",
565
- toolbarDrawerShortcutsRotateRight: "nach rechts drehen",
566
- toolbarDrawerShortcutsToggleRotate: "umschalten drehen",
567
- toolbarDrawerShortcutsTranslateUp: "nach oben umsetzen",
568
- toolbarDrawerShortcutsTranslateDown: "nach unten umsetzen",
569
- toolbarDrawerShortcutsTranslateLeft: "nach links umsetzen",
570
- toolbarDrawerShortcutsTranslateRight: "nach rechts umsetzen",
571
- toolbarDrawerShortcutsTranslateIn: "nach im umsetzen",
572
- toolbarDrawerShortcutsTranslateOut: "nach aus umsetzen",
573
- toolbarDrawerShortcutsToggleTranslate: "umschalten umsetzen",
574
- toolbarDrawerShortcutsScaleUp: "vergrößern",
575
- toolbarDrawerShortcutsScaleDown: "verkleinern",
576
- toolbarDrawerShortcutsToggleScale: "skala umschalten",
577
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ oder nach oben scrollen",
578
- toolbarDrawerShortcutsArrowOrScrollDown: " oder nach unten scrollen",
579
- toolbarDrawerShortcutsArrowOrScrollLeft: " oder nach links scrollen",
580
- toolbarDrawerShortcutsArrowOrScrollRight: " oder nach rechts scrollen"
459
+ var english_default = english;
460
+
461
+ // source/constants/internationalization/french/index.ts
462
+ var french = {
463
+ viewcubeFront: "avant",
464
+ viewcubeBack: "arri\xE8re",
465
+ viewcubeLeft: "gauche",
466
+ viewcubeRight: "droite",
467
+ viewcubeTop: "haut",
468
+ viewcubeBase: "base",
469
+ toolbarTransformRotate: "tourner",
470
+ toolbarTransformScale: "\xE9chelle",
471
+ toolbarTransformTranslate: "transpose",
472
+ toolbarDrawerGlobalTitle: "global",
473
+ toolbarDrawerGlobalGeneralTheme: "th\xE8me g\xE9n\xE9ral",
474
+ toolbarDrawerGlobalInteractionTheme: "th\xE8me d'interaction",
475
+ toolbarDrawerGlobalLanguage: "langue",
476
+ toolbarDrawerTransformTitle: "transformer",
477
+ toolbarDrawerTransformMultiModeTransform: "transformation multimode",
478
+ toolbarDrawerTransformAllowRotationX: "autoriser la rotation x",
479
+ toolbarDrawerTransformAllowRotationY: "autoriser la rotation y",
480
+ toolbarDrawerTransformAllowTranslationX: "autoriser transposer x",
481
+ toolbarDrawerTransformAllowTranslationY: "autoriser transposer y",
482
+ toolbarDrawerTransformAllowTranslationZ: "autoriser transposer z",
483
+ toolbarDrawerTransformAllowScale: "autoriser l'\xE9chelle",
484
+ toolbarDrawerTransformTouchTransform: "transformation tactile",
485
+ toolbarDrawerSpaceTitle: "espace",
486
+ toolbarDrawerSpaceTransparentUserInterface: "interface utilisateur transparente",
487
+ toolbarDrawerSpaceShowTransformOrigin: "montrer l'origine de la transformation",
488
+ toolbarDrawerSpaceTransformOriginSize: "transformer la taille d'origine",
489
+ toolbarDrawerSpacePlaneOpacity: "opacit\xE9 du plan",
490
+ toolbarDrawerSpaceLayoutType: "type de mise en page",
491
+ toolbarDrawerToolbarTitle: "barre d'outils",
492
+ toolbarDrawerToolbarAlwaysOpaque: "toujours opaque",
493
+ toolbarDrawerToolbarShowTransformIcons: "afficher les ic\xF4nes de transformation",
494
+ toolbarDrawerToolbarShowTransformArrows: "afficher les fl\xE8ches de transformation",
495
+ toolbarDrawerToolbarConcealToolbar: "masquer la barre d'outils",
496
+ toolbarDrawerViewcubeTitle: "cube",
497
+ toolbarDrawerViewcubeShowViewcube: "montrer le cube",
498
+ toolbarDrawerViewcubeShowTransformButtons: "afficher les boutons de transformation",
499
+ toolbarDrawerViewcubeAlwaysOpaque: "toujours opaque",
500
+ toolbarDrawerViewcubeConcealViewcube: "cacher le cube",
501
+ toolbarDrawerTechnicalTitle: "technique",
502
+ toolbarDrawerTechnicalCullingDistance: "distance d'abattage",
503
+ toolbarDrawerShortcutsTitle: "raccourcis",
504
+ toolbarDrawerShortcutsToggleFirstPerson: "basculer \xE0 la premi\xE8re personne",
505
+ toolbarDrawerShortcutsMoveForward: "avancer",
506
+ toolbarDrawerShortcutsMoveBackward: "recule",
507
+ toolbarDrawerShortcutsMoveLeft: "\xE0 gauche",
508
+ toolbarDrawerShortcutsMoveRight: "\xE0 droite",
509
+ toolbarDrawerShortcutsMoveUp: "en haut",
510
+ toolbarDrawerShortcutsMoveDown: "descendre",
511
+ toolbarDrawerShortcutsTurnLeft: "tournez \xE0 gauche",
512
+ toolbarDrawerShortcutsTurnRight: "tournez \xE0 droite",
513
+ toolbarDrawerShortcutsTurnUp: "relever",
514
+ toolbarDrawerShortcutsTurnDown: "rabattre",
515
+ toolbarDrawerShortcutsRotateUp: "tourner vers le haut",
516
+ toolbarDrawerShortcutsRotateDown: "tourner vers le bas",
517
+ toolbarDrawerShortcutsRotateLeft: "tourne \xE0 gauche",
518
+ toolbarDrawerShortcutsRotateRight: "tourner \xE0 droite",
519
+ toolbarDrawerShortcutsToggleRotate: "basculer tourner",
520
+ toolbarDrawerShortcutsTranslateUp: "transpose vers le haut",
521
+ toolbarDrawerShortcutsTranslateDown: "transpose vers le bas",
522
+ toolbarDrawerShortcutsTranslateLeft: "transposez \xE0 gauche",
523
+ toolbarDrawerShortcutsTranslateRight: "transposez \xE0 droite",
524
+ toolbarDrawerShortcutsTranslateIn: "transposez en",
525
+ toolbarDrawerShortcutsTranslateOut: "transposez dehors",
526
+ toolbarDrawerShortcutsToggleTranslate: "basculer transposez",
527
+ toolbarDrawerShortcutsScaleUp: "augmenter",
528
+ toolbarDrawerShortcutsScaleDown: "r\xE9duire",
529
+ toolbarDrawerShortcutsToggleScale: "basculer l'\xE9chelle",
530
+ toolbarDrawerShortcutsFocusPlane: "plan actif",
531
+ toolbarDrawerShortcutsFocusParent: "plan parente",
532
+ toolbarDrawerShortcutsRefreshPlane: "plan rafra\xEEchir",
533
+ toolbarDrawerShortcutsIsolatePlane: "isoler le plan",
534
+ toolbarDrawerShortcutsOpenClosedPlane: "ouvert ferm\xE9 plan",
535
+ toolbarDrawerShortcutsClosePlane: "plan proche",
536
+ toolbarDrawerShortcutsPreviousRoot: "racine pr\xE9c\xE9dente",
537
+ toolbarDrawerShortcutsNextRoot: "racine suivante",
538
+ toolbarDrawerShortcutsFocusRoot: "focus racine",
539
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 ou scroll vers le haut",
540
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 ou scroll vers le bas",
541
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 ou scroll vers la gauche",
542
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 ou scroll vers la droite"
581
543
  };
582
-
583
- const hindi = {
584
- viewcubeFront: "सामने",
585
- viewcubeBack: "वापस",
586
- viewcubeLeft: "बाएं",
587
- viewcubeRight: "सही",
588
- viewcubeTop: "ऊपर",
589
- viewcubeBase: "आधार",
590
- toolbarTransformRotate: "घुमाएँ",
591
- toolbarTransformScale: "स्केल",
592
- toolbarTransformTranslate: "अनुवाद करना",
593
- toolbarDrawerGlobalTitle: "वैश्विक",
594
- toolbarDrawerGlobalGeneralTheme: "सामान्य विषय",
595
- toolbarDrawerGlobalInteractionTheme: "बातचीत का विषय",
596
- toolbarDrawerGlobalLanguage: "भाषा",
597
- toolbarDrawerTransformTitle: "परिवर्तन",
598
- toolbarDrawerTransformMultiModeTransform: "बहु मोड परिवर्तन",
599
- toolbarDrawerTransformAllowRotationX: "रोटेशन एक्स की अनुमति दें",
600
- toolbarDrawerTransformAllowRotationY: "रोटेशन की अनुमति दें",
601
- toolbarDrawerTransformAllowTranslationX: "अनुवाद x की अनुमति दें",
602
- toolbarDrawerTransformAllowTranslationY: "अनुवाद की अनुमति दें",
603
- toolbarDrawerTransformAllowTranslationZ: "अनुवाद की अनुमति दें z",
604
- toolbarDrawerTransformAllowScale: "पैमाने की अनुमति दें",
605
- toolbarDrawerTransformTouchTransform: "स्पर्श परिवर्तन",
606
- toolbarDrawerSpaceTitle: "अंतरिक्ष",
607
- toolbarDrawerSpaceTransparentUserInterface: "पारदर्शी यूजर इंटरफेस",
608
- toolbarDrawerSpaceShowTransformOrigin: "परिवर्तन मूल दिखाएँ",
609
- toolbarDrawerSpaceTransformOriginSize: "मूल आकार बदलना",
610
- toolbarDrawerSpacePlaneOpacity: "विमान की अस्पष्टता",
611
- toolbarDrawerSpaceLayoutType: "लेआउट प्रकार",
612
- toolbarDrawerToolbarTitle: "उपकरण पट्टी",
613
- toolbarDrawerToolbarAlwaysOpaque: "हमेशा अपारदर्शी",
614
- toolbarDrawerToolbarShowTransformIcons: "तब्दील प्रतीक दिखाओ",
615
- toolbarDrawerToolbarShowTransformArrows: "दिखाएँ तीर",
616
- toolbarDrawerToolbarConcealToolbar: "छिपाना टूलबार",
617
- toolbarDrawerViewcubeTitle: "घनक्षेत्र",
618
- toolbarDrawerViewcubeShowViewcube: "घन दिखाना",
619
- toolbarDrawerViewcubeShowTransformButtons: "शो ट्रांसफॉर्म बटन",
620
- toolbarDrawerViewcubeAlwaysOpaque: "हमेशा अपारदर्शी",
621
- toolbarDrawerViewcubeConcealViewcube: "घन छिपाना",
622
- toolbarDrawerTechnicalTitle: "तकनीकी",
623
- toolbarDrawerTechnicalCullingDistance: "कलिंग दूरी",
624
- toolbarDrawerShortcutsTitle: "शॉर्टकट",
625
- toolbarDrawerShortcutsToggleFirstPerson: "पहले व्यक्ति को टॉगल करें",
626
- toolbarDrawerShortcutsMoveForward: "आगे बढ़ो",
627
- toolbarDrawerShortcutsMoveBackward: "पीछे की ओर जाएं",
628
- toolbarDrawerShortcutsMoveLeft: "बाएं खिसको",
629
- toolbarDrawerShortcutsMoveRight: "दाएँ चले",
630
- toolbarDrawerShortcutsMoveUp: "बढ़ाना",
631
- toolbarDrawerShortcutsMoveDown: "नीचे की ओर",
632
- toolbarDrawerShortcutsTurnLeft: "बांए मुड़िए",
633
- toolbarDrawerShortcutsTurnRight: "दायें मुड़ो",
634
- toolbarDrawerShortcutsTurnUp: "ऊपर करो",
635
- toolbarDrawerShortcutsTurnDown: "मना करना",
636
- toolbarDrawerShortcutsRotateUp: "बारी बारी से",
637
- toolbarDrawerShortcutsRotateDown: "नीचे घुमाओ",
638
- toolbarDrawerShortcutsRotateLeft: "बायीं ओर घुमाओ",
639
- toolbarDrawerShortcutsRotateRight: "दाएं घुमाएं",
640
- toolbarDrawerShortcutsToggleRotate: "घुमाना",
641
- toolbarDrawerShortcutsTranslateUp: "अनुवाद करना",
642
- toolbarDrawerShortcutsTranslateDown: "नीचे अनुवाद करें",
643
- toolbarDrawerShortcutsTranslateLeft: "अनुवाद छोड़ दिया",
644
- toolbarDrawerShortcutsTranslateRight: "सही अनुवाद करें",
645
- toolbarDrawerShortcutsTranslateIn: "में अनुवाद करें",
646
- toolbarDrawerShortcutsTranslateOut: "अनुवाद करें",
647
- toolbarDrawerShortcutsToggleTranslate: "अनुवाद टॉगल करें",
648
- toolbarDrawerShortcutsScaleUp: "स्केल अप",
649
- toolbarDrawerShortcutsScaleDown: "घटाना",
650
- toolbarDrawerShortcutsToggleScale: "टॉगल स्केल",
651
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ या स्क्रॉल करें",
652
- toolbarDrawerShortcutsArrowOrScrollDown: " या नीचे स्क्रॉल करें",
653
- toolbarDrawerShortcutsArrowOrScrollLeft: "← या बाईं ओर स्क्रॉल करें",
654
- toolbarDrawerShortcutsArrowOrScrollRight: " या दाईं ओर स्क्रॉल करें"
544
+ var french_default = french;
545
+
546
+ // source/constants/internationalization/german/index.ts
547
+ var german = {
548
+ viewcubeFront: "front",
549
+ viewcubeBack: "zur\xFCck",
550
+ viewcubeLeft: "links",
551
+ viewcubeRight: "rechts",
552
+ viewcubeTop: "top",
553
+ viewcubeBase: "base",
554
+ toolbarTransformRotate: "rotieren",
555
+ toolbarTransformScale: "skala",
556
+ toolbarTransformTranslate: "umsetzen",
557
+ toolbarDrawerGlobalTitle: "global",
558
+ toolbarDrawerGlobalGeneralTheme: "allgemeines thema",
559
+ toolbarDrawerGlobalInteractionTheme: "interaktionsthema",
560
+ toolbarDrawerGlobalLanguage: "sprache",
561
+ toolbarDrawerTransformTitle: "verwandeln",
562
+ toolbarDrawerTransformMultiModeTransform: "multimode-transformation",
563
+ toolbarDrawerTransformAllowRotationX: "drehung zulassen x",
564
+ toolbarDrawerTransformAllowRotationY: "drehung zulassen y",
565
+ toolbarDrawerTransformAllowTranslationX: "umsetzen zulassen x",
566
+ toolbarDrawerTransformAllowTranslationY: "umsetzen zulassen y",
567
+ toolbarDrawerTransformAllowTranslationZ: "umsetzen zulassen z",
568
+ toolbarDrawerTransformAllowScale: "skalierung zulassen",
569
+ toolbarDrawerTransformTouchTransform: "touch-transformation",
570
+ toolbarDrawerSpaceTitle: "raum",
571
+ toolbarDrawerSpaceTransparentUserInterface: "transparente benutzeroberfl\xE4che",
572
+ toolbarDrawerSpaceShowTransformOrigin: "zeige transformationsursprung",
573
+ toolbarDrawerSpaceTransformOriginSize: "ursprungsgr\xF6\xDFe transformieren",
574
+ toolbarDrawerSpacePlaneOpacity: "ebenenopazit\xE4t",
575
+ toolbarDrawerSpaceLayoutType: "layouttyp",
576
+ toolbarDrawerToolbarTitle: "symbolleiste",
577
+ toolbarDrawerToolbarAlwaysOpaque: "immer undurchsichtig",
578
+ toolbarDrawerToolbarShowTransformIcons: "transformationssymbole anzeigen",
579
+ toolbarDrawerToolbarShowTransformArrows: "transformationspfeile anzeigen",
580
+ toolbarDrawerToolbarConcealToolbar: "symbolleiste verbergen",
581
+ toolbarDrawerViewcubeTitle: "w\xFCrfel",
582
+ toolbarDrawerViewcubeShowViewcube: "w\xFCrfel anzeigen",
583
+ toolbarDrawerViewcubeShowTransformButtons: "transformationsschaltfl\xE4chen anzeigen",
584
+ toolbarDrawerViewcubeAlwaysOpaque: "immer undurchsichtig",
585
+ toolbarDrawerViewcubeConcealViewcube: "w\xFCrfel verbergen",
586
+ toolbarDrawerTechnicalTitle: "technisch",
587
+ toolbarDrawerTechnicalCullingDistance: "keulungsentfernung",
588
+ toolbarDrawerShortcutsTitle: "verkn\xFCpfungen",
589
+ toolbarDrawerShortcutsToggleFirstPerson: "erste person umschalten",
590
+ toolbarDrawerShortcutsMoveForward: "vorw\xE4rts bewegen",
591
+ toolbarDrawerShortcutsMoveBackward: "r\xFCckw\xE4rts bewegen",
592
+ toolbarDrawerShortcutsMoveLeft: "nach links bewegen",
593
+ toolbarDrawerShortcutsMoveRight: "nach rechts bewegen",
594
+ toolbarDrawerShortcutsMoveUp: "nach oben bewegen",
595
+ toolbarDrawerShortcutsMoveDown: "sich abw\xE4rts bewegen",
596
+ toolbarDrawerShortcutsTurnLeft: "biegen sie links ab",
597
+ toolbarDrawerShortcutsTurnRight: "biegen sie rechts ab",
598
+ toolbarDrawerShortcutsTurnUp: "h\xF6her drehen",
599
+ toolbarDrawerShortcutsTurnDown: "umlegen",
600
+ toolbarDrawerShortcutsRotateUp: "nach oben drehen",
601
+ toolbarDrawerShortcutsRotateDown: "nach unten drehen",
602
+ toolbarDrawerShortcutsRotateLeft: "nach links drehen",
603
+ toolbarDrawerShortcutsRotateRight: "nach rechts drehen",
604
+ toolbarDrawerShortcutsToggleRotate: "umschalten drehen",
605
+ toolbarDrawerShortcutsTranslateUp: "nach oben umsetzen",
606
+ toolbarDrawerShortcutsTranslateDown: "nach unten umsetzen",
607
+ toolbarDrawerShortcutsTranslateLeft: "nach links umsetzen",
608
+ toolbarDrawerShortcutsTranslateRight: "nach rechts umsetzen",
609
+ toolbarDrawerShortcutsTranslateIn: "nach im umsetzen",
610
+ toolbarDrawerShortcutsTranslateOut: "nach aus umsetzen",
611
+ toolbarDrawerShortcutsToggleTranslate: "umschalten umsetzen",
612
+ toolbarDrawerShortcutsScaleUp: "vergr\xF6\xDFern",
613
+ toolbarDrawerShortcutsScaleDown: "verkleinern",
614
+ toolbarDrawerShortcutsToggleScale: "skala umschalten",
615
+ toolbarDrawerShortcutsFocusPlane: "fokusebene",
616
+ toolbarDrawerShortcutsFocusParent: "fokus elternteil",
617
+ toolbarDrawerShortcutsRefreshPlane: "ebene auffrischen",
618
+ toolbarDrawerShortcutsIsolatePlane: "ebene isolieren",
619
+ toolbarDrawerShortcutsOpenClosedPlane: "offen geschlossen ebene",
620
+ toolbarDrawerShortcutsClosePlane: "ebene schlie\xDFen",
621
+ toolbarDrawerShortcutsPreviousRoot: "vorherige wurzel",
622
+ toolbarDrawerShortcutsNextRoot: "n\xE4chste wurzel",
623
+ toolbarDrawerShortcutsFocusRoot: "fokus wurzel",
624
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 oder nach oben scrollen",
625
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 oder nach unten scrollen",
626
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 oder nach links scrollen",
627
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 oder nach rechts scrollen"
655
628
  };
656
-
657
- const italian = {
658
- viewcubeFront: "davanti",
659
- viewcubeBack: "indietro",
660
- viewcubeLeft: "sinistra",
661
- viewcubeRight: "destra",
662
- viewcubeTop: "top",
663
- viewcubeBase: "base",
664
- toolbarTransformRotate: "ruotare",
665
- toolbarTransformScale: "scalare",
666
- toolbarTransformTranslate: "trasferire",
667
- toolbarDrawerGlobalTitle: "globale",
668
- toolbarDrawerGlobalGeneralTheme: "tema generale",
669
- toolbarDrawerGlobalInteractionTheme: "tema di interazione",
670
- toolbarDrawerGlobalLanguage: "linguaggio",
671
- toolbarDrawerTransformTitle: "trasformare",
672
- toolbarDrawerTransformMultiModeTransform: "trasformazione multimodale",
673
- toolbarDrawerTransformAllowRotationX: "consentire la rotazione x",
674
- toolbarDrawerTransformAllowRotationY: "consentire la rotazione y",
675
- toolbarDrawerTransformAllowTranslationX: "consenti trasferire x",
676
- toolbarDrawerTransformAllowTranslationY: "consenti trasferire y",
677
- toolbarDrawerTransformAllowTranslationZ: "consenti trasferire z",
678
- toolbarDrawerTransformAllowScale: "consentire la scala",
679
- toolbarDrawerTransformTouchTransform: "tocco trasforma",
680
- toolbarDrawerSpaceTitle: "spazio",
681
- toolbarDrawerSpaceTransparentUserInterface: "interfaccia utente trasparente",
682
- toolbarDrawerSpaceShowTransformOrigin: "mostra origine trasformazione",
683
- toolbarDrawerSpaceTransformOriginSize: "trasforma la dimensione dell'origine",
684
- toolbarDrawerSpacePlaneOpacity: "opacità del piano",
685
- toolbarDrawerSpaceLayoutType: "tipo di layout",
686
- toolbarDrawerToolbarTitle: "barra degli strumenti",
687
- toolbarDrawerToolbarAlwaysOpaque: "sempre opaco",
688
- toolbarDrawerToolbarShowTransformIcons: "mostra le icone di trasformazione",
689
- toolbarDrawerToolbarShowTransformArrows: "mostra le frecce di trasformazione",
690
- toolbarDrawerToolbarConcealToolbar: "nascondere la barra degli strumenti",
691
- toolbarDrawerViewcubeTitle: "cubo",
692
- toolbarDrawerViewcubeShowViewcube: "mostra cubo",
693
- toolbarDrawerViewcubeShowTransformButtons: "mostra i pulsanti di trasformazione",
694
- toolbarDrawerViewcubeAlwaysOpaque: "sempre opaco",
695
- toolbarDrawerViewcubeConcealViewcube: "nascondere il cubo",
696
- toolbarDrawerTechnicalTitle: "tecnico",
697
- toolbarDrawerTechnicalCullingDistance: "distanza di abbattimento",
698
- toolbarDrawerShortcutsTitle: "scorciatoie",
699
- toolbarDrawerShortcutsToggleFirstPerson: "attiva la prima persona",
700
- toolbarDrawerShortcutsMoveForward: "andare avanti",
701
- toolbarDrawerShortcutsMoveBackward: "tornare indietro",
702
- toolbarDrawerShortcutsMoveLeft: "muovere a sinistra",
703
- toolbarDrawerShortcutsMoveRight: "muovere a destra",
704
- toolbarDrawerShortcutsMoveUp: "muovere avanti",
705
- toolbarDrawerShortcutsMoveDown: "muovere a giù",
706
- toolbarDrawerShortcutsTurnLeft: "gira a sinistra",
707
- toolbarDrawerShortcutsTurnRight: "gira a destra",
708
- toolbarDrawerShortcutsTurnUp: "gira a su",
709
- toolbarDrawerShortcutsTurnDown: "gira a giù",
710
- toolbarDrawerShortcutsRotateUp: "ruotare a su",
711
- toolbarDrawerShortcutsRotateDown: "ruotare a giù",
712
- toolbarDrawerShortcutsRotateLeft: "ruotare a sinistra",
713
- toolbarDrawerShortcutsRotateRight: "ruotare a destra",
714
- toolbarDrawerShortcutsToggleRotate: "attiva / disattiva la rotazione",
715
- toolbarDrawerShortcutsTranslateUp: "trasferire a su",
716
- toolbarDrawerShortcutsTranslateDown: "trasferire a giù",
717
- toolbarDrawerShortcutsTranslateLeft: "trasferire a sinistra",
718
- toolbarDrawerShortcutsTranslateRight: "trasferire a destra",
719
- toolbarDrawerShortcutsTranslateIn: "trasferire a nella",
720
- toolbarDrawerShortcutsTranslateOut: "trasferire a fuori",
721
- toolbarDrawerShortcutsToggleTranslate: "attiva / disattiva trasferire",
722
- toolbarDrawerShortcutsScaleUp: "scalare a su",
723
- toolbarDrawerShortcutsScaleDown: "scalare a giù",
724
- toolbarDrawerShortcutsToggleScale: "attiva / disattiva la scala",
725
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ o scorrere verso l'alto",
726
- toolbarDrawerShortcutsArrowOrScrollDown: " o scorrere verso il basso",
727
- toolbarDrawerShortcutsArrowOrScrollLeft: " o scorrere verso sinistra",
728
- toolbarDrawerShortcutsArrowOrScrollRight: " o scorrere verso destra"
629
+ var german_default = german;
630
+
631
+ // source/constants/internationalization/hindi/index.ts
632
+ var hindi = {
633
+ viewcubeFront: "\u0938\u093E\u092E\u0928\u0947",
634
+ viewcubeBack: "\u0935\u093E\u092A\u0938",
635
+ viewcubeLeft: "\u092C\u093E\u090F\u0902",
636
+ viewcubeRight: "\u0938\u0939\u0940",
637
+ viewcubeTop: "\u090A\u092A\u0930",
638
+ viewcubeBase: "\u0906\u0927\u093E\u0930",
639
+ toolbarTransformRotate: "\u0918\u0941\u092E\u093E\u090F\u0901",
640
+ toolbarTransformScale: "\u0938\u094D\u0915\u0947\u0932",
641
+ toolbarTransformTranslate: "\u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0928\u093E",
642
+ toolbarDrawerGlobalTitle: "\u0935\u0948\u0936\u094D\u0935\u093F\u0915",
643
+ toolbarDrawerGlobalGeneralTheme: "\u0938\u093E\u092E\u093E\u0928\u094D\u092F \u0935\u093F\u0937\u092F",
644
+ toolbarDrawerGlobalInteractionTheme: "\u092C\u093E\u0924\u091A\u0940\u0924 \u0915\u093E \u0935\u093F\u0937\u092F",
645
+ toolbarDrawerGlobalLanguage: "\u092D\u093E\u0937\u093E",
646
+ toolbarDrawerTransformTitle: "\u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928",
647
+ toolbarDrawerTransformMultiModeTransform: "\u092C\u0939\u0941 \u092E\u094B\u0921 \u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928",
648
+ toolbarDrawerTransformAllowRotationX: "\u0930\u094B\u091F\u0947\u0936\u0928 \u090F\u0915\u094D\u0938 \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902",
649
+ toolbarDrawerTransformAllowRotationY: "\u0930\u094B\u091F\u0947\u0936\u0928 \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902",
650
+ toolbarDrawerTransformAllowTranslationX: "\u0905\u0928\u0941\u0935\u093E\u0926 x \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902",
651
+ toolbarDrawerTransformAllowTranslationY: "\u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902",
652
+ toolbarDrawerTransformAllowTranslationZ: "\u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902 z",
653
+ toolbarDrawerTransformAllowScale: "\u092A\u0948\u092E\u093E\u0928\u0947 \u0915\u0940 \u0905\u0928\u0941\u092E\u0924\u093F \u0926\u0947\u0902",
654
+ toolbarDrawerTransformTouchTransform: "\u0938\u094D\u092A\u0930\u094D\u0936 \u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928",
655
+ toolbarDrawerSpaceTitle: "\u0905\u0902\u0924\u0930\u093F\u0915\u094D\u0937",
656
+ toolbarDrawerSpaceTransparentUserInterface: "\u092A\u093E\u0930\u0926\u0930\u094D\u0936\u0940 \u092F\u0942\u091C\u0930 \u0907\u0902\u091F\u0930\u092B\u0947\u0938",
657
+ toolbarDrawerSpaceShowTransformOrigin: "\u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 \u092E\u0942\u0932 \u0926\u093F\u0916\u093E\u090F\u0901",
658
+ toolbarDrawerSpaceTransformOriginSize: "\u092E\u0942\u0932 \u0906\u0915\u093E\u0930 \u092C\u0926\u0932\u0928\u093E",
659
+ toolbarDrawerSpacePlaneOpacity: "\u0935\u093F\u092E\u093E\u0928 \u0915\u0940 \u0905\u0938\u094D\u092A\u0937\u094D\u091F\u0924\u093E",
660
+ toolbarDrawerSpaceLayoutType: "\u0932\u0947\u0906\u0909\u091F \u092A\u094D\u0930\u0915\u093E\u0930",
661
+ toolbarDrawerToolbarTitle: "\u0909\u092A\u0915\u0930\u0923 \u092A\u091F\u094D\u091F\u0940",
662
+ toolbarDrawerToolbarAlwaysOpaque: "\u0939\u092E\u0947\u0936\u093E \u0905\u092A\u093E\u0930\u0926\u0930\u094D\u0936\u0940",
663
+ toolbarDrawerToolbarShowTransformIcons: "\u0924\u092C\u094D\u0926\u0940\u0932 \u092A\u094D\u0930\u0924\u0940\u0915 \u0926\u093F\u0916\u093E\u0913",
664
+ toolbarDrawerToolbarShowTransformArrows: "\u0926\u093F\u0916\u093E\u090F\u0901 \u0924\u0940\u0930",
665
+ toolbarDrawerToolbarConcealToolbar: "\u091B\u093F\u092A\u093E\u0928\u093E \u091F\u0942\u0932\u092C\u093E\u0930",
666
+ toolbarDrawerViewcubeTitle: "\u0918\u0928\u0915\u094D\u0937\u0947\u0924\u094D\u0930",
667
+ toolbarDrawerViewcubeShowViewcube: "\u0918\u0928 \u0926\u093F\u0916\u093E\u0928\u093E",
668
+ toolbarDrawerViewcubeShowTransformButtons: "\u0936\u094B \u091F\u094D\u0930\u093E\u0902\u0938\u092B\u0949\u0930\u094D\u092E \u092C\u091F\u0928",
669
+ toolbarDrawerViewcubeAlwaysOpaque: "\u0939\u092E\u0947\u0936\u093E \u0905\u092A\u093E\u0930\u0926\u0930\u094D\u0936\u0940",
670
+ toolbarDrawerViewcubeConcealViewcube: "\u0918\u0928 \u091B\u093F\u092A\u093E\u0928\u093E",
671
+ toolbarDrawerTechnicalTitle: "\u0924\u0915\u0928\u0940\u0915\u0940",
672
+ toolbarDrawerTechnicalCullingDistance: "\u0915\u0932\u093F\u0902\u0917 \u0926\u0942\u0930\u0940",
673
+ toolbarDrawerShortcutsTitle: "\u0936\u0949\u0930\u094D\u091F\u0915\u091F",
674
+ toolbarDrawerShortcutsToggleFirstPerson: "\u092A\u0939\u0932\u0947 \u0935\u094D\u092F\u0915\u094D\u0924\u093F \u0915\u094B \u091F\u0949\u0917\u0932 \u0915\u0930\u0947\u0902",
675
+ toolbarDrawerShortcutsMoveForward: "\u0906\u0917\u0947 \u092C\u0922\u093C\u094B",
676
+ toolbarDrawerShortcutsMoveBackward: "\u092A\u0940\u091B\u0947 \u0915\u0940 \u0913\u0930 \u091C\u093E\u090F\u0902",
677
+ toolbarDrawerShortcutsMoveLeft: "\u092C\u093E\u090F\u0902 \u0916\u093F\u0938\u0915\u094B",
678
+ toolbarDrawerShortcutsMoveRight: "\u0926\u093E\u090F\u0901 \u091A\u0932\u0947",
679
+ toolbarDrawerShortcutsMoveUp: "\u092C\u0922\u093C\u093E\u0928\u093E",
680
+ toolbarDrawerShortcutsMoveDown: "\u0928\u0940\u091A\u0947 \u0915\u0940 \u0913\u0930",
681
+ toolbarDrawerShortcutsTurnLeft: "\u092C\u093E\u0902\u090F \u092E\u0941\u0921\u093C\u093F\u090F",
682
+ toolbarDrawerShortcutsTurnRight: "\u0926\u093E\u092F\u0947\u0902 \u092E\u0941\u0921\u093C\u094B",
683
+ toolbarDrawerShortcutsTurnUp: "\u090A\u092A\u0930 \u0915\u0930\u094B",
684
+ toolbarDrawerShortcutsTurnDown: "\u092E\u0928\u093E \u0915\u0930\u0928\u093E",
685
+ toolbarDrawerShortcutsRotateUp: "\u092C\u093E\u0930\u0940 \u092C\u093E\u0930\u0940 \u0938\u0947",
686
+ toolbarDrawerShortcutsRotateDown: "\u0928\u0940\u091A\u0947 \u0918\u0941\u092E\u093E\u0913",
687
+ toolbarDrawerShortcutsRotateLeft: "\u092C\u093E\u092F\u0940\u0902 \u0913\u0930 \u0918\u0941\u092E\u093E\u0913",
688
+ toolbarDrawerShortcutsRotateRight: "\u0926\u093E\u090F\u0902 \u0918\u0941\u092E\u093E\u090F\u0902",
689
+ toolbarDrawerShortcutsToggleRotate: "\u0918\u0941\u092E\u093E\u0928\u093E",
690
+ toolbarDrawerShortcutsTranslateUp: "\u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0928\u093E",
691
+ toolbarDrawerShortcutsTranslateDown: "\u0928\u0940\u091A\u0947 \u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0947\u0902",
692
+ toolbarDrawerShortcutsTranslateLeft: "\u0905\u0928\u0941\u0935\u093E\u0926 \u091B\u094B\u0921\u093C \u0926\u093F\u092F\u093E",
693
+ toolbarDrawerShortcutsTranslateRight: "\u0938\u0939\u0940 \u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0947\u0902",
694
+ toolbarDrawerShortcutsTranslateIn: "\u092E\u0947\u0902 \u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0947\u0902",
695
+ toolbarDrawerShortcutsTranslateOut: "\u0905\u0928\u0941\u0935\u093E\u0926 \u0915\u0930\u0947\u0902",
696
+ toolbarDrawerShortcutsToggleTranslate: "\u0905\u0928\u0941\u0935\u093E\u0926 \u091F\u0949\u0917\u0932 \u0915\u0930\u0947\u0902",
697
+ toolbarDrawerShortcutsScaleUp: "\u0938\u094D\u0915\u0947\u0932 \u0905\u092A",
698
+ toolbarDrawerShortcutsScaleDown: "\u0918\u091F\u093E\u0928\u093E",
699
+ toolbarDrawerShortcutsToggleScale: "\u091F\u0949\u0917\u0932 \u0938\u094D\u0915\u0947\u0932",
700
+ toolbarDrawerShortcutsFocusPlane: "\u092B\u094B\u0915\u0938 \u092A\u094D\u0932\u0947\u0928",
701
+ toolbarDrawerShortcutsFocusParent: "\u0927\u094D\u092F\u093E\u0928 \u092E\u093E\u0924\u093E-\u092A\u093F\u0924\u093E",
702
+ toolbarDrawerShortcutsRefreshPlane: "\u0924\u093E\u091C\u093C\u093E \u0935\u093F\u092E\u093E\u0928",
703
+ toolbarDrawerShortcutsIsolatePlane: "\u0905\u0932\u0917 \u0935\u093F\u092E\u093E\u0928",
704
+ toolbarDrawerShortcutsOpenClosedPlane: "\u0916\u0941\u0932\u093E \u092C\u0902\u0926 \u0935\u093F\u092E\u093E\u0928",
705
+ toolbarDrawerShortcutsClosePlane: "\u092C\u0902\u0926 \u0935\u093F\u092E\u093E\u0928",
706
+ toolbarDrawerShortcutsPreviousRoot: "\u092A\u093F\u091B\u0932\u0940 \u091C\u0921\u093C",
707
+ toolbarDrawerShortcutsNextRoot: "\u0905\u0917\u0932\u0940 \u091C\u0921\u093C",
708
+ toolbarDrawerShortcutsFocusRoot: "\u092B\u094B\u0915\u0938 \u0930\u0942\u091F",
709
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 \u092F\u093E \u0938\u094D\u0915\u094D\u0930\u0949\u0932 \u0915\u0930\u0947\u0902",
710
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 \u092F\u093E \u0928\u0940\u091A\u0947 \u0938\u094D\u0915\u094D\u0930\u0949\u0932 \u0915\u0930\u0947\u0902",
711
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 \u092F\u093E \u092C\u093E\u0908\u0902 \u0913\u0930 \u0938\u094D\u0915\u094D\u0930\u0949\u0932 \u0915\u0930\u0947\u0902",
712
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 \u092F\u093E \u0926\u093E\u0908\u0902 \u0913\u0930 \u0938\u094D\u0915\u094D\u0930\u0949\u0932 \u0915\u0930\u0947\u0902"
729
713
  };
730
-
731
- const japanese = {
732
- viewcubeFront: "フロント",
733
- viewcubeBack: "バック",
734
- viewcubeLeft: "",
735
- viewcubeRight: "正しい",
736
- viewcubeTop: "",
737
- viewcubeBase: "ベース",
738
- toolbarTransformRotate: "回転させる",
739
- toolbarTransformScale: "規模",
740
- toolbarTransformTranslate: "翻訳する",
741
- toolbarDrawerGlobalTitle: "グローバル",
742
- toolbarDrawerGlobalGeneralTheme: "一般的なテーマ",
743
- toolbarDrawerGlobalInteractionTheme: "相互作用のテーマ",
744
- toolbarDrawerGlobalLanguage: "言語",
745
- toolbarDrawerTransformTitle: "変換する",
746
- toolbarDrawerTransformMultiModeTransform: "マルチモード変換",
747
- toolbarDrawerTransformAllowRotationX: "回転を許可x",
748
- toolbarDrawerTransformAllowRotationY: "回転を許可するy",
749
- toolbarDrawerTransformAllowTranslationX: "翻訳を許可するx",
750
- toolbarDrawerTransformAllowTranslationY: "翻訳を許可するy",
751
- toolbarDrawerTransformAllowTranslationZ: "翻訳を許可するz",
752
- toolbarDrawerTransformAllowScale: "スケールを許可する",
753
- toolbarDrawerTransformTouchTransform: "タッチ変換",
754
- toolbarDrawerSpaceTitle: "スペース",
755
- toolbarDrawerSpaceTransparentUserInterface: "透過的なユーザーインターフェイス",
756
- toolbarDrawerSpaceShowTransformOrigin: "変換の起点を表示",
757
- toolbarDrawerSpaceTransformOriginSize: "変換元サイズ",
758
- toolbarDrawerSpacePlaneOpacity: "平面の不透明度",
759
- toolbarDrawerSpaceLayoutType: "レイアウトタイプ",
760
- toolbarDrawerToolbarTitle: "ツールバー",
761
- toolbarDrawerToolbarAlwaysOpaque: "常に不透明",
762
- toolbarDrawerToolbarShowTransformIcons: "変換アイコンを表示",
763
- toolbarDrawerToolbarShowTransformArrows: "変換矢印を表示",
764
- toolbarDrawerToolbarConcealToolbar: "ツールバーを隠す",
765
- toolbarDrawerViewcubeTitle: "ビューキューブ",
766
- toolbarDrawerViewcubeShowViewcube: "ビューキューブを表示",
767
- toolbarDrawerViewcubeShowTransformButtons: "変換ボタンを表示する",
768
- toolbarDrawerViewcubeAlwaysOpaque: "常に不透明",
769
- toolbarDrawerViewcubeConcealViewcube: "ビューキューブを隠す",
770
- toolbarDrawerTechnicalTitle: "テクニカル",
771
- toolbarDrawerTechnicalCullingDistance: "カリング距離",
772
- toolbarDrawerShortcutsTitle: "ショートカット",
773
- toolbarDrawerShortcutsToggleFirstPerson: "一人称を切り替える",
774
- toolbarDrawerShortcutsMoveForward: "前進する",
775
- toolbarDrawerShortcutsMoveBackward: "後退する",
776
- toolbarDrawerShortcutsMoveLeft: "左に移動",
777
- toolbarDrawerShortcutsMoveRight: "右に動く",
778
- toolbarDrawerShortcutsMoveUp: "上に移動する",
779
- toolbarDrawerShortcutsMoveDown: "下に移動",
780
- toolbarDrawerShortcutsTurnLeft: "左折してください",
781
- toolbarDrawerShortcutsTurnRight: "右に曲がる",
782
- toolbarDrawerShortcutsTurnUp: "現れる",
783
- toolbarDrawerShortcutsTurnDown: "断る",
784
- toolbarDrawerShortcutsRotateUp: "上に回転する",
785
- toolbarDrawerShortcutsRotateDown: "下に回転",
786
- toolbarDrawerShortcutsRotateLeft: "左に回転",
787
- toolbarDrawerShortcutsRotateRight: "右に回る",
788
- toolbarDrawerShortcutsToggleRotate: "トグル回転",
789
- toolbarDrawerShortcutsTranslateUp: "翻訳する",
790
- toolbarDrawerShortcutsTranslateDown: "翻訳する",
791
- toolbarDrawerShortcutsTranslateLeft: "左に翻訳",
792
- toolbarDrawerShortcutsTranslateRight: "正しく翻訳する",
793
- toolbarDrawerShortcutsTranslateIn: "翻訳する",
794
- toolbarDrawerShortcutsTranslateOut: "翻訳する",
795
- toolbarDrawerShortcutsToggleTranslate: "トグル翻訳",
796
- toolbarDrawerShortcutsScaleUp: "拡大する",
797
- toolbarDrawerShortcutsScaleDown: "縮小する",
798
- toolbarDrawerShortcutsToggleScale: "トグルスケール",
799
- toolbarDrawerShortcutsArrowOrScrollUp: " または上にスクロールします",
800
- toolbarDrawerShortcutsArrowOrScrollDown: " または下にスクロールします",
801
- toolbarDrawerShortcutsArrowOrScrollLeft: " または左にスクロール",
802
- toolbarDrawerShortcutsArrowOrScrollRight: " または右にスクロール"
714
+ var hindi_default = hindi;
715
+
716
+ // source/constants/internationalization/italian/index.ts
717
+ var italian = {
718
+ viewcubeFront: "davanti",
719
+ viewcubeBack: "indietro",
720
+ viewcubeLeft: "sinistra",
721
+ viewcubeRight: "destra",
722
+ viewcubeTop: "top",
723
+ viewcubeBase: "base",
724
+ toolbarTransformRotate: "ruotare",
725
+ toolbarTransformScale: "scalare",
726
+ toolbarTransformTranslate: "trasferire",
727
+ toolbarDrawerGlobalTitle: "globale",
728
+ toolbarDrawerGlobalGeneralTheme: "tema generale",
729
+ toolbarDrawerGlobalInteractionTheme: "tema di interazione",
730
+ toolbarDrawerGlobalLanguage: "linguaggio",
731
+ toolbarDrawerTransformTitle: "trasformare",
732
+ toolbarDrawerTransformMultiModeTransform: "trasformazione multimodale",
733
+ toolbarDrawerTransformAllowRotationX: "consentire la rotazione x",
734
+ toolbarDrawerTransformAllowRotationY: "consentire la rotazione y",
735
+ toolbarDrawerTransformAllowTranslationX: "consenti trasferire x",
736
+ toolbarDrawerTransformAllowTranslationY: "consenti trasferire y",
737
+ toolbarDrawerTransformAllowTranslationZ: "consenti trasferire z",
738
+ toolbarDrawerTransformAllowScale: "consentire la scala",
739
+ toolbarDrawerTransformTouchTransform: "tocco trasforma",
740
+ toolbarDrawerSpaceTitle: "spazio",
741
+ toolbarDrawerSpaceTransparentUserInterface: "interfaccia utente trasparente",
742
+ toolbarDrawerSpaceShowTransformOrigin: "mostra origine trasformazione",
743
+ toolbarDrawerSpaceTransformOriginSize: "trasforma la dimensione dell'origine",
744
+ toolbarDrawerSpacePlaneOpacity: "opacit\xE0 del piano",
745
+ toolbarDrawerSpaceLayoutType: "tipo di layout",
746
+ toolbarDrawerToolbarTitle: "barra degli strumenti",
747
+ toolbarDrawerToolbarAlwaysOpaque: "sempre opaco",
748
+ toolbarDrawerToolbarShowTransformIcons: "mostra le icone di trasformazione",
749
+ toolbarDrawerToolbarShowTransformArrows: "mostra le frecce di trasformazione",
750
+ toolbarDrawerToolbarConcealToolbar: "nascondere la barra degli strumenti",
751
+ toolbarDrawerViewcubeTitle: "cubo",
752
+ toolbarDrawerViewcubeShowViewcube: "mostra cubo",
753
+ toolbarDrawerViewcubeShowTransformButtons: "mostra i pulsanti di trasformazione",
754
+ toolbarDrawerViewcubeAlwaysOpaque: "sempre opaco",
755
+ toolbarDrawerViewcubeConcealViewcube: "nascondere il cubo",
756
+ toolbarDrawerTechnicalTitle: "tecnico",
757
+ toolbarDrawerTechnicalCullingDistance: "distanza di abbattimento",
758
+ toolbarDrawerShortcutsTitle: "scorciatoie",
759
+ toolbarDrawerShortcutsToggleFirstPerson: "attiva la prima persona",
760
+ toolbarDrawerShortcutsMoveForward: "andare avanti",
761
+ toolbarDrawerShortcutsMoveBackward: "tornare indietro",
762
+ toolbarDrawerShortcutsMoveLeft: "muovere a sinistra",
763
+ toolbarDrawerShortcutsMoveRight: "muovere a destra",
764
+ toolbarDrawerShortcutsMoveUp: "muovere avanti",
765
+ toolbarDrawerShortcutsMoveDown: "muovere a gi\xF9",
766
+ toolbarDrawerShortcutsTurnLeft: "gira a sinistra",
767
+ toolbarDrawerShortcutsTurnRight: "gira a destra",
768
+ toolbarDrawerShortcutsTurnUp: "gira a su",
769
+ toolbarDrawerShortcutsTurnDown: "gira a gi\xF9",
770
+ toolbarDrawerShortcutsRotateUp: "ruotare a su",
771
+ toolbarDrawerShortcutsRotateDown: "ruotare a gi\xF9",
772
+ toolbarDrawerShortcutsRotateLeft: "ruotare a sinistra",
773
+ toolbarDrawerShortcutsRotateRight: "ruotare a destra",
774
+ toolbarDrawerShortcutsToggleRotate: "attiva / disattiva la rotazione",
775
+ toolbarDrawerShortcutsTranslateUp: "trasferire a su",
776
+ toolbarDrawerShortcutsTranslateDown: "trasferire a gi\xF9",
777
+ toolbarDrawerShortcutsTranslateLeft: "trasferire a sinistra",
778
+ toolbarDrawerShortcutsTranslateRight: "trasferire a destra",
779
+ toolbarDrawerShortcutsTranslateIn: "trasferire a nella",
780
+ toolbarDrawerShortcutsTranslateOut: "trasferire a fuori",
781
+ toolbarDrawerShortcutsToggleTranslate: "attiva / disattiva trasferire",
782
+ toolbarDrawerShortcutsScaleUp: "scalare a su",
783
+ toolbarDrawerShortcutsScaleDown: "scalare a gi\xF9",
784
+ toolbarDrawerShortcutsToggleScale: "attiva / disattiva la scala",
785
+ toolbarDrawerShortcutsFocusPlane: "piano attivo",
786
+ toolbarDrawerShortcutsFocusParent: "piano genitore",
787
+ toolbarDrawerShortcutsRefreshPlane: "ristorare piano",
788
+ toolbarDrawerShortcutsIsolatePlane: "isolare il piano",
789
+ toolbarDrawerShortcutsOpenClosedPlane: "piano chiuso aperto",
790
+ toolbarDrawerShortcutsClosePlane: "vicino piano",
791
+ toolbarDrawerShortcutsPreviousRoot: "radice precedente",
792
+ toolbarDrawerShortcutsNextRoot: "radice successiva",
793
+ toolbarDrawerShortcutsFocusRoot: "radice di messa a fuoco",
794
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 o scorrere verso l'alto",
795
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 o scorrere verso il basso",
796
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 o scorrere verso sinistra",
797
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 o scorrere verso destra"
803
798
  };
804
-
805
- const romanian = {
806
- viewcubeFront: "față",
807
- viewcubeBack: "spate",
808
- viewcubeLeft: "stânga",
809
- viewcubeRight: "dreapta",
810
- viewcubeTop: "sus",
811
- viewcubeBase: "jos",
812
- toolbarTransformRotate: "rotire",
813
- toolbarTransformScale: "scalare",
814
- toolbarTransformTranslate: "translație",
815
- toolbarDrawerGlobalTitle: "global",
816
- toolbarDrawerGlobalGeneralTheme: "temă generală",
817
- toolbarDrawerGlobalInteractionTheme: "temă interacțiune",
818
- toolbarDrawerGlobalLanguage: "limbă",
819
- toolbarDrawerTransformTitle: "transformare",
820
- toolbarDrawerTransformMultiModeTransform: "transformare multi-modală",
821
- toolbarDrawerTransformAllowRotationX: "permite rotație x",
822
- toolbarDrawerTransformAllowRotationY: "permite rotație x",
823
- toolbarDrawerTransformAllowTranslationX: "permite translație x",
824
- toolbarDrawerTransformAllowTranslationY: "permite translație y",
825
- toolbarDrawerTransformAllowTranslationZ: "permite translație z",
826
- toolbarDrawerTransformAllowScale: "permite scalare",
827
- toolbarDrawerTransformTouchTransform: "transformare atingere",
828
- toolbarDrawerSpaceTitle: "spațiu",
829
- toolbarDrawerSpaceTransparentUserInterface: "interfață utilizator transparentă",
830
- toolbarDrawerSpaceShowTransformOrigin: "arăta originea transformării",
831
- toolbarDrawerSpaceTransformOriginSize: "mărimea originii transformării",
832
- toolbarDrawerSpacePlaneOpacity: "opacitate plan",
833
- toolbarDrawerSpaceLayoutType: "tip amplasare",
834
- toolbarDrawerToolbarTitle: "bară de unelte",
835
- toolbarDrawerToolbarAlwaysOpaque: "mereu opac",
836
- toolbarDrawerToolbarShowTransformIcons: "arată icoane transformare",
837
- toolbarDrawerToolbarShowTransformArrows: "arată săgeți transformare",
838
- toolbarDrawerToolbarConcealToolbar: "ascunde bara de unelte",
839
- toolbarDrawerViewcubeTitle: "cub",
840
- toolbarDrawerViewcubeShowViewcube: "arată cub",
841
- toolbarDrawerViewcubeShowTransformButtons: "arată butoane transformare",
842
- toolbarDrawerViewcubeAlwaysOpaque: "mereu opac",
843
- toolbarDrawerViewcubeConcealViewcube: "ascunde cub",
844
- toolbarDrawerTechnicalTitle: "tehnic",
845
- toolbarDrawerTechnicalCullingDistance: "distanță ascundere",
846
- toolbarDrawerShortcutsTitle: "scurtături",
847
- toolbarDrawerShortcutsToggleFirstPerson: "comutare persoana întâi",
848
- toolbarDrawerShortcutsMoveForward: "mutare înainte",
849
- toolbarDrawerShortcutsMoveBackward: "mutare înapoi",
850
- toolbarDrawerShortcutsMoveLeft: "mutare stânga",
851
- toolbarDrawerShortcutsMoveRight: "mutare dreapta",
852
- toolbarDrawerShortcutsMoveUp: "mutare sus",
853
- toolbarDrawerShortcutsMoveDown: "mutare jos",
854
- toolbarDrawerShortcutsTurnLeft: "întoarcere stânga",
855
- toolbarDrawerShortcutsTurnRight: "întoarcere dreapta",
856
- toolbarDrawerShortcutsTurnUp: "întoarcere sus",
857
- toolbarDrawerShortcutsTurnDown: "întoarcere jos",
858
- toolbarDrawerShortcutsRotateUp: "rotire sus",
859
- toolbarDrawerShortcutsRotateDown: "rotire jos",
860
- toolbarDrawerShortcutsRotateLeft: "rotire stânga",
861
- toolbarDrawerShortcutsRotateRight: "rotire dreapta",
862
- toolbarDrawerShortcutsToggleRotate: "comutare rotire",
863
- toolbarDrawerShortcutsTranslateUp: "translație sus",
864
- toolbarDrawerShortcutsTranslateDown: "translație jos",
865
- toolbarDrawerShortcutsTranslateLeft: "translație stânga",
866
- toolbarDrawerShortcutsTranslateRight: "translație dreapta",
867
- toolbarDrawerShortcutsTranslateIn: "translație înăuntru",
868
- toolbarDrawerShortcutsTranslateOut: "translație în afară",
869
- toolbarDrawerShortcutsToggleTranslate: "comutare translație",
870
- toolbarDrawerShortcutsScaleUp: "scalare în sus",
871
- toolbarDrawerShortcutsScaleDown: "scalare în jos",
872
- toolbarDrawerShortcutsToggleScale: "comutare scalare",
873
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ sau scroll sus",
874
- toolbarDrawerShortcutsArrowOrScrollDown: "↓ sau scroll jos",
875
- toolbarDrawerShortcutsArrowOrScrollLeft: " sau scroll stânga",
876
- toolbarDrawerShortcutsArrowOrScrollRight: "→ sau scroll dreapta"
799
+ var italian_default = italian;
800
+
801
+ // source/constants/internationalization/japanese/index.ts
802
+ var japanese = {
803
+ viewcubeFront: "\u30D5\u30ED\u30F3\u30C8",
804
+ viewcubeBack: "\u30D0\u30C3\u30AF",
805
+ viewcubeLeft: "\u5DE6",
806
+ viewcubeRight: "\u6B63\u3057\u3044",
807
+ viewcubeTop: "\u4E0A",
808
+ viewcubeBase: "\u30D9\u30FC\u30B9",
809
+ toolbarTransformRotate: "\u56DE\u8EE2\u3055\u305B\u308B",
810
+ toolbarTransformScale: "\u898F\u6A21",
811
+ toolbarTransformTranslate: "\u7FFB\u8A33\u3059\u308B",
812
+ toolbarDrawerGlobalTitle: "\u30B0\u30ED\u30FC\u30D0\u30EB",
813
+ toolbarDrawerGlobalGeneralTheme: "\u4E00\u822C\u7684\u306A\u30C6\u30FC\u30DE",
814
+ toolbarDrawerGlobalInteractionTheme: "\u76F8\u4E92\u4F5C\u7528\u306E\u30C6\u30FC\u30DE",
815
+ toolbarDrawerGlobalLanguage: "\u8A00\u8A9E",
816
+ toolbarDrawerTransformTitle: "\u5909\u63DB\u3059\u308B",
817
+ toolbarDrawerTransformMultiModeTransform: "\u30DE\u30EB\u30C1\u30E2\u30FC\u30C9\u5909\u63DB",
818
+ toolbarDrawerTransformAllowRotationX: "\u56DE\u8EE2\u3092\u8A31\u53EFx",
819
+ toolbarDrawerTransformAllowRotationY: "\u56DE\u8EE2\u3092\u8A31\u53EF\u3059\u308By",
820
+ toolbarDrawerTransformAllowTranslationX: "\u7FFB\u8A33\u3092\u8A31\u53EF\u3059\u308Bx",
821
+ toolbarDrawerTransformAllowTranslationY: "\u7FFB\u8A33\u3092\u8A31\u53EF\u3059\u308By",
822
+ toolbarDrawerTransformAllowTranslationZ: "\u7FFB\u8A33\u3092\u8A31\u53EF\u3059\u308Bz",
823
+ toolbarDrawerTransformAllowScale: "\u30B9\u30B1\u30FC\u30EB\u3092\u8A31\u53EF\u3059\u308B",
824
+ toolbarDrawerTransformTouchTransform: "\u30BF\u30C3\u30C1\u5909\u63DB",
825
+ toolbarDrawerSpaceTitle: "\u30B9\u30DA\u30FC\u30B9",
826
+ toolbarDrawerSpaceTransparentUserInterface: "\u900F\u904E\u7684\u306A\u30E6\u30FC\u30B6\u30FC\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30A4\u30B9",
827
+ toolbarDrawerSpaceShowTransformOrigin: "\u5909\u63DB\u306E\u8D77\u70B9\u3092\u8868\u793A",
828
+ toolbarDrawerSpaceTransformOriginSize: "\u5909\u63DB\u5143\u30B5\u30A4\u30BA",
829
+ toolbarDrawerSpacePlaneOpacity: "\u5E73\u9762\u306E\u4E0D\u900F\u660E\u5EA6",
830
+ toolbarDrawerSpaceLayoutType: "\u30EC\u30A4\u30A2\u30A6\u30C8\u30BF\u30A4\u30D7",
831
+ toolbarDrawerToolbarTitle: "\u30C4\u30FC\u30EB\u30D0\u30FC",
832
+ toolbarDrawerToolbarAlwaysOpaque: "\u5E38\u306B\u4E0D\u900F\u660E",
833
+ toolbarDrawerToolbarShowTransformIcons: "\u5909\u63DB\u30A2\u30A4\u30B3\u30F3\u3092\u8868\u793A",
834
+ toolbarDrawerToolbarShowTransformArrows: "\u5909\u63DB\u77E2\u5370\u3092\u8868\u793A",
835
+ toolbarDrawerToolbarConcealToolbar: "\u30C4\u30FC\u30EB\u30D0\u30FC\u3092\u96A0\u3059",
836
+ toolbarDrawerViewcubeTitle: "\u30D3\u30E5\u30FC\u30AD\u30E5\u30FC\u30D6",
837
+ toolbarDrawerViewcubeShowViewcube: "\u30D3\u30E5\u30FC\u30AD\u30E5\u30FC\u30D6\u3092\u8868\u793A",
838
+ toolbarDrawerViewcubeShowTransformButtons: "\u5909\u63DB\u30DC\u30BF\u30F3\u3092\u8868\u793A\u3059\u308B",
839
+ toolbarDrawerViewcubeAlwaysOpaque: "\u5E38\u306B\u4E0D\u900F\u660E",
840
+ toolbarDrawerViewcubeConcealViewcube: "\u30D3\u30E5\u30FC\u30AD\u30E5\u30FC\u30D6\u3092\u96A0\u3059",
841
+ toolbarDrawerTechnicalTitle: "\u30C6\u30AF\u30CB\u30AB\u30EB",
842
+ toolbarDrawerTechnicalCullingDistance: "\u30AB\u30EA\u30F3\u30B0\u8DDD\u96E2",
843
+ toolbarDrawerShortcutsTitle: "\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8",
844
+ toolbarDrawerShortcutsToggleFirstPerson: "\u4E00\u4EBA\u79F0\u3092\u5207\u308A\u66FF\u3048\u308B",
845
+ toolbarDrawerShortcutsMoveForward: "\u524D\u9032\u3059\u308B",
846
+ toolbarDrawerShortcutsMoveBackward: "\u5F8C\u9000\u3059\u308B",
847
+ toolbarDrawerShortcutsMoveLeft: "\u5DE6\u306B\u79FB\u52D5",
848
+ toolbarDrawerShortcutsMoveRight: "\u53F3\u306B\u52D5\u304F",
849
+ toolbarDrawerShortcutsMoveUp: "\u4E0A\u306B\u79FB\u52D5\u3059\u308B",
850
+ toolbarDrawerShortcutsMoveDown: "\u4E0B\u306B\u79FB\u52D5",
851
+ toolbarDrawerShortcutsTurnLeft: "\u5DE6\u6298\u3057\u3066\u304F\u3060\u3055\u3044",
852
+ toolbarDrawerShortcutsTurnRight: "\u53F3\u306B\u66F2\u304C\u308B",
853
+ toolbarDrawerShortcutsTurnUp: "\u73FE\u308C\u308B",
854
+ toolbarDrawerShortcutsTurnDown: "\u65AD\u308B",
855
+ toolbarDrawerShortcutsRotateUp: "\u4E0A\u306B\u56DE\u8EE2\u3059\u308B",
856
+ toolbarDrawerShortcutsRotateDown: "\u4E0B\u306B\u56DE\u8EE2",
857
+ toolbarDrawerShortcutsRotateLeft: "\u5DE6\u306B\u56DE\u8EE2",
858
+ toolbarDrawerShortcutsRotateRight: "\u53F3\u306B\u56DE\u308B",
859
+ toolbarDrawerShortcutsToggleRotate: "\u30C8\u30B0\u30EB\u56DE\u8EE2",
860
+ toolbarDrawerShortcutsTranslateUp: "\u7FFB\u8A33\u3059\u308B",
861
+ toolbarDrawerShortcutsTranslateDown: "\u7FFB\u8A33\u3059\u308B",
862
+ toolbarDrawerShortcutsTranslateLeft: "\u5DE6\u306B\u7FFB\u8A33",
863
+ toolbarDrawerShortcutsTranslateRight: "\u6B63\u3057\u304F\u7FFB\u8A33\u3059\u308B",
864
+ toolbarDrawerShortcutsTranslateIn: "\u7FFB\u8A33\u3059\u308B",
865
+ toolbarDrawerShortcutsTranslateOut: "\u7FFB\u8A33\u3059\u308B",
866
+ toolbarDrawerShortcutsToggleTranslate: "\u30C8\u30B0\u30EB\u7FFB\u8A33",
867
+ toolbarDrawerShortcutsScaleUp: "\u62E1\u5927\u3059\u308B",
868
+ toolbarDrawerShortcutsScaleDown: "\u7E2E\u5C0F\u3059\u308B",
869
+ toolbarDrawerShortcutsToggleScale: "\u30C8\u30B0\u30EB\u30B9\u30B1\u30FC\u30EB",
870
+ toolbarDrawerShortcutsFocusPlane: "\u30D5\u30A9\u30FC\u30AB\u30B9 \u30D7\u30EC\u30FC\u30F3",
871
+ toolbarDrawerShortcutsFocusParent: "\u30D5\u30A9\u30FC\u30AB\u30B9\u306E\u89AA",
872
+ toolbarDrawerShortcutsRefreshPlane: "\u98DB\u884C\u6A5F\u3092\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5",
873
+ toolbarDrawerShortcutsIsolatePlane: "\u5206\u96E2\u5E73\u9762",
874
+ toolbarDrawerShortcutsOpenClosedPlane: "\u9589\u3058\u305F\u5E73\u9762\u3092\u958B\u304F",
875
+ toolbarDrawerShortcutsClosePlane: "\u5E73\u9762\u3092\u9589\u3058\u308B",
876
+ toolbarDrawerShortcutsPreviousRoot: "\u524D\u306E\u30EB\u30FC\u30C8",
877
+ toolbarDrawerShortcutsNextRoot: "\u6B21\u306E\u30EB\u30FC\u30C8",
878
+ toolbarDrawerShortcutsFocusRoot: "\u30D5\u30A9\u30FC\u30AB\u30B9 \u30EB\u30FC\u30C8",
879
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 \u307E\u305F\u306F\u4E0A\u306B\u30B9\u30AF\u30ED\u30FC\u30EB\u3057\u307E\u3059",
880
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 \u307E\u305F\u306F\u4E0B\u306B\u30B9\u30AF\u30ED\u30FC\u30EB\u3057\u307E\u3059",
881
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 \u307E\u305F\u306F\u5DE6\u306B\u30B9\u30AF\u30ED\u30FC\u30EB",
882
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 \u307E\u305F\u306F\u53F3\u306B\u30B9\u30AF\u30ED\u30FC\u30EB"
877
883
  };
878
-
879
- const russian = {
880
- viewcubeFront: "лицо",
881
- viewcubeBack: "назад",
882
- viewcubeLeft: "осталось",
883
- viewcubeRight: "право",
884
- viewcubeTop: "верх",
885
- viewcubeBase: "база",
886
- toolbarTransformRotate: "поворот",
887
- toolbarTransformScale: "масштаб",
888
- toolbarTransformTranslate: "перевести",
889
- toolbarDrawerGlobalTitle: "Глобальный",
890
- toolbarDrawerGlobalGeneralTheme: "общая тема",
891
- toolbarDrawerGlobalInteractionTheme: "тема взаимодействия",
892
- toolbarDrawerGlobalLanguage: "язык",
893
- toolbarDrawerTransformTitle: "преобразование",
894
- toolbarDrawerTransformMultiModeTransform: "многорежимное преобразование",
895
- toolbarDrawerTransformAllowRotationX: "разрешить вращение х",
896
- toolbarDrawerTransformAllowRotationY: "разрешить вращение у",
897
- toolbarDrawerTransformAllowTranslationX: "разрешить перевод х",
898
- toolbarDrawerTransformAllowTranslationY: "разрешить перевод y",
899
- toolbarDrawerTransformAllowTranslationZ: "разрешить перевод z",
900
- toolbarDrawerTransformAllowScale: "разрешить масштаб",
901
- toolbarDrawerTransformTouchTransform: "сенсорное преобразование",
902
- toolbarDrawerSpaceTitle: "kосмос",
903
- toolbarDrawerSpaceTransparentUserInterface: "прозрачный пользовательский интерфейс",
904
- toolbarDrawerSpaceShowTransformOrigin: "показать источник преобразования",
905
- toolbarDrawerSpaceTransformOriginSize: "преобразовать размер источника",
906
- toolbarDrawerSpacePlaneOpacity: "непрозрачность плоскости",
907
- toolbarDrawerSpaceLayoutType: "тип макета",
908
- toolbarDrawerToolbarTitle: "панель инструментов",
909
- toolbarDrawerToolbarAlwaysOpaque: "всегда непрозрачный",
910
- toolbarDrawerToolbarShowTransformIcons: "показать значки трансформации",
911
- toolbarDrawerToolbarShowTransformArrows: "показать стрелки трансформации",
912
- toolbarDrawerToolbarConcealToolbar: "скрыть панель инструментов",
913
- toolbarDrawerViewcubeTitle: "куб",
914
- toolbarDrawerViewcubeShowViewcube: "показать куб",
915
- toolbarDrawerViewcubeShowTransformButtons: "показать кнопки преобразования",
916
- toolbarDrawerViewcubeAlwaysOpaque: "всегда непрозрачный",
917
- toolbarDrawerViewcubeConcealViewcube: "скрыть куб",
918
- toolbarDrawerTechnicalTitle: "технический",
919
- toolbarDrawerTechnicalCullingDistance: "расстояние выбраковки",
920
- toolbarDrawerShortcutsTitle: "сочетания",
921
- toolbarDrawerShortcutsToggleFirstPerson: "переключить от первого лица",
922
- toolbarDrawerShortcutsMoveForward: "двигаться вперед",
923
- toolbarDrawerShortcutsMoveBackward: "двигаться назад",
924
- toolbarDrawerShortcutsMoveLeft: "двигай влево",
925
- toolbarDrawerShortcutsMoveRight: "переместить вправо",
926
- toolbarDrawerShortcutsMoveUp: "двигаться вверх",
927
- toolbarDrawerShortcutsMoveDown: "двигаться вниз",
928
- toolbarDrawerShortcutsTurnLeft: "повернуть налево",
929
- toolbarDrawerShortcutsTurnRight: "поверни направо",
930
- toolbarDrawerShortcutsTurnUp: "включи",
931
- toolbarDrawerShortcutsTurnDown: "выключить",
932
- toolbarDrawerShortcutsRotateUp: "повернуть вверх",
933
- toolbarDrawerShortcutsRotateDown: "повернуть вниз",
934
- toolbarDrawerShortcutsRotateLeft: "поверните влево",
935
- toolbarDrawerShortcutsRotateRight: "повернуть вправо",
936
- toolbarDrawerShortcutsToggleRotate: "тумблер вращать",
937
- toolbarDrawerShortcutsTranslateUp: "перевести вверх",
938
- toolbarDrawerShortcutsTranslateDown: "перевести вниз",
939
- toolbarDrawerShortcutsTranslateLeft: "перевести влево",
940
- toolbarDrawerShortcutsTranslateRight: "перевести право",
941
- toolbarDrawerShortcutsTranslateIn: "перевести на",
942
- toolbarDrawerShortcutsTranslateOut: "перевести",
943
- toolbarDrawerShortcutsToggleTranslate: "переключить перевод",
944
- toolbarDrawerShortcutsScaleUp: "увеличить масштаб",
945
- toolbarDrawerShortcutsScaleDown: "уменьшать",
946
- toolbarDrawerShortcutsToggleScale: "шкала переключения",
947
- toolbarDrawerShortcutsArrowOrScrollUp: " или прокрутите вверх",
948
- toolbarDrawerShortcutsArrowOrScrollDown: " или прокрутите вниз",
949
- toolbarDrawerShortcutsArrowOrScrollLeft: " или прокрутите влево",
950
- toolbarDrawerShortcutsArrowOrScrollRight: " или прокрутите вправо"
884
+ var japanese_default = japanese;
885
+
886
+ // source/constants/internationalization/romanian/index.ts
887
+ var romanian = {
888
+ viewcubeFront: "fa\u021B\u0103",
889
+ viewcubeBack: "spate",
890
+ viewcubeLeft: "st\xE2nga",
891
+ viewcubeRight: "dreapta",
892
+ viewcubeTop: "sus",
893
+ viewcubeBase: "jos",
894
+ toolbarTransformRotate: "rotire",
895
+ toolbarTransformScale: "scalare",
896
+ toolbarTransformTranslate: "transla\u021Bie",
897
+ toolbarDrawerGlobalTitle: "global",
898
+ toolbarDrawerGlobalGeneralTheme: "tem\u0103 general\u0103",
899
+ toolbarDrawerGlobalInteractionTheme: "tem\u0103 interac\u021Biune",
900
+ toolbarDrawerGlobalLanguage: "limb\u0103",
901
+ toolbarDrawerTransformTitle: "transformare",
902
+ toolbarDrawerTransformMultiModeTransform: "transformare multi-modal\u0103",
903
+ toolbarDrawerTransformAllowRotationX: "permite rota\u021Bie x",
904
+ toolbarDrawerTransformAllowRotationY: "permite rota\u021Bie x",
905
+ toolbarDrawerTransformAllowTranslationX: "permite transla\u021Bie x",
906
+ toolbarDrawerTransformAllowTranslationY: "permite transla\u021Bie y",
907
+ toolbarDrawerTransformAllowTranslationZ: "permite transla\u021Bie z",
908
+ toolbarDrawerTransformAllowScale: "permite scalare",
909
+ toolbarDrawerTransformTouchTransform: "transformare atingere",
910
+ toolbarDrawerSpaceTitle: "spa\u021Biu",
911
+ toolbarDrawerSpaceTransparentUserInterface: "interfa\u021B\u0103 utilizator transparent\u0103",
912
+ toolbarDrawerSpaceShowTransformOrigin: "ar\u0103ta originea transform\u0103rii",
913
+ toolbarDrawerSpaceTransformOriginSize: "m\u0103rimea originii transform\u0103rii",
914
+ toolbarDrawerSpacePlaneOpacity: "opacitate plan",
915
+ toolbarDrawerSpaceLayoutType: "tip amplasare",
916
+ toolbarDrawerToolbarTitle: "bar\u0103 de unelte",
917
+ toolbarDrawerToolbarAlwaysOpaque: "mereu opac",
918
+ toolbarDrawerToolbarShowTransformIcons: "arat\u0103 icoane transformare",
919
+ toolbarDrawerToolbarShowTransformArrows: "arat\u0103 s\u0103ge\u021Bi transformare",
920
+ toolbarDrawerToolbarConcealToolbar: "ascunde bara de unelte",
921
+ toolbarDrawerViewcubeTitle: "cub",
922
+ toolbarDrawerViewcubeShowViewcube: "arat\u0103 cub",
923
+ toolbarDrawerViewcubeShowTransformButtons: "arat\u0103 butoane transformare",
924
+ toolbarDrawerViewcubeAlwaysOpaque: "mereu opac",
925
+ toolbarDrawerViewcubeConcealViewcube: "ascunde cub",
926
+ toolbarDrawerTechnicalTitle: "tehnic",
927
+ toolbarDrawerTechnicalCullingDistance: "distan\u021B\u0103 ascundere",
928
+ toolbarDrawerShortcutsTitle: "scurt\u0103turi",
929
+ toolbarDrawerShortcutsToggleFirstPerson: "comutare persoana \xEEnt\xE2i",
930
+ toolbarDrawerShortcutsMoveForward: "mutare \xEEnainte",
931
+ toolbarDrawerShortcutsMoveBackward: "mutare \xEEnapoi",
932
+ toolbarDrawerShortcutsMoveLeft: "mutare st\xE2nga",
933
+ toolbarDrawerShortcutsMoveRight: "mutare dreapta",
934
+ toolbarDrawerShortcutsMoveUp: "mutare sus",
935
+ toolbarDrawerShortcutsMoveDown: "mutare jos",
936
+ toolbarDrawerShortcutsTurnLeft: "\xEEntoarcere st\xE2nga",
937
+ toolbarDrawerShortcutsTurnRight: "\xEEntoarcere dreapta",
938
+ toolbarDrawerShortcutsTurnUp: "\xEEntoarcere sus",
939
+ toolbarDrawerShortcutsTurnDown: "\xEEntoarcere jos",
940
+ toolbarDrawerShortcutsRotateUp: "rotire sus",
941
+ toolbarDrawerShortcutsRotateDown: "rotire jos",
942
+ toolbarDrawerShortcutsRotateLeft: "rotire st\xE2nga",
943
+ toolbarDrawerShortcutsRotateRight: "rotire dreapta",
944
+ toolbarDrawerShortcutsToggleRotate: "comutare rotire",
945
+ toolbarDrawerShortcutsTranslateUp: "transla\u021Bie sus",
946
+ toolbarDrawerShortcutsTranslateDown: "transla\u021Bie jos",
947
+ toolbarDrawerShortcutsTranslateLeft: "transla\u021Bie st\xE2nga",
948
+ toolbarDrawerShortcutsTranslateRight: "transla\u021Bie dreapta",
949
+ toolbarDrawerShortcutsTranslateIn: "transla\u021Bie \xEEn\u0103untru",
950
+ toolbarDrawerShortcutsTranslateOut: "transla\u021Bie \xEEn afar\u0103",
951
+ toolbarDrawerShortcutsToggleTranslate: "comutare transla\u021Bie",
952
+ toolbarDrawerShortcutsScaleUp: "scalare \xEEn sus",
953
+ toolbarDrawerShortcutsScaleDown: "scalare \xEEn jos",
954
+ toolbarDrawerShortcutsToggleScale: "comutare scalare",
955
+ toolbarDrawerShortcutsFocusPlane: "focus plan",
956
+ toolbarDrawerShortcutsFocusParent: "focus p\u0103rinte",
957
+ toolbarDrawerShortcutsRefreshPlane: "restaurare plan",
958
+ toolbarDrawerShortcutsIsolatePlane: "izolare plane",
959
+ toolbarDrawerShortcutsOpenClosedPlane: "deschidere plan \xEEnchis",
960
+ toolbarDrawerShortcutsClosePlane: "\xEEnchidere plan",
961
+ toolbarDrawerShortcutsPreviousRoot: "r\u0103d\u0103cina anterioar\u0103",
962
+ toolbarDrawerShortcutsNextRoot: "r\u0103d\u0103cina urm\u0103toare",
963
+ toolbarDrawerShortcutsFocusRoot: "focus r\u0103d\u0103cin\u0103",
964
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 sau scroll sus",
965
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 sau scroll jos",
966
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 sau scroll st\xE2nga",
967
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 sau scroll dreapta"
951
968
  };
952
-
953
- const spanish = {
954
- viewcubeFront: "frente",
955
- viewcubeBack: "espalda",
956
- viewcubeLeft: "izquierda",
957
- viewcubeRight: "derecha",
958
- viewcubeTop: "top",
959
- viewcubeBase: "base",
960
- toolbarTransformRotate: "rotar",
961
- toolbarTransformScale: "escala",
962
- toolbarTransformTranslate: "trasladar",
963
- toolbarDrawerGlobalTitle: "global",
964
- toolbarDrawerGlobalGeneralTheme: "tema general",
965
- toolbarDrawerGlobalInteractionTheme: "tema de interacción",
966
- toolbarDrawerGlobalLanguage: "lengua",
967
- toolbarDrawerTransformTitle: "transformar",
968
- toolbarDrawerTransformMultiModeTransform: "transformación multimodo",
969
- toolbarDrawerTransformAllowRotationX: "permitir rotación x",
970
- toolbarDrawerTransformAllowRotationY: "permitir rotación y",
971
- toolbarDrawerTransformAllowTranslationX: "permitir trasladar x",
972
- toolbarDrawerTransformAllowTranslationY: "permitir trasladar y",
973
- toolbarDrawerTransformAllowTranslationZ: "permitir trasladar z",
974
- toolbarDrawerTransformAllowScale: "permitir escala",
975
- toolbarDrawerTransformTouchTransform: "toque transformar",
976
- toolbarDrawerSpaceTitle: "espacio",
977
- toolbarDrawerSpaceTransparentUserInterface: "interfaz de usuario transparente",
978
- toolbarDrawerSpaceShowTransformOrigin: "mostrar origen de transformación",
979
- toolbarDrawerSpaceTransformOriginSize: "transformar el tamaño del origen",
980
- toolbarDrawerSpacePlaneOpacity: "opacidad plana",
981
- toolbarDrawerSpaceLayoutType: "tipo de diseño",
982
- toolbarDrawerToolbarTitle: "barra de herramientas",
983
- toolbarDrawerToolbarAlwaysOpaque: "siempre opaca",
984
- toolbarDrawerToolbarShowTransformIcons: "mostrar iconos de transformación",
985
- toolbarDrawerToolbarShowTransformArrows: "mostrar flechas de transformación",
986
- toolbarDrawerToolbarConcealToolbar: "ocultar barra de herramientas",
987
- toolbarDrawerViewcubeTitle: "cubo",
988
- toolbarDrawerViewcubeShowViewcube: "mostrar cubo",
989
- toolbarDrawerViewcubeShowTransformButtons: "mostrar botones de transformación",
990
- toolbarDrawerViewcubeAlwaysOpaque: "siempre opaca",
991
- toolbarDrawerViewcubeConcealViewcube: "ocultar el cubo",
992
- toolbarDrawerTechnicalTitle: "técnico",
993
- toolbarDrawerTechnicalCullingDistance: "distancia de sacrificio",
994
- toolbarDrawerShortcutsTitle: "atajos",
995
- toolbarDrawerShortcutsToggleFirstPerson: "alternar en primera persona",
996
- toolbarDrawerShortcutsMoveForward: "avanzar",
997
- toolbarDrawerShortcutsMoveBackward: "mover hacia atrás",
998
- toolbarDrawerShortcutsMoveLeft: "mover hacia la izquierda",
999
- toolbarDrawerShortcutsMoveRight: "mover a la derecha",
1000
- toolbarDrawerShortcutsMoveUp: "ascender",
1001
- toolbarDrawerShortcutsMoveDown: "mover hacia abajo",
1002
- toolbarDrawerShortcutsTurnLeft: "girar a la izquierda",
1003
- toolbarDrawerShortcutsTurnRight: "girar a la derecha",
1004
- toolbarDrawerShortcutsTurnUp: "aparecer",
1005
- toolbarDrawerShortcutsTurnDown: "rechazar",
1006
- toolbarDrawerShortcutsRotateUp: "girar hacia arriba",
1007
- toolbarDrawerShortcutsRotateDown: "girar hacia abajo",
1008
- toolbarDrawerShortcutsRotateLeft: "girar a la izquierda",
1009
- toolbarDrawerShortcutsRotateRight: "girar a la derecha",
1010
- toolbarDrawerShortcutsToggleRotate: "alternar rotar",
1011
- toolbarDrawerShortcutsTranslateUp: "trasladar hacia arriba",
1012
- toolbarDrawerShortcutsTranslateDown: "trasladar hacia abajo",
1013
- toolbarDrawerShortcutsTranslateLeft: "trasladar a la izquierda",
1014
- toolbarDrawerShortcutsTranslateRight: "trasladar a la derecha",
1015
- toolbarDrawerShortcutsTranslateIn: "trasladar en",
1016
- toolbarDrawerShortcutsTranslateOut: "trasladar fuera",
1017
- toolbarDrawerShortcutsToggleTranslate: "alternar trasladar",
1018
- toolbarDrawerShortcutsScaleUp: "aumentar proporcionalmente",
1019
- toolbarDrawerShortcutsScaleDown: "reducir proporcionalmente",
1020
- toolbarDrawerShortcutsToggleScale: "alternar escala",
1021
- toolbarDrawerShortcutsArrowOrScrollUp: "↑ o desplazarse hacia arriba",
1022
- toolbarDrawerShortcutsArrowOrScrollDown: " o desplazarse hacia abajo",
1023
- toolbarDrawerShortcutsArrowOrScrollLeft: " o desplazarse hacia la izquierda",
1024
- toolbarDrawerShortcutsArrowOrScrollRight: " o desplazarse hacia la derecha"
969
+ var romanian_default = romanian;
970
+
971
+ // source/constants/internationalization/russian/index.ts
972
+ var russian = {
973
+ viewcubeFront: "\u043B\u0438\u0446\u043E",
974
+ viewcubeBack: "\u043D\u0430\u0437\u0430\u0434",
975
+ viewcubeLeft: "\u043E\u0441\u0442\u0430\u043B\u043E\u0441\u044C",
976
+ viewcubeRight: "\u043F\u0440\u0430\u0432\u043E",
977
+ viewcubeTop: "\u0432\u0435\u0440\u0445",
978
+ viewcubeBase: "\u0431\u0430\u0437\u0430",
979
+ toolbarTransformRotate: "\u043F\u043E\u0432\u043E\u0440\u043E\u0442",
980
+ toolbarTransformScale: "\u043C\u0430\u0441\u0448\u0442\u0430\u0431",
981
+ toolbarTransformTranslate: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438",
982
+ toolbarDrawerGlobalTitle: "\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0439",
983
+ toolbarDrawerGlobalGeneralTheme: "\u043E\u0431\u0449\u0430\u044F \u0442\u0435\u043C\u0430",
984
+ toolbarDrawerGlobalInteractionTheme: "\u0442\u0435\u043C\u0430 \u0432\u0437\u0430\u0438\u043C\u043E\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F",
985
+ toolbarDrawerGlobalLanguage: "\u044F\u0437\u044B\u043A",
986
+ toolbarDrawerTransformTitle: "\u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u0435",
987
+ toolbarDrawerTransformMultiModeTransform: "\u043C\u043D\u043E\u0433\u043E\u0440\u0435\u0436\u0438\u043C\u043D\u043E\u0435 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u0435",
988
+ toolbarDrawerTransformAllowRotationX: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u0432\u0440\u0430\u0449\u0435\u043D\u0438\u0435 \u0445",
989
+ toolbarDrawerTransformAllowRotationY: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u0432\u0440\u0430\u0449\u0435\u043D\u0438\u0435 \u0443",
990
+ toolbarDrawerTransformAllowTranslationX: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434 \u0445",
991
+ toolbarDrawerTransformAllowTranslationY: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434 y",
992
+ toolbarDrawerTransformAllowTranslationZ: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434 z",
993
+ toolbarDrawerTransformAllowScale: "\u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u043C\u0430\u0441\u0448\u0442\u0430\u0431",
994
+ toolbarDrawerTransformTouchTransform: "\u0441\u0435\u043D\u0441\u043E\u0440\u043D\u043E\u0435 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u0435",
995
+ toolbarDrawerSpaceTitle: "k\u043E\u0441\u043C\u043E\u0441",
996
+ toolbarDrawerSpaceTransparentUserInterface: "\u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u044B\u0439 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441",
997
+ toolbarDrawerSpaceShowTransformOrigin: "\u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0438\u0441\u0442\u043E\u0447\u043D\u0438\u043A \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F",
998
+ toolbarDrawerSpaceTransformOriginSize: "\u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0440\u0430\u0437\u043C\u0435\u0440 \u0438\u0441\u0442\u043E\u0447\u043D\u0438\u043A\u0430",
999
+ toolbarDrawerSpacePlaneOpacity: "\u043D\u0435\u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u043E\u0441\u0442\u044C \u043F\u043B\u043E\u0441\u043A\u043E\u0441\u0442\u0438",
1000
+ toolbarDrawerSpaceLayoutType: "\u0442\u0438\u043F \u043C\u0430\u043A\u0435\u0442\u0430",
1001
+ toolbarDrawerToolbarTitle: "\u043F\u0430\u043D\u0435\u043B\u044C \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432",
1002
+ toolbarDrawerToolbarAlwaysOpaque: "\u0432\u0441\u0435\u0433\u0434\u0430 \u043D\u0435\u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u044B\u0439",
1003
+ toolbarDrawerToolbarShowTransformIcons: "\u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0437\u043D\u0430\u0447\u043A\u0438 \u0442\u0440\u0430\u043D\u0441\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438",
1004
+ toolbarDrawerToolbarShowTransformArrows: "\u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u0435\u043B\u043A\u0438 \u0442\u0440\u0430\u043D\u0441\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438",
1005
+ toolbarDrawerToolbarConcealToolbar: "\u0441\u043A\u0440\u044B\u0442\u044C \u043F\u0430\u043D\u0435\u043B\u044C \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432",
1006
+ toolbarDrawerViewcubeTitle: "\u043A\u0443\u0431",
1007
+ toolbarDrawerViewcubeShowViewcube: "\u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043A\u0443\u0431",
1008
+ toolbarDrawerViewcubeShowTransformButtons: "\u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043A\u043D\u043E\u043F\u043A\u0438 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F",
1009
+ toolbarDrawerViewcubeAlwaysOpaque: "\u0432\u0441\u0435\u0433\u0434\u0430 \u043D\u0435\u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u044B\u0439",
1010
+ toolbarDrawerViewcubeConcealViewcube: "\u0441\u043A\u0440\u044B\u0442\u044C \u043A\u0443\u0431",
1011
+ toolbarDrawerTechnicalTitle: "\u0442\u0435\u0445\u043D\u0438\u0447\u0435\u0441\u043A\u0438\u0439",
1012
+ toolbarDrawerTechnicalCullingDistance: "\u0440\u0430\u0441\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u0432\u044B\u0431\u0440\u0430\u043A\u043E\u0432\u043A\u0438",
1013
+ toolbarDrawerShortcutsTitle: "\u0441\u043E\u0447\u0435\u0442\u0430\u043D\u0438\u044F",
1014
+ toolbarDrawerShortcutsToggleFirstPerson: "\u043F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043E\u0442 \u043F\u0435\u0440\u0432\u043E\u0433\u043E \u043B\u0438\u0446\u0430",
1015
+ toolbarDrawerShortcutsMoveForward: "\u0434\u0432\u0438\u0433\u0430\u0442\u044C\u0441\u044F \u0432\u043F\u0435\u0440\u0435\u0434",
1016
+ toolbarDrawerShortcutsMoveBackward: "\u0434\u0432\u0438\u0433\u0430\u0442\u044C\u0441\u044F \u043D\u0430\u0437\u0430\u0434",
1017
+ toolbarDrawerShortcutsMoveLeft: "\u0434\u0432\u0438\u0433\u0430\u0439 \u0432\u043B\u0435\u0432\u043E",
1018
+ toolbarDrawerShortcutsMoveRight: "\u043F\u0435\u0440\u0435\u043C\u0435\u0441\u0442\u0438\u0442\u044C \u0432\u043F\u0440\u0430\u0432\u043E",
1019
+ toolbarDrawerShortcutsMoveUp: "\u0434\u0432\u0438\u0433\u0430\u0442\u044C\u0441\u044F \u0432\u0432\u0435\u0440\u0445",
1020
+ toolbarDrawerShortcutsMoveDown: "\u0434\u0432\u0438\u0433\u0430\u0442\u044C\u0441\u044F \u0432\u043D\u0438\u0437",
1021
+ toolbarDrawerShortcutsTurnLeft: "\u043F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u044C \u043D\u0430\u043B\u0435\u0432\u043E",
1022
+ toolbarDrawerShortcutsTurnRight: "\u043F\u043E\u0432\u0435\u0440\u043D\u0438 \u043D\u0430\u043F\u0440\u0430\u0432\u043E",
1023
+ toolbarDrawerShortcutsTurnUp: "\u0432\u043A\u043B\u044E\u0447\u0438",
1024
+ toolbarDrawerShortcutsTurnDown: "\u0432\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C",
1025
+ toolbarDrawerShortcutsRotateUp: "\u043F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u044C \u0432\u0432\u0435\u0440\u0445",
1026
+ toolbarDrawerShortcutsRotateDown: "\u043F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u044C \u0432\u043D\u0438\u0437",
1027
+ toolbarDrawerShortcutsRotateLeft: "\u043F\u043E\u0432\u0435\u0440\u043D\u0438\u0442\u0435 \u0432\u043B\u0435\u0432\u043E",
1028
+ toolbarDrawerShortcutsRotateRight: "\u043F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u044C \u0432\u043F\u0440\u0430\u0432\u043E",
1029
+ toolbarDrawerShortcutsToggleRotate: "\u0442\u0443\u043C\u0431\u043B\u0435\u0440 \u0432\u0440\u0430\u0449\u0430\u0442\u044C",
1030
+ toolbarDrawerShortcutsTranslateUp: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0432\u0432\u0435\u0440\u0445",
1031
+ toolbarDrawerShortcutsTranslateDown: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0432\u043D\u0438\u0437",
1032
+ toolbarDrawerShortcutsTranslateLeft: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0432\u043B\u0435\u0432\u043E",
1033
+ toolbarDrawerShortcutsTranslateRight: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u043F\u0440\u0430\u0432\u043E",
1034
+ toolbarDrawerShortcutsTranslateIn: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u043D\u0430",
1035
+ toolbarDrawerShortcutsTranslateOut: "\u043F\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438",
1036
+ toolbarDrawerShortcutsToggleTranslate: "\u043F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434",
1037
+ toolbarDrawerShortcutsScaleUp: "\u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u044C \u043C\u0430\u0441\u0448\u0442\u0430\u0431",
1038
+ toolbarDrawerShortcutsScaleDown: "\u0443\u043C\u0435\u043D\u044C\u0448\u0430\u0442\u044C",
1039
+ toolbarDrawerShortcutsToggleScale: "\u0448\u043A\u0430\u043B\u0430 \u043F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F",
1040
+ toolbarDrawerShortcutsFocusPlane: "\u043F\u043B\u043E\u0441\u043A\u043E\u0441\u0442\u044C \u0444\u043E\u043A\u0443\u0441\u0438\u0440\u043E\u0432\u043A\u0438",
1041
+ toolbarDrawerShortcutsFocusParent: "\u0444\u043E\u043A\u0443\u0441 \u0440\u043E\u0434\u0438\u0442\u0435\u043B\u044C",
1042
+ toolbarDrawerShortcutsRefreshPlane: "\u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0441\u0430\u043C\u043E\u043B\u0435\u0442",
1043
+ toolbarDrawerShortcutsIsolatePlane: "\u0438\u0437\u043E\u043B\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0430\u043C\u043E\u043B\u0435\u0442",
1044
+ toolbarDrawerShortcutsOpenClosedPlane: "\u043E\u0442\u043A\u0440\u044B\u0442\u0430\u044F \u0437\u0430\u043A\u0440\u044B\u0442\u0430\u044F \u043F\u043B\u043E\u0441\u043A\u043E\u0441\u0442\u044C",
1045
+ toolbarDrawerShortcutsClosePlane: "\u0431\u043B\u0438\u0437\u043A\u0438\u0439 \u0441\u0430\u043C\u043E\u043B\u0435\u0442",
1046
+ toolbarDrawerShortcutsPreviousRoot: "\u043F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0438\u0439 \u043A\u043E\u0440\u0435\u043D\u044C",
1047
+ toolbarDrawerShortcutsNextRoot: "\u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043A\u043E\u0440\u0435\u043D\u044C",
1048
+ toolbarDrawerShortcutsFocusRoot: "\u043A\u043E\u0440\u0435\u043D\u044C \u0444\u043E\u043A\u0443\u0441\u0430",
1049
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 \u0438\u043B\u0438 \u043F\u0440\u043E\u043A\u0440\u0443\u0442\u0438\u0442\u0435 \u0432\u0432\u0435\u0440\u0445",
1050
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 \u0438\u043B\u0438 \u043F\u0440\u043E\u043A\u0440\u0443\u0442\u0438\u0442\u0435 \u0432\u043D\u0438\u0437",
1051
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 \u0438\u043B\u0438 \u043F\u0440\u043E\u043A\u0440\u0443\u0442\u0438\u0442\u0435 \u0432\u043B\u0435\u0432\u043E",
1052
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 \u0438\u043B\u0438 \u043F\u0440\u043E\u043A\u0440\u0443\u0442\u0438\u0442\u0435 \u0432\u043F\u0440\u0430\u0432\u043E"
1025
1053
  };
1026
-
1027
- const internationalizationFields$1 = {
1028
- viewcubeFront: "viewcubeFront",
1029
- viewcubeBack: "viewcubeBack",
1030
- viewcubeLeft: "viewcubeLeft",
1031
- viewcubeRight: "viewcubeRight",
1032
- viewcubeTop: "viewcubeTop",
1033
- viewcubeBase: "viewcubeBase",
1034
- toolbarTransformRotate: "toolbarTransformRotate",
1035
- toolbarTransformScale: "toolbarTransformScale",
1036
- toolbarTransformTranslate: "toolbarTransformTranslate",
1037
- toolbarDrawerGlobalTitle: "toolbarDrawerGlobalTitle",
1038
- toolbarDrawerGlobalGeneralTheme: "toolbarDrawerGlobalGeneralTheme",
1039
- toolbarDrawerGlobalInteractionTheme: "toolbarDrawerGlobalInteractionTheme",
1040
- toolbarDrawerGlobalLanguage: "toolbarDrawerGlobalLanguage",
1041
- toolbarDrawerTransformTitle: "toolbarDrawerTransformTitle",
1042
- toolbarDrawerTransformMultiModeTransform: "toolbarDrawerTransformMultiModeTransform",
1043
- toolbarDrawerTransformAllowRotationX: "toolbarDrawerTransformAllowRotationX",
1044
- toolbarDrawerTransformAllowRotationY: "toolbarDrawerTransformAllowRotationY",
1045
- toolbarDrawerTransformAllowTranslationX: "toolbarDrawerTransformAllowTranslationX",
1046
- toolbarDrawerTransformAllowTranslationY: "toolbarDrawerTransformAllowTranslationY",
1047
- toolbarDrawerTransformAllowTranslationZ: "toolbarDrawerTransformAllowTranslationZ",
1048
- toolbarDrawerTransformAllowScale: "toolbarDrawerTransformAllowScale",
1049
- toolbarDrawerTransformTouchTransform: "toolbarDrawerTransformTouchTransform",
1050
- toolbarDrawerSpaceTitle: "toolbarDrawerSpaceTitle",
1051
- toolbarDrawerSpaceTransparentUserInterface: "toolbarDrawerSpaceTransparentUserInterface",
1052
- toolbarDrawerSpaceShowTransformOrigin: "toolbarDrawerSpaceShowTransformOrigin",
1053
- toolbarDrawerSpaceTransformOriginSize: "toolbarDrawerSpaceTransformOriginSize",
1054
- toolbarDrawerSpacePlaneOpacity: "toolbarDrawerSpacePlaneOpacity",
1055
- toolbarDrawerSpaceLayoutType: "toolbarDrawerSpaceLayoutType",
1056
- toolbarDrawerToolbarTitle: "toolbarDrawerToolbarTitle",
1057
- toolbarDrawerToolbarAlwaysOpaque: "toolbarDrawerToolbarAlwaysOpaque",
1058
- toolbarDrawerToolbarShowTransformIcons: "toolbarDrawerToolbarShowTransformIcons",
1059
- toolbarDrawerToolbarShowTransformArrows: "toolbarDrawerToolbarShowTransformArrows",
1060
- toolbarDrawerToolbarConcealToolbar: "toolbarDrawerToolbarConcealToolbar",
1061
- toolbarDrawerViewcubeTitle: "toolbarDrawerViewcubeTitle",
1062
- toolbarDrawerViewcubeShowViewcube: "toolbarDrawerViewcubeShowViewcube",
1063
- toolbarDrawerViewcubeShowTransformButtons: "toolbarDrawerViewcubeShowTransformButtons",
1064
- toolbarDrawerViewcubeAlwaysOpaque: "toolbarDrawerViewcubeAlwaysOpaque",
1065
- toolbarDrawerViewcubeConcealViewcube: "toolbarDrawerViewcubeConcealViewcube",
1066
- toolbarDrawerTechnicalTitle: "toolbarDrawerTechnicalTitle",
1067
- toolbarDrawerTechnicalCullingDistance: "toolbarDrawerTechnicalCullingDistance",
1068
- toolbarDrawerShortcutsTitle: "toolbarDrawerShortcutsTitle",
1069
- toolbarDrawerShortcutsToggleFirstPerson: "toolbarDrawerShortcutsToggleFirstPerson",
1070
- toolbarDrawerShortcutsMoveForward: "toolbarDrawerShortcutsMoveForward",
1071
- toolbarDrawerShortcutsMoveBackward: "toolbarDrawerShortcutsMoveBackward",
1072
- toolbarDrawerShortcutsMoveLeft: "toolbarDrawerShortcutsMoveLeft",
1073
- toolbarDrawerShortcutsMoveRight: "toolbarDrawerShortcutsMoveRight",
1074
- toolbarDrawerShortcutsMoveUp: "toolbarDrawerShortcutsMoveUp",
1075
- toolbarDrawerShortcutsMoveDown: "toolbarDrawerShortcutsMoveDown",
1076
- toolbarDrawerShortcutsTurnLeft: "toolbarDrawerShortcutsTurnLeft",
1077
- toolbarDrawerShortcutsTurnRight: "toolbarDrawerShortcutsTurnRight",
1078
- toolbarDrawerShortcutsTurnUp: "toolbarDrawerShortcutsTurnUp",
1079
- toolbarDrawerShortcutsTurnDown: "toolbarDrawerShortcutsTurnDown",
1080
- toolbarDrawerShortcutsRotateUp: "toolbarDrawerShortcutsRotateUp",
1081
- toolbarDrawerShortcutsRotateDown: "toolbarDrawerShortcutsRotateDown",
1082
- toolbarDrawerShortcutsRotateLeft: "toolbarDrawerShortcutsRotateLeft",
1083
- toolbarDrawerShortcutsRotateRight: "toolbarDrawerShortcutsRotateRight",
1084
- toolbarDrawerShortcutsToggleRotate: "toolbarDrawerShortcutsToggleRotate",
1085
- toolbarDrawerShortcutsTranslateUp: "toolbarDrawerShortcutsTranslateUp",
1086
- toolbarDrawerShortcutsTranslateDown: "toolbarDrawerShortcutsTranslateDown",
1087
- toolbarDrawerShortcutsTranslateLeft: "toolbarDrawerShortcutsTranslateLeft",
1088
- toolbarDrawerShortcutsTranslateRight: "toolbarDrawerShortcutsTranslateRight",
1089
- toolbarDrawerShortcutsTranslateIn: "toolbarDrawerShortcutsTranslateIn",
1090
- toolbarDrawerShortcutsTranslateOut: "toolbarDrawerShortcutsTranslateOut",
1091
- toolbarDrawerShortcutsToggleTranslate: "toolbarDrawerShortcutsToggleTranslate",
1092
- toolbarDrawerShortcutsScaleUp: "toolbarDrawerShortcutsScaleUp",
1093
- toolbarDrawerShortcutsScaleDown: "toolbarDrawerShortcutsScaleDown",
1094
- toolbarDrawerShortcutsToggleScale: "toolbarDrawerShortcutsToggleScale",
1095
- toolbarDrawerShortcutsArrowOrScrollUp: "toolbarDrawerShortcutsArrowOrScrollUp",
1096
- toolbarDrawerShortcutsArrowOrScrollDown: "toolbarDrawerShortcutsArrowOrScrollDown",
1097
- toolbarDrawerShortcutsArrowOrScrollLeft: "toolbarDrawerShortcutsArrowOrScrollLeft",
1098
- toolbarDrawerShortcutsArrowOrScrollRight: "toolbarDrawerShortcutsArrowOrScrollRight"
1054
+ var russian_default = russian;
1055
+
1056
+ // source/constants/internationalization/spanish/index.ts
1057
+ var spanish = {
1058
+ viewcubeFront: "frente",
1059
+ viewcubeBack: "espalda",
1060
+ viewcubeLeft: "izquierda",
1061
+ viewcubeRight: "derecha",
1062
+ viewcubeTop: "top",
1063
+ viewcubeBase: "base",
1064
+ toolbarTransformRotate: "rotar",
1065
+ toolbarTransformScale: "escala",
1066
+ toolbarTransformTranslate: "trasladar",
1067
+ toolbarDrawerGlobalTitle: "global",
1068
+ toolbarDrawerGlobalGeneralTheme: "tema general",
1069
+ toolbarDrawerGlobalInteractionTheme: "tema de interacci\xF3n",
1070
+ toolbarDrawerGlobalLanguage: "lengua",
1071
+ toolbarDrawerTransformTitle: "transformar",
1072
+ toolbarDrawerTransformMultiModeTransform: "transformaci\xF3n multimodo",
1073
+ toolbarDrawerTransformAllowRotationX: "permitir rotaci\xF3n x",
1074
+ toolbarDrawerTransformAllowRotationY: "permitir rotaci\xF3n y",
1075
+ toolbarDrawerTransformAllowTranslationX: "permitir trasladar x",
1076
+ toolbarDrawerTransformAllowTranslationY: "permitir trasladar y",
1077
+ toolbarDrawerTransformAllowTranslationZ: "permitir trasladar z",
1078
+ toolbarDrawerTransformAllowScale: "permitir escala",
1079
+ toolbarDrawerTransformTouchTransform: "toque transformar",
1080
+ toolbarDrawerSpaceTitle: "espacio",
1081
+ toolbarDrawerSpaceTransparentUserInterface: "interfaz de usuario transparente",
1082
+ toolbarDrawerSpaceShowTransformOrigin: "mostrar origen de transformaci\xF3n",
1083
+ toolbarDrawerSpaceTransformOriginSize: "transformar el tama\xF1o del origen",
1084
+ toolbarDrawerSpacePlaneOpacity: "opacidad plana",
1085
+ toolbarDrawerSpaceLayoutType: "tipo de dise\xF1o",
1086
+ toolbarDrawerToolbarTitle: "barra de herramientas",
1087
+ toolbarDrawerToolbarAlwaysOpaque: "siempre opaca",
1088
+ toolbarDrawerToolbarShowTransformIcons: "mostrar iconos de transformaci\xF3n",
1089
+ toolbarDrawerToolbarShowTransformArrows: "mostrar flechas de transformaci\xF3n",
1090
+ toolbarDrawerToolbarConcealToolbar: "ocultar barra de herramientas",
1091
+ toolbarDrawerViewcubeTitle: "cubo",
1092
+ toolbarDrawerViewcubeShowViewcube: "mostrar cubo",
1093
+ toolbarDrawerViewcubeShowTransformButtons: "mostrar botones de transformaci\xF3n",
1094
+ toolbarDrawerViewcubeAlwaysOpaque: "siempre opaca",
1095
+ toolbarDrawerViewcubeConcealViewcube: "ocultar el cubo",
1096
+ toolbarDrawerTechnicalTitle: "t\xE9cnico",
1097
+ toolbarDrawerTechnicalCullingDistance: "distancia de sacrificio",
1098
+ toolbarDrawerShortcutsTitle: "atajos",
1099
+ toolbarDrawerShortcutsToggleFirstPerson: "alternar en primera persona",
1100
+ toolbarDrawerShortcutsMoveForward: "avanzar",
1101
+ toolbarDrawerShortcutsMoveBackward: "mover hacia atr\xE1s",
1102
+ toolbarDrawerShortcutsMoveLeft: "mover hacia la izquierda",
1103
+ toolbarDrawerShortcutsMoveRight: "mover a la derecha",
1104
+ toolbarDrawerShortcutsMoveUp: "ascender",
1105
+ toolbarDrawerShortcutsMoveDown: "mover hacia abajo",
1106
+ toolbarDrawerShortcutsTurnLeft: "girar a la izquierda",
1107
+ toolbarDrawerShortcutsTurnRight: "girar a la derecha",
1108
+ toolbarDrawerShortcutsTurnUp: "aparecer",
1109
+ toolbarDrawerShortcutsTurnDown: "rechazar",
1110
+ toolbarDrawerShortcutsRotateUp: "girar hacia arriba",
1111
+ toolbarDrawerShortcutsRotateDown: "girar hacia abajo",
1112
+ toolbarDrawerShortcutsRotateLeft: "girar a la izquierda",
1113
+ toolbarDrawerShortcutsRotateRight: "girar a la derecha",
1114
+ toolbarDrawerShortcutsToggleRotate: "alternar rotar",
1115
+ toolbarDrawerShortcutsTranslateUp: "trasladar hacia arriba",
1116
+ toolbarDrawerShortcutsTranslateDown: "trasladar hacia abajo",
1117
+ toolbarDrawerShortcutsTranslateLeft: "trasladar a la izquierda",
1118
+ toolbarDrawerShortcutsTranslateRight: "trasladar a la derecha",
1119
+ toolbarDrawerShortcutsTranslateIn: "trasladar en",
1120
+ toolbarDrawerShortcutsTranslateOut: "trasladar fuera",
1121
+ toolbarDrawerShortcutsToggleTranslate: "alternar trasladar",
1122
+ toolbarDrawerShortcutsScaleUp: "aumentar proporcionalmente",
1123
+ toolbarDrawerShortcutsScaleDown: "reducir proporcionalmente",
1124
+ toolbarDrawerShortcutsToggleScale: "alternar escala",
1125
+ toolbarDrawerShortcutsFocusPlane: "plano de enfoque",
1126
+ toolbarDrawerShortcutsFocusParent: "plano parent",
1127
+ toolbarDrawerShortcutsRefreshPlane: "actualizar plano",
1128
+ toolbarDrawerShortcutsIsolatePlane: "aislar plano",
1129
+ toolbarDrawerShortcutsOpenClosedPlane: "plano cerrado abierto",
1130
+ toolbarDrawerShortcutsClosePlane: "plano cercano",
1131
+ toolbarDrawerShortcutsPreviousRoot: "ra\xEDz anterior",
1132
+ toolbarDrawerShortcutsNextRoot: "siguiente ra\xEDz",
1133
+ toolbarDrawerShortcutsFocusRoot: "ra\xEDz de enfoque",
1134
+ toolbarDrawerShortcutsArrowOrScrollUp: "\u2191 o desplazarse hacia arriba",
1135
+ toolbarDrawerShortcutsArrowOrScrollDown: "\u2193 o desplazarse hacia abajo",
1136
+ toolbarDrawerShortcutsArrowOrScrollLeft: "\u2190 o desplazarse hacia la izquierda",
1137
+ toolbarDrawerShortcutsArrowOrScrollRight: "\u2192 o desplazarse hacia la derecha"
1099
1138
  };
1100
-
1101
- const languages = [ "chinese", "english", "french", "german", "hindi", "italian", "japanese", "romanian", "russian", "spanish" ];
1102
-
1103
- const internationalization = {
1104
- chinese: chinese,
1105
- english: english,
1106
- french: french,
1107
- german: german,
1108
- hindi: hindi,
1109
- italian: italian,
1110
- japanese: japanese,
1111
- romanian: romanian,
1112
- russian: russian,
1113
- spanish: spanish,
1114
- fields: internationalizationFields$1,
1115
- languages: languages
1139
+ var spanish_default = spanish;
1140
+
1141
+ // source/constants/internationalization/fields.ts
1142
+ var internationalizationFields = {
1143
+ viewcubeFront: "viewcubeFront",
1144
+ viewcubeBack: "viewcubeBack",
1145
+ viewcubeLeft: "viewcubeLeft",
1146
+ viewcubeRight: "viewcubeRight",
1147
+ viewcubeTop: "viewcubeTop",
1148
+ viewcubeBase: "viewcubeBase",
1149
+ toolbarTransformRotate: "toolbarTransformRotate",
1150
+ toolbarTransformScale: "toolbarTransformScale",
1151
+ toolbarTransformTranslate: "toolbarTransformTranslate",
1152
+ toolbarDrawerGlobalTitle: "toolbarDrawerGlobalTitle",
1153
+ toolbarDrawerGlobalGeneralTheme: "toolbarDrawerGlobalGeneralTheme",
1154
+ toolbarDrawerGlobalInteractionTheme: "toolbarDrawerGlobalInteractionTheme",
1155
+ toolbarDrawerGlobalLanguage: "toolbarDrawerGlobalLanguage",
1156
+ toolbarDrawerTransformTitle: "toolbarDrawerTransformTitle",
1157
+ toolbarDrawerTransformMultiModeTransform: "toolbarDrawerTransformMultiModeTransform",
1158
+ toolbarDrawerTransformAllowRotationX: "toolbarDrawerTransformAllowRotationX",
1159
+ toolbarDrawerTransformAllowRotationY: "toolbarDrawerTransformAllowRotationY",
1160
+ toolbarDrawerTransformAllowTranslationX: "toolbarDrawerTransformAllowTranslationX",
1161
+ toolbarDrawerTransformAllowTranslationY: "toolbarDrawerTransformAllowTranslationY",
1162
+ toolbarDrawerTransformAllowTranslationZ: "toolbarDrawerTransformAllowTranslationZ",
1163
+ toolbarDrawerTransformAllowScale: "toolbarDrawerTransformAllowScale",
1164
+ toolbarDrawerTransformTouchTransform: "toolbarDrawerTransformTouchTransform",
1165
+ toolbarDrawerSpaceTitle: "toolbarDrawerSpaceTitle",
1166
+ toolbarDrawerSpaceTransparentUserInterface: "toolbarDrawerSpaceTransparentUserInterface",
1167
+ toolbarDrawerSpaceShowTransformOrigin: "toolbarDrawerSpaceShowTransformOrigin",
1168
+ toolbarDrawerSpaceTransformOriginSize: "toolbarDrawerSpaceTransformOriginSize",
1169
+ toolbarDrawerSpacePlaneOpacity: "toolbarDrawerSpacePlaneOpacity",
1170
+ toolbarDrawerSpaceLayoutType: "toolbarDrawerSpaceLayoutType",
1171
+ toolbarDrawerToolbarTitle: "toolbarDrawerToolbarTitle",
1172
+ toolbarDrawerToolbarAlwaysOpaque: "toolbarDrawerToolbarAlwaysOpaque",
1173
+ toolbarDrawerToolbarShowTransformIcons: "toolbarDrawerToolbarShowTransformIcons",
1174
+ toolbarDrawerToolbarShowTransformArrows: "toolbarDrawerToolbarShowTransformArrows",
1175
+ toolbarDrawerToolbarConcealToolbar: "toolbarDrawerToolbarConcealToolbar",
1176
+ toolbarDrawerViewcubeTitle: "toolbarDrawerViewcubeTitle",
1177
+ toolbarDrawerViewcubeShowViewcube: "toolbarDrawerViewcubeShowViewcube",
1178
+ toolbarDrawerViewcubeShowTransformButtons: "toolbarDrawerViewcubeShowTransformButtons",
1179
+ toolbarDrawerViewcubeAlwaysOpaque: "toolbarDrawerViewcubeAlwaysOpaque",
1180
+ toolbarDrawerViewcubeConcealViewcube: "toolbarDrawerViewcubeConcealViewcube",
1181
+ toolbarDrawerMinimapTitle: "toolbarDrawerMinimapTitle",
1182
+ toolbarDrawerMinimapShowMinimap: "toolbarDrawerMinimapShowMinimap",
1183
+ toolbarDrawerMinimapTransparent: "toolbarDrawerMinimapTransparent",
1184
+ toolbarDrawerTechnicalTitle: "toolbarDrawerTechnicalTitle",
1185
+ toolbarDrawerTechnicalCullingDistance: "toolbarDrawerTechnicalCullingDistance",
1186
+ toolbarDrawerShortcutsTitle: "toolbarDrawerShortcutsTitle",
1187
+ toolbarDrawerShortcutsToggleFirstPerson: "toolbarDrawerShortcutsToggleFirstPerson",
1188
+ toolbarDrawerShortcutsMoveForward: "toolbarDrawerShortcutsMoveForward",
1189
+ toolbarDrawerShortcutsMoveBackward: "toolbarDrawerShortcutsMoveBackward",
1190
+ toolbarDrawerShortcutsMoveLeft: "toolbarDrawerShortcutsMoveLeft",
1191
+ toolbarDrawerShortcutsMoveRight: "toolbarDrawerShortcutsMoveRight",
1192
+ toolbarDrawerShortcutsMoveUp: "toolbarDrawerShortcutsMoveUp",
1193
+ toolbarDrawerShortcutsMoveDown: "toolbarDrawerShortcutsMoveDown",
1194
+ toolbarDrawerShortcutsTurnLeft: "toolbarDrawerShortcutsTurnLeft",
1195
+ toolbarDrawerShortcutsTurnRight: "toolbarDrawerShortcutsTurnRight",
1196
+ toolbarDrawerShortcutsTurnUp: "toolbarDrawerShortcutsTurnUp",
1197
+ toolbarDrawerShortcutsTurnDown: "toolbarDrawerShortcutsTurnDown",
1198
+ toolbarDrawerShortcutsRotateUp: "toolbarDrawerShortcutsRotateUp",
1199
+ toolbarDrawerShortcutsRotateDown: "toolbarDrawerShortcutsRotateDown",
1200
+ toolbarDrawerShortcutsRotateLeft: "toolbarDrawerShortcutsRotateLeft",
1201
+ toolbarDrawerShortcutsRotateRight: "toolbarDrawerShortcutsRotateRight",
1202
+ toolbarDrawerShortcutsToggleRotate: "toolbarDrawerShortcutsToggleRotate",
1203
+ toolbarDrawerShortcutsTranslateUp: "toolbarDrawerShortcutsTranslateUp",
1204
+ toolbarDrawerShortcutsTranslateDown: "toolbarDrawerShortcutsTranslateDown",
1205
+ toolbarDrawerShortcutsTranslateLeft: "toolbarDrawerShortcutsTranslateLeft",
1206
+ toolbarDrawerShortcutsTranslateRight: "toolbarDrawerShortcutsTranslateRight",
1207
+ toolbarDrawerShortcutsTranslateIn: "toolbarDrawerShortcutsTranslateIn",
1208
+ toolbarDrawerShortcutsTranslateOut: "toolbarDrawerShortcutsTranslateOut",
1209
+ toolbarDrawerShortcutsToggleTranslate: "toolbarDrawerShortcutsToggleTranslate",
1210
+ toolbarDrawerShortcutsScaleUp: "toolbarDrawerShortcutsScaleUp",
1211
+ toolbarDrawerShortcutsScaleDown: "toolbarDrawerShortcutsScaleDown",
1212
+ toolbarDrawerShortcutsToggleScale: "toolbarDrawerShortcutsToggleScale",
1213
+ toolbarDrawerShortcutsFocusPlane: "toolbarDrawerShortcutsFocusPlane",
1214
+ toolbarDrawerShortcutsFocusParent: "toolbarDrawerShortcutsFocusParent",
1215
+ toolbarDrawerShortcutsRefreshPlane: "toolbarDrawerShortcutsRefreshPlane",
1216
+ toolbarDrawerShortcutsIsolatePlane: "toolbarDrawerShortcutsIsolatePlane",
1217
+ toolbarDrawerShortcutsOpenClosedPlane: "toolbarDrawerShortcutsOpenClosedPlane",
1218
+ toolbarDrawerShortcutsClosePlane: "toolbarDrawerShortcutsClosePlane",
1219
+ toolbarDrawerShortcutsPreviousRoot: "toolbarDrawerShortcutsPreviousRoot",
1220
+ toolbarDrawerShortcutsNextRoot: "toolbarDrawerShortcutsNextRoot",
1221
+ toolbarDrawerShortcutsFocusRoot: "toolbarDrawerShortcutsFocusRoot",
1222
+ toolbarDrawerShortcutsArrowOrScrollUp: "toolbarDrawerShortcutsArrowOrScrollUp",
1223
+ toolbarDrawerShortcutsArrowOrScrollDown: "toolbarDrawerShortcutsArrowOrScrollDown",
1224
+ toolbarDrawerShortcutsArrowOrScrollLeft: "toolbarDrawerShortcutsArrowOrScrollLeft",
1225
+ toolbarDrawerShortcutsArrowOrScrollRight: "toolbarDrawerShortcutsArrowOrScrollRight"
1116
1226
  };
1117
-
1118
- const keyModifiers = {
1119
- SHIFT: "⇧",
1120
- ALT: "⌥",
1121
- CTRL: "",
1122
- META: "",
1123
- CTRLMETA: "⌃/⌘"
1227
+ var fields_default = internationalizationFields;
1228
+
1229
+ // source/constants/internationalization/languages.ts
1230
+ var languages = [
1231
+ "chinese",
1232
+ "english",
1233
+ "french",
1234
+ "german",
1235
+ "hindi",
1236
+ "italian",
1237
+ "japanese",
1238
+ "romanian",
1239
+ "russian",
1240
+ "spanish"
1241
+ ];
1242
+ var languages_default = languages;
1243
+
1244
+ // source/constants/internationalization/index.ts
1245
+ var internationalization = {
1246
+ chinese: chinese_default,
1247
+ english: english_default,
1248
+ french: french_default,
1249
+ german: german_default,
1250
+ hindi: hindi_default,
1251
+ italian: italian_default,
1252
+ japanese: japanese_default,
1253
+ romanian: romanian_default,
1254
+ russian: russian_default,
1255
+ spanish: spanish_default,
1256
+ fields: fields_default,
1257
+ languages: languages_default
1124
1258
  };
1125
1259
 
1126
- const PLURID_PUBSUB_TOPIC = {
1127
- CONFIGURATION: "configuration",
1128
- SPACE_ANIMATED_TRANSFORM: "space.animatedTransform",
1129
- SPACE_ROTATE_UP: "space.rotateUp",
1130
- SPACE_ROTATE_DOWN: "space.rotateDown",
1131
- SPACE_ROTATE_LEFT: "space.rotateLeft",
1132
- SPACE_ROTATE_RIGHT: "space.rotateRight",
1133
- SPACE_ROTATE_X_WITH: "space.rotateXWith",
1134
- SPACE_ROTATE_Y_WITH: "space.rotateYWith",
1135
- SPACE_ROTATE_X_TO: "space.rotateXTo",
1136
- SPACE_ROTATE_Y_TO: "space.rotateYTo",
1137
- SPACE_TRANSLATE_UP: "space.translateUp",
1138
- SPACE_TRANSLATE_DOWN: "space.translateDown",
1139
- SPACE_TRANSLATE_LEFT: "space.translateLeft",
1140
- SPACE_TRANSLATE_RIGHT: "space.translateRight",
1141
- SPACE_TRANSLATE_X_WITH: "space.translateXWith",
1142
- SPACE_TRANSLATE_Y_WITH: "space.translateYWith",
1143
- SPACE_TRANSLATE_Z_WITH: "space.translateZWith",
1144
- SPACE_TRANSLATE_X_TO: "space.translateXTo",
1145
- SPACE_TRANSLATE_Y_TO: "space.translateYTo",
1146
- SPACE_TRANSLATE_Z_TO: "space.translateZTo",
1147
- SPACE_SCALE_UP: "space.scaleUp",
1148
- SPACE_SCALE_DOWN: "space.scaleDown",
1149
- SPACE_SCALE_WITH: "space.scaleWith",
1150
- SPACE_TRANSFORM: "space.transform",
1151
- VIEW_ADD_PLANE: "view.addPlane",
1152
- VIEW_SET_PLANES: "view.setPlanes",
1153
- VIEW_REMOVE_PLANE: "view.removePlane"
1260
+ // source/constants/keys/index.ts
1261
+ var keyModifiers = {
1262
+ SHIFT: "\u21E7",
1263
+ ALT: "\u2325",
1264
+ CTRL: "\u2303",
1265
+ META: "\u2318",
1266
+ CTRLMETA: "\u2303/\u2318"
1154
1267
  };
1155
1268
 
1156
- const {fields: internationalizationFields} = internationalization;
1269
+ // source/constants/protocols/index.ts
1270
+ var PROTOCOL_SEPARATOR = "://";
1271
+ var HTTP_PROTOCOL = "http";
1272
+ var HTTPS_PROTOCOL = "https";
1273
+ var PLURID_PROTOCOL = "plurid";
1274
+ var protocols = {
1275
+ http: HTTP_PROTOCOL + PROTOCOL_SEPARATOR,
1276
+ https: HTTPS_PROTOCOL + PROTOCOL_SEPARATOR,
1277
+ plurid: PLURID_PROTOCOL + PROTOCOL_SEPARATOR
1278
+ };
1157
1279
 
1158
- const shortcutsNames = {
1159
- TOGGLE_FIRST_PERSON: {
1160
- name: internationalizationFields.toolbarDrawerShortcutsToggleFirstPerson,
1161
- key: "f"
1162
- },
1163
- MOVE_FORWARD: {
1164
- name: internationalizationFields.toolbarDrawerShortcutsMoveForward,
1165
- key: "w"
1166
- },
1167
- MOVE_BACKWARD: {
1168
- name: internationalizationFields.toolbarDrawerShortcutsMoveBackward,
1169
- key: "s"
1170
- },
1171
- MOVE_LEFT: {
1172
- name: internationalizationFields.toolbarDrawerShortcutsMoveLeft,
1173
- key: "a"
1174
- },
1175
- MOVE_RIGHT: {
1176
- name: internationalizationFields.toolbarDrawerShortcutsMoveRight,
1177
- key: "d"
1178
- },
1179
- MOVE_UP: {
1180
- name: internationalizationFields.toolbarDrawerShortcutsMoveUp,
1181
- key: "e"
1182
- },
1183
- MOVE_DOWN: {
1184
- name: internationalizationFields.toolbarDrawerShortcutsMoveDown,
1185
- key: "c"
1186
- },
1187
- TURN_LEFT: {
1188
- name: internationalizationFields.toolbarDrawerShortcutsTurnLeft,
1189
- key: "a",
1190
- modifier: keyModifiers.SHIFT
1191
- },
1192
- TURN_RIGHT: {
1193
- name: internationalizationFields.toolbarDrawerShortcutsTurnRight,
1194
- key: "d",
1195
- modifier: keyModifiers.SHIFT
1196
- },
1197
- TURN_UP: {
1198
- name: internationalizationFields.toolbarDrawerShortcutsTurnUp,
1199
- key: "q"
1200
- },
1201
- TURN_DOWN: {
1202
- name: internationalizationFields.toolbarDrawerShortcutsTurnDown,
1203
- key: "z"
1204
- },
1205
- ROTATE_UP: {
1206
- name: internationalizationFields.toolbarDrawerShortcutsRotateUp,
1207
- internationalizedKey: true,
1208
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollUp,
1209
- modifier: keyModifiers.SHIFT
1210
- },
1211
- ROTATE_DOWN: {
1212
- name: internationalizationFields.toolbarDrawerShortcutsRotateDown,
1213
- internationalizedKey: true,
1214
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollDown,
1215
- modifier: keyModifiers.SHIFT
1216
- },
1217
- ROTATE_LEFT: {
1218
- name: internationalizationFields.toolbarDrawerShortcutsRotateLeft,
1219
- internationalizedKey: true,
1220
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollLeft,
1221
- modifier: keyModifiers.SHIFT
1222
- },
1223
- ROTATE_RIGHT: {
1224
- name: internationalizationFields.toolbarDrawerShortcutsRotateRight,
1225
- internationalizedKey: true,
1226
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollRight,
1227
- modifier: keyModifiers.SHIFT
1228
- },
1229
- TOGGLE_ROTATE: {
1230
- name: internationalizationFields.toolbarDrawerShortcutsToggleRotate,
1231
- key: "r"
1232
- },
1233
- TRANSLATE_UP: {
1234
- name: internationalizationFields.toolbarDrawerShortcutsTranslateUp,
1235
- internationalizedKey: true,
1236
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollUp,
1237
- modifier: keyModifiers.ALT
1238
- },
1239
- TRANSLATE_DOWN: {
1240
- name: internationalizationFields.toolbarDrawerShortcutsTranslateDown,
1241
- internationalizedKey: true,
1242
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollDown,
1243
- modifier: keyModifiers.ALT
1244
- },
1245
- TRANSLATE_LEFT: {
1246
- name: internationalizationFields.toolbarDrawerShortcutsTranslateLeft,
1247
- internationalizedKey: true,
1248
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollLeft,
1249
- modifier: keyModifiers.ALT
1250
- },
1251
- TRANSLATE_RIGHT: {
1252
- name: internationalizationFields.toolbarDrawerShortcutsTranslateRight,
1253
- internationalizedKey: true,
1254
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollRight,
1255
- modifier: keyModifiers.ALT
1256
- },
1257
- TRANSLATE_IN: {
1258
- name: internationalizationFields.toolbarDrawerShortcutsTranslateIn,
1259
- internationalizedKey: true,
1260
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollUp,
1261
- modifier: [ keyModifiers.SHIFT, keyModifiers.ALT ]
1262
- },
1263
- TRANSLATE_OUT: {
1264
- name: internationalizationFields.toolbarDrawerShortcutsTranslateOut,
1265
- internationalizedKey: true,
1266
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollDown,
1267
- modifier: [ keyModifiers.SHIFT, keyModifiers.ALT ]
1268
- },
1269
- TOGGLE_TRANSLATE: {
1270
- name: internationalizationFields.toolbarDrawerShortcutsToggleTranslate,
1271
- key: "t"
1272
- },
1273
- SCALE_UP: {
1274
- name: internationalizationFields.toolbarDrawerShortcutsScaleUp,
1275
- internationalizedKey: true,
1276
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollUp,
1277
- modifier: keyModifiers.CTRLMETA
1278
- },
1279
- SCALE_DOWN: {
1280
- name: internationalizationFields.toolbarDrawerShortcutsScaleDown,
1281
- internationalizedKey: true,
1282
- key: internationalizationFields.toolbarDrawerShortcutsArrowOrScrollDown,
1283
- modifier: keyModifiers.CTRLMETA
1284
- },
1285
- TOGGLE_SCALE: {
1286
- name: internationalizationFields.toolbarDrawerShortcutsToggleScale,
1287
- key: "s"
1288
- }
1280
+ // source/constants/pubsub/index.ts
1281
+ var PLURID_PUBSUB_TOPIC = {
1282
+ CONFIGURATION: "configuration",
1283
+ SPACE_ANIMATED_TRANSFORM: "space.animatedTransform",
1284
+ SPACE_ROTATE_UP: "space.rotateUp",
1285
+ SPACE_ROTATE_DOWN: "space.rotateDown",
1286
+ SPACE_ROTATE_LEFT: "space.rotateLeft",
1287
+ SPACE_ROTATE_RIGHT: "space.rotateRight",
1288
+ SPACE_ROTATE_X_WITH: "space.rotateXWith",
1289
+ SPACE_ROTATE_Y_WITH: "space.rotateYWith",
1290
+ SPACE_ROTATE_X_TO: "space.rotateXTo",
1291
+ SPACE_ROTATE_Y_TO: "space.rotateYTo",
1292
+ SPACE_TRANSLATE_UP: "space.translateUp",
1293
+ SPACE_TRANSLATE_DOWN: "space.translateDown",
1294
+ SPACE_TRANSLATE_LEFT: "space.translateLeft",
1295
+ SPACE_TRANSLATE_RIGHT: "space.translateRight",
1296
+ SPACE_TRANSLATE_X_WITH: "space.translateXWith",
1297
+ SPACE_TRANSLATE_Y_WITH: "space.translateYWith",
1298
+ SPACE_TRANSLATE_Z_WITH: "space.translateZWith",
1299
+ SPACE_TRANSLATE_X_TO: "space.translateXTo",
1300
+ SPACE_TRANSLATE_Y_TO: "space.translateYTo",
1301
+ SPACE_TRANSLATE_Z_TO: "space.translateZTo",
1302
+ SPACE_SCALE_UP: "space.scaleUp",
1303
+ SPACE_SCALE_DOWN: "space.scaleDown",
1304
+ SPACE_SCALE_WITH: "space.scaleWith",
1305
+ SPACE_TRANSFORM: "space.transform",
1306
+ VIEW_ADD_PLANE: "view.addPlane",
1307
+ VIEW_SET_PLANES: "view.setPlanes",
1308
+ VIEW_REMOVE_PLANE: "view.removePlane",
1309
+ NAVIGATE_TO_PLANE: "space.navigateToPlane",
1310
+ REFRESH_PLANE: "space.refreshPlane",
1311
+ ISOLATE_PLANE: "space.isolatePlane",
1312
+ OPEN_CLOSED_PLANE: "space.openClosedPlane",
1313
+ CLOSE_PLANE: "space.closePlane",
1314
+ PREVIOUS_ROOT: "space.previousRoot",
1315
+ NEXT_ROOT: "space.nextRoot",
1316
+ NAVIGATE_TO_ROOT: "space.navigateToRoot",
1317
+ ADD_PLANE_LINK: "space.addPlaneLink",
1318
+ REMOVE_PLANE_LINK: "space.removePlaneLink",
1319
+ SET_PLANE_LINKS: "space.setPlaneLinks",
1320
+ SET_SELECTION: "space.setSelection",
1321
+ TOGGLE_SELECTION: "space.toggleSelection",
1322
+ CLEAR_SELECTION: "space.clearSelection",
1323
+ // Collaboration seam (transport-agnostic). The engine PUBLISHES `collaborationMutation` when the
1324
+ // shared arrangement changes; a host forwards it over its transport and republishes incoming peer
1325
+ // changes as `applyRemoteMutation`.
1326
+ COLLABORATION_MUTATION: "space.collaborationMutation",
1327
+ APPLY_REMOTE_MUTATION: "space.applyRemoteMutation",
1328
+ /** Programmatic camera control: a host publishes an encoded viewpoint to move/jump the camera. */
1329
+ SET_VIEWPOINT: "space.setViewpoint",
1330
+ // High-value declarative control (the niche operations are reachable via the `onReady` api). All
1331
+ // no-data unless noted.
1332
+ FIT_TO_VIEW: "space.fitToView",
1333
+ RESET_TRANSFORM: "space.resetTransform",
1334
+ UNDO: "space.undo",
1335
+ REDO: "space.redo",
1336
+ SET_TREE: "space.setTree",
1337
+ // data: { tree }
1338
+ /**
1339
+ * The single engine→host OBSERVE channel: published as `{ kind, value }` whenever a watched slice
1340
+ * changes (`selection`/`tree`/`links`/`activePlane`/`isolate`/`layoutResolved`/`loading`). One
1341
+ * subscription covers all of them — finer than diffing snapshots, lighter than N topics.
1342
+ */
1343
+ CHANGED: "space.changed",
1344
+ SET_PLANE_PATH: "plane.setPath"
1289
1345
  };
1290
1346
 
1291
- const defaultShortcuts = [ {
1292
- type: exports.SHORTCUTS.TOGGLE_FIRST_PERSON,
1347
+ // source/constants/shortcuts/index.ts
1348
+ var {
1349
+ fields: internationalizationFields2
1350
+ } = internationalization;
1351
+ var shortcutsNames = {
1352
+ TOGGLE_FIRST_PERSON: {
1353
+ name: internationalizationFields2.toolbarDrawerShortcutsToggleFirstPerson,
1293
1354
  key: "f"
1294
- }, {
1295
- type: exports.SHORTCUTS.MOVE_FORWARD,
1355
+ },
1356
+ MOVE_FORWARD: {
1357
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveForward,
1296
1358
  key: "w"
1297
- }, {
1298
- type: exports.SHORTCUTS.MOVE_BACKWARD,
1359
+ },
1360
+ MOVE_BACKWARD: {
1361
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveBackward,
1299
1362
  key: "s"
1300
- }, {
1301
- type: exports.SHORTCUTS.MOVE_LEFT,
1363
+ },
1364
+ MOVE_LEFT: {
1365
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveLeft,
1302
1366
  key: "a"
1303
- }, {
1304
- type: exports.SHORTCUTS.MOVE_RIGHT,
1367
+ },
1368
+ MOVE_RIGHT: {
1369
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveRight,
1305
1370
  key: "d"
1306
- }, {
1307
- type: exports.SHORTCUTS.MOVE_UP,
1371
+ },
1372
+ MOVE_UP: {
1373
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveUp,
1308
1374
  key: "e"
1309
- }, {
1310
- type: exports.SHORTCUTS.MOVE_DOWN,
1375
+ },
1376
+ MOVE_DOWN: {
1377
+ name: internationalizationFields2.toolbarDrawerShortcutsMoveDown,
1311
1378
  key: "c"
1312
- }, {
1313
- type: exports.SHORTCUTS.TURN_LEFT,
1379
+ },
1380
+ TURN_LEFT: {
1381
+ name: internationalizationFields2.toolbarDrawerShortcutsTurnLeft,
1314
1382
  key: "a",
1315
- modifier: exports.KEY_MODIFIERS.SHIFT
1316
- }, {
1317
- type: exports.SHORTCUTS.TURN_RIGHT,
1383
+ modifier: keyModifiers.SHIFT
1384
+ },
1385
+ TURN_RIGHT: {
1386
+ name: internationalizationFields2.toolbarDrawerShortcutsTurnRight,
1318
1387
  key: "d",
1319
- modifier: exports.KEY_MODIFIERS.SHIFT
1320
- }, {
1321
- type: exports.SHORTCUTS.TURN_UP,
1388
+ modifier: keyModifiers.SHIFT
1389
+ },
1390
+ TURN_UP: {
1391
+ name: internationalizationFields2.toolbarDrawerShortcutsTurnUp,
1322
1392
  key: "q"
1323
- }, {
1324
- type: exports.SHORTCUTS.TURN_DOWN,
1393
+ },
1394
+ TURN_DOWN: {
1395
+ name: internationalizationFields2.toolbarDrawerShortcutsTurnDown,
1325
1396
  key: "z"
1326
- }, {
1327
- type: exports.SHORTCUTS.ROTATE_UP,
1397
+ },
1398
+ ROTATE_UP: {
1399
+ name: internationalizationFields2.toolbarDrawerShortcutsRotateUp,
1400
+ internationalizedKey: true,
1401
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollUp,
1402
+ modifier: keyModifiers.SHIFT
1403
+ },
1404
+ ROTATE_DOWN: {
1405
+ name: internationalizationFields2.toolbarDrawerShortcutsRotateDown,
1406
+ internationalizedKey: true,
1407
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollDown,
1408
+ modifier: keyModifiers.SHIFT
1409
+ },
1410
+ ROTATE_LEFT: {
1411
+ name: internationalizationFields2.toolbarDrawerShortcutsRotateLeft,
1412
+ internationalizedKey: true,
1413
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollLeft,
1414
+ modifier: keyModifiers.SHIFT
1415
+ },
1416
+ ROTATE_RIGHT: {
1417
+ name: internationalizationFields2.toolbarDrawerShortcutsRotateRight,
1418
+ internationalizedKey: true,
1419
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollRight,
1420
+ modifier: keyModifiers.SHIFT
1421
+ },
1422
+ TOGGLE_ROTATE: {
1423
+ name: internationalizationFields2.toolbarDrawerShortcutsToggleRotate,
1424
+ key: "r"
1425
+ },
1426
+ TRANSLATE_UP: {
1427
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateUp,
1428
+ internationalizedKey: true,
1429
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollUp,
1430
+ modifier: keyModifiers.ALT
1431
+ },
1432
+ TRANSLATE_DOWN: {
1433
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateDown,
1434
+ internationalizedKey: true,
1435
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollDown,
1436
+ modifier: keyModifiers.ALT
1437
+ },
1438
+ TRANSLATE_LEFT: {
1439
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateLeft,
1440
+ internationalizedKey: true,
1441
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollLeft,
1442
+ modifier: keyModifiers.ALT
1443
+ },
1444
+ TRANSLATE_RIGHT: {
1445
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateRight,
1446
+ internationalizedKey: true,
1447
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollRight,
1448
+ modifier: keyModifiers.ALT
1449
+ },
1450
+ TRANSLATE_IN: {
1451
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateIn,
1452
+ internationalizedKey: true,
1453
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollUp,
1454
+ modifier: [keyModifiers.SHIFT, keyModifiers.ALT]
1455
+ },
1456
+ TRANSLATE_OUT: {
1457
+ name: internationalizationFields2.toolbarDrawerShortcutsTranslateOut,
1458
+ internationalizedKey: true,
1459
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollDown,
1460
+ modifier: [keyModifiers.SHIFT, keyModifiers.ALT]
1461
+ },
1462
+ TOGGLE_TRANSLATE: {
1463
+ name: internationalizationFields2.toolbarDrawerShortcutsToggleTranslate,
1464
+ key: "t"
1465
+ },
1466
+ SCALE_UP: {
1467
+ name: internationalizationFields2.toolbarDrawerShortcutsScaleUp,
1468
+ internationalizedKey: true,
1469
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollUp,
1470
+ modifier: keyModifiers.CTRLMETA
1471
+ },
1472
+ SCALE_DOWN: {
1473
+ name: internationalizationFields2.toolbarDrawerShortcutsScaleDown,
1474
+ internationalizedKey: true,
1475
+ key: internationalizationFields2.toolbarDrawerShortcutsArrowOrScrollDown,
1476
+ modifier: keyModifiers.CTRLMETA
1477
+ },
1478
+ TOGGLE_SCALE: {
1479
+ name: internationalizationFields2.toolbarDrawerShortcutsToggleScale,
1480
+ key: "s"
1481
+ },
1482
+ FOCUS_PLANE: {
1483
+ name: internationalizationFields2.toolbarDrawerShortcutsFocusPlane,
1484
+ key: "f",
1485
+ modifier: keyModifiers.ALT
1486
+ },
1487
+ FOCUS_PARENT: {
1488
+ name: internationalizationFields2.toolbarDrawerShortcutsFocusParent,
1489
+ key: "b",
1490
+ modifier: keyModifiers.ALT
1491
+ },
1492
+ REFRESH_PLANE: {
1493
+ name: internationalizationFields2.toolbarDrawerShortcutsRefreshPlane,
1494
+ key: "r",
1495
+ modifier: keyModifiers.ALT
1496
+ },
1497
+ ISOLATE_PLANE: {
1498
+ name: internationalizationFields2.toolbarDrawerShortcutsIsolatePlane,
1499
+ key: "e",
1500
+ modifier: keyModifiers.ALT
1501
+ },
1502
+ OPEN_CLOSED_PLANE: {
1503
+ name: internationalizationFields2.toolbarDrawerShortcutsOpenClosedPlane,
1504
+ key: "t",
1505
+ modifier: [keyModifiers.ALT, keyModifiers.SHIFT]
1506
+ },
1507
+ CLOSE_PLANE: {
1508
+ name: internationalizationFields2.toolbarDrawerShortcutsClosePlane,
1509
+ key: "w",
1510
+ modifier: keyModifiers.ALT
1511
+ },
1512
+ PREVIOUS_ROOT: {
1513
+ name: internationalizationFields2.toolbarDrawerShortcutsPreviousRoot,
1514
+ key: "a",
1515
+ modifier: keyModifiers.ALT
1516
+ },
1517
+ NEXT_ROOT: {
1518
+ name: internationalizationFields2.toolbarDrawerShortcutsNextRoot,
1519
+ key: "d",
1520
+ modifier: keyModifiers.ALT
1521
+ },
1522
+ FOCUS_ROOT: {
1523
+ name: internationalizationFields2.toolbarDrawerShortcutsFocusRoot,
1524
+ key: "[digit]",
1525
+ modifier: keyModifiers.ALT
1526
+ }
1527
+ };
1528
+ var defaultShortcuts = [
1529
+ {
1530
+ type: "TOGGLE_FIRST_PERSON" /* TOGGLE_FIRST_PERSON */,
1531
+ key: "f"
1532
+ },
1533
+ {
1534
+ type: "MOVE_FORWARD" /* MOVE_FORWARD */,
1535
+ key: "w"
1536
+ },
1537
+ {
1538
+ type: "MOVE_BACKWARD" /* MOVE_BACKWARD */,
1539
+ key: "s"
1540
+ },
1541
+ {
1542
+ type: "MOVE_LEFT" /* MOVE_LEFT */,
1543
+ key: "a"
1544
+ },
1545
+ {
1546
+ type: "MOVE_RIGHT" /* MOVE_RIGHT */,
1547
+ key: "d"
1548
+ },
1549
+ {
1550
+ type: "MOVE_UP" /* MOVE_UP */,
1551
+ key: "e"
1552
+ },
1553
+ {
1554
+ type: "MOVE_DOWN" /* MOVE_DOWN */,
1555
+ key: "c"
1556
+ },
1557
+ {
1558
+ type: "TURN_LEFT" /* TURN_LEFT */,
1559
+ key: "a",
1560
+ modifier: "SHIFT" /* SHIFT */
1561
+ },
1562
+ {
1563
+ type: "TURN_RIGHT" /* TURN_RIGHT */,
1564
+ key: "d",
1565
+ modifier: "SHIFT" /* SHIFT */
1566
+ },
1567
+ {
1568
+ type: "TURN_UP" /* TURN_UP */,
1569
+ key: "q"
1570
+ },
1571
+ {
1572
+ type: "TURN_DOWN" /* TURN_DOWN */,
1573
+ key: "z"
1574
+ },
1575
+ {
1576
+ type: "ROTATE_UP" /* ROTATE_UP */,
1328
1577
  key: "ArrowUp",
1329
- modifier: exports.KEY_MODIFIERS.SHIFT
1330
- }, {
1331
- type: exports.SHORTCUTS.ROTATE_DOWN,
1578
+ modifier: "SHIFT" /* SHIFT */
1579
+ },
1580
+ {
1581
+ type: "ROTATE_DOWN" /* ROTATE_DOWN */,
1332
1582
  key: "ArrowDown",
1333
- modifier: exports.KEY_MODIFIERS.SHIFT
1334
- }, {
1335
- type: exports.SHORTCUTS.ROTATE_LEFT,
1583
+ modifier: "SHIFT" /* SHIFT */
1584
+ },
1585
+ {
1586
+ type: "ROTATE_LEFT" /* ROTATE_LEFT */,
1336
1587
  key: "ArrowLeft",
1337
- modifier: exports.KEY_MODIFIERS.SHIFT
1338
- }, {
1339
- type: exports.SHORTCUTS.ROTATE_RIGHT,
1588
+ modifier: "SHIFT" /* SHIFT */
1589
+ },
1590
+ {
1591
+ type: "ROTATE_RIGHT" /* ROTATE_RIGHT */,
1340
1592
  key: "ArrowRight",
1341
- modifier: exports.KEY_MODIFIERS.SHIFT
1342
- }, {
1343
- type: exports.SHORTCUTS.TOGGLE_ROTATE,
1593
+ modifier: "SHIFT" /* SHIFT */
1594
+ },
1595
+ {
1596
+ type: "TOGGLE_ROTATE" /* TOGGLE_ROTATE */,
1344
1597
  key: "r"
1345
- }, {
1346
- type: exports.SHORTCUTS.TRANSLATE_UP,
1598
+ },
1599
+ {
1600
+ type: "TRANSLATE_UP" /* TRANSLATE_UP */,
1347
1601
  key: "ArrowUp",
1348
- modifier: exports.KEY_MODIFIERS.ALT
1349
- }, {
1350
- type: exports.SHORTCUTS.TRANSLATE_DOWN,
1602
+ modifier: "ALT" /* ALT */
1603
+ },
1604
+ {
1605
+ type: "TRANSLATE_DOWN" /* TRANSLATE_DOWN */,
1351
1606
  key: "ArrowDown",
1352
- modifier: exports.KEY_MODIFIERS.ALT
1353
- }, {
1354
- type: exports.SHORTCUTS.TRANSLATE_LEFT,
1607
+ modifier: "ALT" /* ALT */
1608
+ },
1609
+ {
1610
+ type: "TRANSLATE_LEFT" /* TRANSLATE_LEFT */,
1355
1611
  key: "ArrowLeft",
1356
- modifier: exports.KEY_MODIFIERS.ALT
1357
- }, {
1358
- type: exports.SHORTCUTS.TRANSLATE_RIGHT,
1612
+ modifier: "ALT" /* ALT */
1613
+ },
1614
+ {
1615
+ type: "TRANSLATE_RIGHT" /* TRANSLATE_RIGHT */,
1359
1616
  key: "ArrowRight",
1360
- modifier: exports.KEY_MODIFIERS.ALT
1361
- }, {
1362
- type: exports.SHORTCUTS.TRANSLATE_IN,
1617
+ modifier: "ALT" /* ALT */
1618
+ },
1619
+ {
1620
+ type: "TRANSLATE_IN" /* TRANSLATE_IN */,
1363
1621
  key: "ArrowUp",
1364
- modifier: [ exports.KEY_MODIFIERS.SHIFT, exports.KEY_MODIFIERS.ALT ]
1365
- }, {
1366
- type: exports.SHORTCUTS.TRANSLATE_OUT,
1622
+ modifier: ["SHIFT" /* SHIFT */, "ALT" /* ALT */]
1623
+ },
1624
+ {
1625
+ type: "TRANSLATE_OUT" /* TRANSLATE_OUT */,
1367
1626
  key: "ArrowDown",
1368
- modifier: [ exports.KEY_MODIFIERS.SHIFT, exports.KEY_MODIFIERS.ALT ]
1369
- }, {
1370
- type: exports.SHORTCUTS.TOGGLE_TRANSLATE,
1627
+ modifier: ["SHIFT" /* SHIFT */, "ALT" /* ALT */]
1628
+ },
1629
+ {
1630
+ type: "TOGGLE_TRANSLATE" /* TOGGLE_TRANSLATE */,
1371
1631
  key: "t"
1372
- }, {
1373
- type: exports.SHORTCUTS.SCALE_UP,
1632
+ },
1633
+ {
1634
+ type: "SCALE_UP" /* SCALE_UP */,
1374
1635
  key: "ArrowUp",
1375
- modifier: exports.KEY_MODIFIERS.META
1376
- }, {
1377
- type: exports.SHORTCUTS.SCALE_DOWN,
1636
+ modifier: "META" /* META */
1637
+ },
1638
+ {
1639
+ type: "SCALE_DOWN" /* SCALE_DOWN */,
1378
1640
  key: "ArrowDown",
1379
- modifier: exports.KEY_MODIFIERS.META
1380
- }, {
1381
- type: exports.SHORTCUTS.TOGGLE_SCALE,
1641
+ modifier: "META" /* META */
1642
+ },
1643
+ {
1644
+ type: "TOGGLE_SCALE" /* TOGGLE_SCALE */,
1382
1645
  key: "s"
1383
- } ];
1384
-
1385
- const ROTATION_STEP = 3.01;
1386
-
1387
- const TRANSLATION_STEP = 25;
1388
-
1389
- const SCALE_STEP = .05;
1390
-
1391
- const SCALE_LOWER_LIMIT = .1;
1392
-
1393
- const SCALE_UPPER_LIMIT = 4;
1394
-
1395
- const ROOTS_GAP = 50;
1396
-
1397
- const PLANE_DEFAULT_ANGLE = 90.1;
1398
-
1399
- const defaultTreePlane = {
1400
- sourceID: "",
1401
- planeID: "",
1402
- route: "",
1403
- children: [],
1404
- routeDivisions: {
1405
- protocol: {
1406
- value: "http",
1407
- secure: false
1408
- },
1409
- host: {
1410
- value: "",
1411
- controlled: false
1412
- },
1413
- path: {
1414
- value: "",
1415
- parameters: {},
1416
- query: {}
1417
- },
1418
- space: {
1419
- value: "",
1420
- parameters: {},
1421
- query: {}
1422
- },
1423
- universe: {
1424
- value: "",
1425
- parameters: {},
1426
- query: {}
1427
- },
1428
- cluster: {
1429
- value: "",
1430
- parameters: {},
1431
- query: {}
1432
- },
1433
- plane: {
1434
- value: "",
1435
- parameters: {},
1436
- query: {},
1437
- fragments: {
1438
- elements: [],
1439
- texts: []
1440
- }
1441
- },
1442
- valid: false
1646
+ },
1647
+ {
1648
+ type: "FOCUS_PLANE" /* FOCUS_PLANE */,
1649
+ key: "f",
1650
+ modifier: "ALT" /* ALT */
1651
+ },
1652
+ {
1653
+ type: "FOCUS_PARENT" /* FOCUS_PARENT */,
1654
+ key: "b",
1655
+ modifier: "ALT" /* ALT */
1656
+ },
1657
+ {
1658
+ type: "REFRESH_PLANE" /* REFRESH_PLANE */,
1659
+ key: "r",
1660
+ modifier: "ALT" /* ALT */
1661
+ },
1662
+ {
1663
+ type: "ISOLATE_PLANE" /* ISOLATE_PLANE */,
1664
+ key: "e",
1665
+ modifier: "ALT" /* ALT */
1666
+ },
1667
+ {
1668
+ type: "CLOSE_PLANE" /* CLOSE_PLANE */,
1669
+ key: "w",
1670
+ modifier: "ALT" /* ALT */
1671
+ },
1672
+ {
1673
+ type: "OPEN_CLOSED_PLANE" /* OPEN_CLOSED_PLANE */,
1674
+ key: "t",
1675
+ modifier: ["ALT" /* ALT */, "SHIFT" /* SHIFT */]
1676
+ },
1677
+ {
1678
+ type: "PREVIOUS_ROOT" /* PREVIOUS_ROOT */,
1679
+ key: "a",
1680
+ modifier: "ALT" /* ALT */
1681
+ },
1682
+ {
1683
+ type: "NEXT_ROOT" /* NEXT_ROOT */,
1684
+ key: "d",
1685
+ modifier: "ALT" /* ALT */
1686
+ },
1687
+ {
1688
+ type: "FOCUS_ROOT" /* FOCUS_ROOT */,
1689
+ key: "[digit]",
1690
+ modifier: "ALT" /* ALT */
1691
+ }
1692
+ ];
1693
+
1694
+ // source/constants/space/index.ts
1695
+ var ROTATION_STEP = 3.01;
1696
+ var TRANSLATION_STEP = 25;
1697
+ var SCALE_STEP = 0.05;
1698
+ var SCALE_LOWER_LIMIT = 0.1;
1699
+ var SCALE_UPPER_LIMIT = 4;
1700
+ var ROOTS_GAP = 50;
1701
+ var PLANE_DEFAULT_ANGLE = 90.1;
1702
+ var FOCUS_ANCHOR_SUFFIX = "-focus";
1703
+
1704
+ // source/constants/tree/index.ts
1705
+ var defaultTreePlane = {
1706
+ sourceID: "",
1707
+ planeID: "",
1708
+ route: "",
1709
+ children: [],
1710
+ routeDivisions: {
1711
+ protocol: {
1712
+ value: "http",
1713
+ secure: false
1714
+ },
1715
+ host: {
1716
+ value: "",
1717
+ controlled: false
1718
+ },
1719
+ path: {
1720
+ value: "",
1721
+ parameters: {},
1722
+ query: {}
1443
1723
  },
1444
- height: 0,
1445
- width: 0,
1446
- location: {
1447
- translateX: 0,
1448
- translateY: 0,
1449
- translateZ: 0,
1450
- rotateX: 0,
1451
- rotateY: 0
1724
+ space: {
1725
+ value: "",
1726
+ parameters: {},
1727
+ query: {}
1452
1728
  },
1453
- show: true
1729
+ universe: {
1730
+ value: "",
1731
+ parameters: {},
1732
+ query: {}
1733
+ },
1734
+ cluster: {
1735
+ value: "",
1736
+ parameters: {},
1737
+ query: {}
1738
+ },
1739
+ plane: {
1740
+ value: "",
1741
+ parameters: {},
1742
+ query: {},
1743
+ fragments: {
1744
+ elements: [],
1745
+ texts: []
1746
+ }
1747
+ },
1748
+ valid: false
1749
+ },
1750
+ height: 0,
1751
+ width: 0,
1752
+ location: {
1753
+ translateX: 0,
1754
+ translateY: 0,
1755
+ translateZ: 0,
1756
+ rotateX: 0,
1757
+ rotateY: 0
1758
+ },
1759
+ show: true
1454
1760
  };
1455
1761
 
1762
+ exports.FOCUS_ANCHOR_SUFFIX = FOCUS_ANCHOR_SUFFIX;
1763
+ exports.HTTPS_PROTOCOL = HTTPS_PROTOCOL;
1764
+ exports.HTTP_PROTOCOL = HTTP_PROTOCOL;
1765
+ exports.KEY_MODIFIERS = KEY_MODIFIERS;
1766
+ exports.LAYOUT_TYPES = LAYOUT_TYPES;
1456
1767
  exports.PLANE_DEFAULT_ANGLE = PLANE_DEFAULT_ANGLE;
1457
-
1768
+ exports.PLURID_DEFAULT_ANIMATED_TRANSFORM_TIMEOUT = PLURID_DEFAULT_ANIMATED_TRANSFORM_TIMEOUT;
1458
1769
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN = PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN;
1459
-
1460
1770
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT = PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT;
1461
-
1462
1771
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X = PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X;
1463
-
1464
1772
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y = PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y;
1465
-
1466
1773
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW = PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW;
1467
-
1468
1774
  exports.PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX = PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX;
1469
-
1470
1775
  exports.PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST = PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST;
1471
-
1472
1776
  exports.PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE = PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE;
1473
-
1777
+ exports.PLURID_DEFAULT_PREVENT_OVERSCROLL_TIMEOUT = PLURID_DEFAULT_PREVENT_OVERSCROLL_TIMEOUT;
1778
+ exports.PLURID_DEFAULT_RESIZE_DEBOUNCE_TIME = PLURID_DEFAULT_RESIZE_DEBOUNCE_TIME;
1779
+ exports.PLURID_ENTITY_ALIGNMENT_GUIDES = PLURID_ENTITY_ALIGNMENT_GUIDES;
1474
1780
  exports.PLURID_ENTITY_APPLICATION_CONFIGURATOR = PLURID_ENTITY_APPLICATION_CONFIGURATOR;
1475
-
1476
1781
  exports.PLURID_ENTITY_LINK = PLURID_ENTITY_LINK;
1477
-
1478
1782
  exports.PLURID_ENTITY_MULTISPACE = PLURID_ENTITY_MULTISPACE;
1479
-
1480
1783
  exports.PLURID_ENTITY_PLANE = PLURID_ENTITY_PLANE;
1481
-
1482
1784
  exports.PLURID_ENTITY_PLANE_BRIDGE = PLURID_ENTITY_PLANE_BRIDGE;
1483
-
1484
1785
  exports.PLURID_ENTITY_PLANE_CONFIGURATOR = PLURID_ENTITY_PLANE_CONFIGURATOR;
1485
-
1486
1786
  exports.PLURID_ENTITY_PLANE_CONTENT = PLURID_ENTITY_PLANE_CONTENT;
1487
-
1488
1787
  exports.PLURID_ENTITY_PLANE_CONTROLS = PLURID_ENTITY_PLANE_CONTROLS;
1489
-
1490
1788
  exports.PLURID_ENTITY_PLANE_DEBUGGER = PLURID_ENTITY_PLANE_DEBUGGER;
1491
-
1789
+ exports.PLURID_ENTITY_PLANE_LINKS = PLURID_ENTITY_PLANE_LINKS;
1492
1790
  exports.PLURID_ENTITY_ROOT = PLURID_ENTITY_ROOT;
1493
-
1494
1791
  exports.PLURID_ENTITY_ROOTS = PLURID_ENTITY_ROOTS;
1495
-
1496
1792
  exports.PLURID_ENTITY_SPACE = PLURID_ENTITY_SPACE;
1497
-
1498
1793
  exports.PLURID_ENTITY_SPACE_DEBUGGER = PLURID_ENTITY_SPACE_DEBUGGER;
1499
-
1500
1794
  exports.PLURID_ENTITY_TOOLBAR = PLURID_ENTITY_TOOLBAR;
1501
-
1502
1795
  exports.PLURID_ENTITY_TRANSFORM_ORIGIN = PLURID_ENTITY_TRANSFORM_ORIGIN;
1503
-
1504
1796
  exports.PLURID_ENTITY_UNIVERSE_EXPLORER = PLURID_ENTITY_UNIVERSE_EXPLORER;
1505
-
1506
1797
  exports.PLURID_ENTITY_VIEW = PLURID_ENTITY_VIEW;
1507
-
1508
1798
  exports.PLURID_ENTITY_VIEWCUBE = PLURID_ENTITY_VIEWCUBE;
1509
-
1799
+ exports.PLURID_PROTOCOL = PLURID_PROTOCOL;
1510
1800
  exports.PLURID_PUBSUB_TOPIC = PLURID_PUBSUB_TOPIC;
1511
-
1512
1801
  exports.PLURID_ROUTER_LOCATION_CHANGED = PLURID_ROUTER_LOCATION_CHANGED;
1513
-
1514
1802
  exports.PLURID_ROUTER_LOCATION_STORED = PLURID_ROUTER_LOCATION_STORED;
1515
-
1516
1803
  exports.PLURID_ROUTER_STORAGE = PLURID_ROUTER_STORAGE;
1517
-
1518
1804
  exports.PLURID_ROUTE_DEFAULT = PLURID_ROUTE_DEFAULT;
1519
-
1520
1805
  exports.PLURID_ROUTE_DEFAULT_CLUSTER = PLURID_ROUTE_DEFAULT_CLUSTER;
1521
-
1522
1806
  exports.PLURID_ROUTE_DEFAULT_CLUSTER_VALUE = PLURID_ROUTE_DEFAULT_CLUSTER_VALUE;
1523
-
1524
1807
  exports.PLURID_ROUTE_DEFAULT_PATH = PLURID_ROUTE_DEFAULT_PATH;
1525
-
1526
1808
  exports.PLURID_ROUTE_DEFAULT_PATH_VALUE = PLURID_ROUTE_DEFAULT_PATH_VALUE;
1527
-
1528
1809
  exports.PLURID_ROUTE_DEFAULT_SPACE = PLURID_ROUTE_DEFAULT_SPACE;
1529
-
1530
1810
  exports.PLURID_ROUTE_DEFAULT_SPACE_VALUE = PLURID_ROUTE_DEFAULT_SPACE_VALUE;
1531
-
1532
1811
  exports.PLURID_ROUTE_DEFAULT_UNIVERSE = PLURID_ROUTE_DEFAULT_UNIVERSE;
1533
-
1534
1812
  exports.PLURID_ROUTE_DEFAULT_UNIVERSE_VALUE = PLURID_ROUTE_DEFAULT_UNIVERSE_VALUE;
1535
-
1536
1813
  exports.PLURID_ROUTE_SEPARATOR = PLURID_ROUTE_SEPARATOR;
1537
-
1814
+ exports.PROTOCOL_SEPARATOR = PROTOCOL_SEPARATOR;
1538
1815
  exports.ROOTS_GAP = ROOTS_GAP;
1539
-
1540
1816
  exports.ROTATION_STEP = ROTATION_STEP;
1541
-
1542
1817
  exports.SCALE_LOWER_LIMIT = SCALE_LOWER_LIMIT;
1543
-
1544
1818
  exports.SCALE_STEP = SCALE_STEP;
1545
-
1546
1819
  exports.SCALE_UPPER_LIMIT = SCALE_UPPER_LIMIT;
1547
-
1820
+ exports.SHORTCUTS = SHORTCUTS;
1821
+ exports.SIZES = SIZES;
1822
+ exports.TOOLBAR_DRAWERS = TOOLBAR_DRAWERS;
1823
+ exports.TRANSFORM_MODES = TRANSFORM_MODES;
1824
+ exports.TRANSFORM_TOUCHES = TRANSFORM_TOUCHES;
1548
1825
  exports.TRANSLATION_STEP = TRANSLATION_STEP;
1549
-
1550
1826
  exports.compareTypes = compareTypes;
1551
-
1552
1827
  exports.defaultConfiguration = defaultConfiguration;
1553
-
1554
1828
  exports.defaultConfigurationDevelopment = defaultConfigurationDevelopment;
1555
-
1556
1829
  exports.defaultConfigurationElements = defaultConfigurationElements;
1557
-
1558
1830
  exports.defaultConfigurationGlobal = defaultConfigurationGlobal;
1559
-
1560
1831
  exports.defaultConfigurationNetwork = defaultConfigurationNetwork;
1561
-
1562
1832
  exports.defaultConfigurationSpace = defaultConfigurationSpace;
1563
-
1564
1833
  exports.defaultShortcuts = defaultShortcuts;
1565
-
1566
1834
  exports.defaultTreePlane = defaultTreePlane;
1567
-
1835
+ exports.directions = directions;
1568
1836
  exports.internationalization = internationalization;
1569
-
1570
1837
  exports.keyModifiers = keyModifiers;
1571
-
1572
1838
  exports.layoutNames = layoutNames;
1573
-
1839
+ exports.protocols = protocols;
1574
1840
  exports.shortcutsNames = shortcutsNames;
1575
1841
  //# sourceMappingURL=index.js.map
1842
+ //# sourceMappingURL=index.js.map