@hoardodile/i18n 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalogs/workbench.d.ts +213 -69
- package/dist/catalogs/workbench.js +185 -65
- package/dist/catalogs/workbench.js.map +1 -1
- package/dist/{catalogs-DhL0jLaW.d.ts → catalogs-P15rGrmg.d.ts} +90 -12
- package/dist/catalogs.d.ts +1 -1
- package/dist/catalogs.js +130 -65
- package/dist/catalogs.js.map +1 -1
- package/dist/core.d.ts +14 -1
- package/dist/core.js +8 -1
- package/dist/core.js.map +1 -1
- package/dist/create-i18n.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +138 -66
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/catalogs/de.json +26 -13
- package/src/catalogs/en.json +25 -12
- package/src/catalogs/es.json +26 -13
- package/src/catalogs/ja.json +26 -13
- package/src/catalogs/zh.json +27 -14
- package/src/core.ts +14 -0
- package/src/index.ts +1 -0
- package/src/workbench/de.json +37 -13
- package/src/workbench/en.json +37 -13
- package/src/workbench/es.json +37 -13
- package/src/workbench/ja.json +37 -13
- package/src/workbench/zh.json +37 -13
|
@@ -4,7 +4,9 @@ var toolbar = {
|
|
|
4
4
|
plugin: "plugin",
|
|
5
5
|
reloadAria: "Reload plugin",
|
|
6
6
|
reloadHint: "Reload — re-mount with the current build",
|
|
7
|
-
resource: "Resource"
|
|
7
|
+
resource: "Resource",
|
|
8
|
+
enterFullscreen: "Enter fullscreen",
|
|
9
|
+
exitFullscreen: "Exit fullscreen"
|
|
8
10
|
};
|
|
9
11
|
var popover = {
|
|
10
12
|
configure: "Configure",
|
|
@@ -16,7 +18,7 @@ var popover = {
|
|
|
16
18
|
sectionIcons: "Icons",
|
|
17
19
|
sectionLanguage: "Language",
|
|
18
20
|
sectionFont: "Font",
|
|
19
|
-
|
|
21
|
+
sectionPresentation: "Presentation",
|
|
20
22
|
mode: "Mode",
|
|
21
23
|
palette: "Palette",
|
|
22
24
|
style: "Style",
|
|
@@ -24,18 +26,40 @@ var popover = {
|
|
|
24
26
|
fontFamily: "Font family",
|
|
25
27
|
fontFamilyPlaceholder: "App default (system stack)",
|
|
26
28
|
fontFamilyHint: "Leave empty for the app default system stack.",
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
system: "System",
|
|
30
|
+
infoTitle: "Plugin info",
|
|
31
|
+
infoAria: "Plugin info",
|
|
32
|
+
infoTooltip: "Plugin, resource and hook details",
|
|
33
|
+
infoDescription: "Details for the mounted plugin and the selected resource.",
|
|
34
|
+
sectionPlugin: "Plugin",
|
|
35
|
+
sectionResource: "Resource",
|
|
36
|
+
sectionHook: "Hooks",
|
|
37
|
+
sectionCapabilities: "Capabilities",
|
|
38
|
+
pluginName: "Name",
|
|
39
|
+
pluginId: "ID",
|
|
40
|
+
permissionDownload: "Download",
|
|
41
|
+
resourceName: "Name",
|
|
42
|
+
resourceId: "ID",
|
|
43
|
+
contentPlugin: "Content plugin",
|
|
44
|
+
hookDetect: "Detect",
|
|
45
|
+
hookFiles: "Files",
|
|
46
|
+
hookCover: "Cover",
|
|
47
|
+
hookHashes: "Hashes",
|
|
48
|
+
hookProvided: "provided",
|
|
49
|
+
hookFailed: "failed",
|
|
50
|
+
hookOk: "ok",
|
|
51
|
+
hookMiss: "miss",
|
|
52
|
+
hookMissReasons: "miss ({{reasons}})",
|
|
53
|
+
emptyHookSnapshot: "No hook snapshot",
|
|
54
|
+
capPreview: "Preview render",
|
|
55
|
+
capFrame: "Frame render",
|
|
56
|
+
yes: "Yes",
|
|
57
|
+
no: "No"
|
|
32
58
|
};
|
|
33
|
-
var
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
small: "Small",
|
|
38
|
-
wide: "Wide"
|
|
59
|
+
var mode = {
|
|
60
|
+
bare: "Bare",
|
|
61
|
+
desktop: "Desktop",
|
|
62
|
+
mobile: "Mobile"
|
|
39
63
|
};
|
|
40
64
|
var app = {
|
|
41
65
|
loading: "loading…",
|
|
@@ -46,7 +70,7 @@ var app = {
|
|
|
46
70
|
var en = {
|
|
47
71
|
toolbar: toolbar,
|
|
48
72
|
popover: popover,
|
|
49
|
-
|
|
73
|
+
mode: mode,
|
|
50
74
|
app: app
|
|
51
75
|
};
|
|
52
76
|
|
|
@@ -65,6 +89,8 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
65
89
|
reloadAria: string;
|
|
66
90
|
reloadHint: string;
|
|
67
91
|
resource: string;
|
|
92
|
+
enterFullscreen: string;
|
|
93
|
+
exitFullscreen: string;
|
|
68
94
|
};
|
|
69
95
|
popover: {
|
|
70
96
|
configure: string;
|
|
@@ -76,7 +102,7 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
76
102
|
sectionIcons: string;
|
|
77
103
|
sectionLanguage: string;
|
|
78
104
|
sectionFont: string;
|
|
79
|
-
|
|
105
|
+
sectionPresentation: string;
|
|
80
106
|
mode: string;
|
|
81
107
|
palette: string;
|
|
82
108
|
style: string;
|
|
@@ -84,18 +110,40 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
84
110
|
fontFamily: string;
|
|
85
111
|
fontFamilyPlaceholder: string;
|
|
86
112
|
fontFamilyHint: string;
|
|
87
|
-
size: string;
|
|
88
|
-
viewportWidth: string;
|
|
89
|
-
viewportHeight: string;
|
|
90
|
-
custom: string;
|
|
91
113
|
system: string;
|
|
114
|
+
infoTitle: string;
|
|
115
|
+
infoAria: string;
|
|
116
|
+
infoTooltip: string;
|
|
117
|
+
infoDescription: string;
|
|
118
|
+
sectionPlugin: string;
|
|
119
|
+
sectionResource: string;
|
|
120
|
+
sectionHook: string;
|
|
121
|
+
sectionCapabilities: string;
|
|
122
|
+
pluginName: string;
|
|
123
|
+
pluginId: string;
|
|
124
|
+
permissionDownload: string;
|
|
125
|
+
resourceName: string;
|
|
126
|
+
resourceId: string;
|
|
127
|
+
contentPlugin: string;
|
|
128
|
+
hookDetect: string;
|
|
129
|
+
hookFiles: string;
|
|
130
|
+
hookCover: string;
|
|
131
|
+
hookHashes: string;
|
|
132
|
+
hookProvided: string;
|
|
133
|
+
hookFailed: string;
|
|
134
|
+
hookOk: string;
|
|
135
|
+
hookMiss: string;
|
|
136
|
+
hookMissReasons: string;
|
|
137
|
+
emptyHookSnapshot: string;
|
|
138
|
+
capPreview: string;
|
|
139
|
+
capFrame: string;
|
|
140
|
+
yes: string;
|
|
141
|
+
no: string;
|
|
92
142
|
};
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
small: string;
|
|
98
|
-
wide: string;
|
|
143
|
+
mode: {
|
|
144
|
+
bare: string;
|
|
145
|
+
desktop: string;
|
|
146
|
+
mobile: string;
|
|
99
147
|
};
|
|
100
148
|
app: {
|
|
101
149
|
loading: string;
|
|
@@ -110,6 +158,8 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
110
158
|
reloadAria: string;
|
|
111
159
|
reloadHint: string;
|
|
112
160
|
resource: string;
|
|
161
|
+
enterFullscreen: string;
|
|
162
|
+
exitFullscreen: string;
|
|
113
163
|
};
|
|
114
164
|
popover: {
|
|
115
165
|
configure: string;
|
|
@@ -121,7 +171,7 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
121
171
|
sectionIcons: string;
|
|
122
172
|
sectionLanguage: string;
|
|
123
173
|
sectionFont: string;
|
|
124
|
-
|
|
174
|
+
sectionPresentation: string;
|
|
125
175
|
mode: string;
|
|
126
176
|
palette: string;
|
|
127
177
|
style: string;
|
|
@@ -129,18 +179,40 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
129
179
|
fontFamily: string;
|
|
130
180
|
fontFamilyPlaceholder: string;
|
|
131
181
|
fontFamilyHint: string;
|
|
132
|
-
size: string;
|
|
133
|
-
viewportWidth: string;
|
|
134
|
-
viewportHeight: string;
|
|
135
|
-
custom: string;
|
|
136
182
|
system: string;
|
|
183
|
+
infoTitle: string;
|
|
184
|
+
infoAria: string;
|
|
185
|
+
infoTooltip: string;
|
|
186
|
+
infoDescription: string;
|
|
187
|
+
sectionPlugin: string;
|
|
188
|
+
sectionResource: string;
|
|
189
|
+
sectionHook: string;
|
|
190
|
+
sectionCapabilities: string;
|
|
191
|
+
pluginName: string;
|
|
192
|
+
pluginId: string;
|
|
193
|
+
permissionDownload: string;
|
|
194
|
+
resourceName: string;
|
|
195
|
+
resourceId: string;
|
|
196
|
+
contentPlugin: string;
|
|
197
|
+
hookDetect: string;
|
|
198
|
+
hookFiles: string;
|
|
199
|
+
hookCover: string;
|
|
200
|
+
hookHashes: string;
|
|
201
|
+
hookProvided: string;
|
|
202
|
+
hookFailed: string;
|
|
203
|
+
hookOk: string;
|
|
204
|
+
hookMiss: string;
|
|
205
|
+
hookMissReasons: string;
|
|
206
|
+
emptyHookSnapshot: string;
|
|
207
|
+
capPreview: string;
|
|
208
|
+
capFrame: string;
|
|
209
|
+
yes: string;
|
|
210
|
+
no: string;
|
|
137
211
|
};
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
small: string;
|
|
143
|
-
wide: string;
|
|
212
|
+
mode: {
|
|
213
|
+
bare: string;
|
|
214
|
+
desktop: string;
|
|
215
|
+
mobile: string;
|
|
144
216
|
};
|
|
145
217
|
app: {
|
|
146
218
|
loading: string;
|
|
@@ -155,6 +227,8 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
155
227
|
reloadAria: string;
|
|
156
228
|
reloadHint: string;
|
|
157
229
|
resource: string;
|
|
230
|
+
enterFullscreen: string;
|
|
231
|
+
exitFullscreen: string;
|
|
158
232
|
};
|
|
159
233
|
popover: {
|
|
160
234
|
configure: string;
|
|
@@ -166,7 +240,7 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
166
240
|
sectionIcons: string;
|
|
167
241
|
sectionLanguage: string;
|
|
168
242
|
sectionFont: string;
|
|
169
|
-
|
|
243
|
+
sectionPresentation: string;
|
|
170
244
|
mode: string;
|
|
171
245
|
palette: string;
|
|
172
246
|
style: string;
|
|
@@ -174,18 +248,40 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
174
248
|
fontFamily: string;
|
|
175
249
|
fontFamilyPlaceholder: string;
|
|
176
250
|
fontFamilyHint: string;
|
|
177
|
-
size: string;
|
|
178
|
-
viewportWidth: string;
|
|
179
|
-
viewportHeight: string;
|
|
180
|
-
custom: string;
|
|
181
251
|
system: string;
|
|
252
|
+
infoTitle: string;
|
|
253
|
+
infoAria: string;
|
|
254
|
+
infoTooltip: string;
|
|
255
|
+
infoDescription: string;
|
|
256
|
+
sectionPlugin: string;
|
|
257
|
+
sectionResource: string;
|
|
258
|
+
sectionHook: string;
|
|
259
|
+
sectionCapabilities: string;
|
|
260
|
+
pluginName: string;
|
|
261
|
+
pluginId: string;
|
|
262
|
+
permissionDownload: string;
|
|
263
|
+
resourceName: string;
|
|
264
|
+
resourceId: string;
|
|
265
|
+
contentPlugin: string;
|
|
266
|
+
hookDetect: string;
|
|
267
|
+
hookFiles: string;
|
|
268
|
+
hookCover: string;
|
|
269
|
+
hookHashes: string;
|
|
270
|
+
hookProvided: string;
|
|
271
|
+
hookFailed: string;
|
|
272
|
+
hookOk: string;
|
|
273
|
+
hookMiss: string;
|
|
274
|
+
hookMissReasons: string;
|
|
275
|
+
emptyHookSnapshot: string;
|
|
276
|
+
capPreview: string;
|
|
277
|
+
capFrame: string;
|
|
278
|
+
yes: string;
|
|
279
|
+
no: string;
|
|
182
280
|
};
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
small: string;
|
|
188
|
-
wide: string;
|
|
281
|
+
mode: {
|
|
282
|
+
bare: string;
|
|
283
|
+
desktop: string;
|
|
284
|
+
mobile: string;
|
|
189
285
|
};
|
|
190
286
|
app: {
|
|
191
287
|
loading: string;
|
|
@@ -200,6 +296,8 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
200
296
|
reloadAria: string;
|
|
201
297
|
reloadHint: string;
|
|
202
298
|
resource: string;
|
|
299
|
+
enterFullscreen: string;
|
|
300
|
+
exitFullscreen: string;
|
|
203
301
|
};
|
|
204
302
|
popover: {
|
|
205
303
|
configure: string;
|
|
@@ -211,7 +309,7 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
211
309
|
sectionIcons: string;
|
|
212
310
|
sectionLanguage: string;
|
|
213
311
|
sectionFont: string;
|
|
214
|
-
|
|
312
|
+
sectionPresentation: string;
|
|
215
313
|
mode: string;
|
|
216
314
|
palette: string;
|
|
217
315
|
style: string;
|
|
@@ -219,18 +317,40 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
219
317
|
fontFamily: string;
|
|
220
318
|
fontFamilyPlaceholder: string;
|
|
221
319
|
fontFamilyHint: string;
|
|
222
|
-
size: string;
|
|
223
|
-
viewportWidth: string;
|
|
224
|
-
viewportHeight: string;
|
|
225
|
-
custom: string;
|
|
226
320
|
system: string;
|
|
321
|
+
infoTitle: string;
|
|
322
|
+
infoAria: string;
|
|
323
|
+
infoTooltip: string;
|
|
324
|
+
infoDescription: string;
|
|
325
|
+
sectionPlugin: string;
|
|
326
|
+
sectionResource: string;
|
|
327
|
+
sectionHook: string;
|
|
328
|
+
sectionCapabilities: string;
|
|
329
|
+
pluginName: string;
|
|
330
|
+
pluginId: string;
|
|
331
|
+
permissionDownload: string;
|
|
332
|
+
resourceName: string;
|
|
333
|
+
resourceId: string;
|
|
334
|
+
contentPlugin: string;
|
|
335
|
+
hookDetect: string;
|
|
336
|
+
hookFiles: string;
|
|
337
|
+
hookCover: string;
|
|
338
|
+
hookHashes: string;
|
|
339
|
+
hookProvided: string;
|
|
340
|
+
hookFailed: string;
|
|
341
|
+
hookOk: string;
|
|
342
|
+
hookMiss: string;
|
|
343
|
+
hookMissReasons: string;
|
|
344
|
+
emptyHookSnapshot: string;
|
|
345
|
+
capPreview: string;
|
|
346
|
+
capFrame: string;
|
|
347
|
+
yes: string;
|
|
348
|
+
no: string;
|
|
227
349
|
};
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
small: string;
|
|
233
|
-
wide: string;
|
|
350
|
+
mode: {
|
|
351
|
+
bare: string;
|
|
352
|
+
desktop: string;
|
|
353
|
+
mobile: string;
|
|
234
354
|
};
|
|
235
355
|
app: {
|
|
236
356
|
loading: string;
|
|
@@ -245,6 +365,8 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
245
365
|
reloadAria: string;
|
|
246
366
|
reloadHint: string;
|
|
247
367
|
resource: string;
|
|
368
|
+
enterFullscreen: string;
|
|
369
|
+
exitFullscreen: string;
|
|
248
370
|
};
|
|
249
371
|
popover: {
|
|
250
372
|
configure: string;
|
|
@@ -256,7 +378,7 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
256
378
|
sectionIcons: string;
|
|
257
379
|
sectionLanguage: string;
|
|
258
380
|
sectionFont: string;
|
|
259
|
-
|
|
381
|
+
sectionPresentation: string;
|
|
260
382
|
mode: string;
|
|
261
383
|
palette: string;
|
|
262
384
|
style: string;
|
|
@@ -264,18 +386,40 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
264
386
|
fontFamily: string;
|
|
265
387
|
fontFamilyPlaceholder: string;
|
|
266
388
|
fontFamilyHint: string;
|
|
267
|
-
size: string;
|
|
268
|
-
viewportWidth: string;
|
|
269
|
-
viewportHeight: string;
|
|
270
|
-
custom: string;
|
|
271
389
|
system: string;
|
|
390
|
+
infoTitle: string;
|
|
391
|
+
infoAria: string;
|
|
392
|
+
infoTooltip: string;
|
|
393
|
+
infoDescription: string;
|
|
394
|
+
sectionPlugin: string;
|
|
395
|
+
sectionResource: string;
|
|
396
|
+
sectionHook: string;
|
|
397
|
+
sectionCapabilities: string;
|
|
398
|
+
pluginName: string;
|
|
399
|
+
pluginId: string;
|
|
400
|
+
permissionDownload: string;
|
|
401
|
+
resourceName: string;
|
|
402
|
+
resourceId: string;
|
|
403
|
+
contentPlugin: string;
|
|
404
|
+
hookDetect: string;
|
|
405
|
+
hookFiles: string;
|
|
406
|
+
hookCover: string;
|
|
407
|
+
hookHashes: string;
|
|
408
|
+
hookProvided: string;
|
|
409
|
+
hookFailed: string;
|
|
410
|
+
hookOk: string;
|
|
411
|
+
hookMiss: string;
|
|
412
|
+
hookMissReasons: string;
|
|
413
|
+
emptyHookSnapshot: string;
|
|
414
|
+
capPreview: string;
|
|
415
|
+
capFrame: string;
|
|
416
|
+
yes: string;
|
|
417
|
+
no: string;
|
|
272
418
|
};
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
small: string;
|
|
278
|
-
wide: string;
|
|
419
|
+
mode: {
|
|
420
|
+
bare: string;
|
|
421
|
+
desktop: string;
|
|
422
|
+
mobile: string;
|
|
279
423
|
};
|
|
280
424
|
app: {
|
|
281
425
|
loading: string;
|