@hoardodile/i18n 0.1.5 → 0.1.7
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 +139 -1
- package/dist/catalogs/workbench.js +120 -5
- package/dist/catalogs/workbench.js.map +1 -1
- package/dist/{catalogs-DkcPbpdW.d.ts → catalogs-CfJSusJy.d.ts} +18 -18
- package/dist/catalogs.d.ts +1 -1
- package/dist/catalogs.js +15 -15
- package/dist/catalogs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/catalogs/de.json +3 -3
- package/src/catalogs/en.json +3 -3
- package/src/catalogs/es.json +3 -3
- package/src/catalogs/ja.json +3 -3
- package/src/catalogs/zh.json +3 -3
- package/src/workbench/de.json +24 -1
- package/src/workbench/en.json +24 -1
- package/src/workbench/es.json +24 -1
- package/src/workbench/ja.json +24 -1
- package/src/workbench/zh.json +24 -1
|
@@ -5,8 +5,13 @@ var toolbar = {
|
|
|
5
5
|
reloadAria: "Reload plugin",
|
|
6
6
|
reloadHint: "Reload — re-mount with the current build",
|
|
7
7
|
resource: "Resource",
|
|
8
|
+
cardPreviewAria: "Preview resource card",
|
|
9
|
+
cardPreviewHint: "Simulated res card — cover, card templates and metadata",
|
|
8
10
|
enterFullscreen: "Enter fullscreen",
|
|
9
|
-
exitFullscreen: "Exit fullscreen"
|
|
11
|
+
exitFullscreen: "Exit fullscreen",
|
|
12
|
+
card: "Card",
|
|
13
|
+
settings: "Settings",
|
|
14
|
+
info: "Info"
|
|
10
15
|
};
|
|
11
16
|
var popover = {
|
|
12
17
|
configure: "Configure",
|
|
@@ -26,6 +31,21 @@ var popover = {
|
|
|
26
31
|
fontFamily: "Font family",
|
|
27
32
|
fontFamilyPlaceholder: "App default (system stack)",
|
|
28
33
|
fontFamilyHint: "Leave empty for the app default system stack.",
|
|
34
|
+
sectionPluginState: "Plugin state",
|
|
35
|
+
pluginStateHint: "Reset the plugin's own stored settings and cache for this session — live edits stay read-only.",
|
|
36
|
+
columnSettings: "Settings",
|
|
37
|
+
columnCache: "Cache",
|
|
38
|
+
resetPrefs: "Reset settings",
|
|
39
|
+
clearCache: "Clear cache",
|
|
40
|
+
restoreState: "Restore from library",
|
|
41
|
+
resetPrefsConfirmTitle: "Reset plugin settings?",
|
|
42
|
+
resetPrefsConfirmDescription: "The plugin will see empty settings until you restore them.",
|
|
43
|
+
clearCacheConfirmTitle: "Clear plugin cache?",
|
|
44
|
+
clearCacheConfirmDescription: "The plugin's cache for this resource will be emptied until you restore it.",
|
|
45
|
+
reset: "Reset",
|
|
46
|
+
clear: "Clear",
|
|
47
|
+
prefsCleared: "cleared",
|
|
48
|
+
cacheCleared: "cleared",
|
|
29
49
|
system: "System",
|
|
30
50
|
infoTitle: "Plugin info",
|
|
31
51
|
infoAria: "Plugin info",
|
|
@@ -53,6 +73,9 @@ var popover = {
|
|
|
53
73
|
emptyHookSnapshot: "No hook snapshot",
|
|
54
74
|
capPreview: "Preview render",
|
|
55
75
|
capFrame: "Frame render",
|
|
76
|
+
capCover: "Cover render",
|
|
77
|
+
cardPreviewTitle: "Resource card",
|
|
78
|
+
cardPreviewDescription: "How the resource renders as a res card — cover, card templates and metadata.",
|
|
56
79
|
yes: "Yes",
|
|
57
80
|
no: "No"
|
|
58
81
|
};
|
|
@@ -89,8 +112,13 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
89
112
|
reloadAria: string;
|
|
90
113
|
reloadHint: string;
|
|
91
114
|
resource: string;
|
|
115
|
+
cardPreviewAria: string;
|
|
116
|
+
cardPreviewHint: string;
|
|
92
117
|
enterFullscreen: string;
|
|
93
118
|
exitFullscreen: string;
|
|
119
|
+
card: string;
|
|
120
|
+
settings: string;
|
|
121
|
+
info: string;
|
|
94
122
|
};
|
|
95
123
|
popover: {
|
|
96
124
|
configure: string;
|
|
@@ -110,6 +138,21 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
110
138
|
fontFamily: string;
|
|
111
139
|
fontFamilyPlaceholder: string;
|
|
112
140
|
fontFamilyHint: string;
|
|
141
|
+
sectionPluginState: string;
|
|
142
|
+
pluginStateHint: string;
|
|
143
|
+
columnSettings: string;
|
|
144
|
+
columnCache: string;
|
|
145
|
+
resetPrefs: string;
|
|
146
|
+
clearCache: string;
|
|
147
|
+
restoreState: string;
|
|
148
|
+
resetPrefsConfirmTitle: string;
|
|
149
|
+
resetPrefsConfirmDescription: string;
|
|
150
|
+
clearCacheConfirmTitle: string;
|
|
151
|
+
clearCacheConfirmDescription: string;
|
|
152
|
+
reset: string;
|
|
153
|
+
clear: string;
|
|
154
|
+
prefsCleared: string;
|
|
155
|
+
cacheCleared: string;
|
|
113
156
|
system: string;
|
|
114
157
|
infoTitle: string;
|
|
115
158
|
infoAria: string;
|
|
@@ -137,6 +180,9 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
137
180
|
emptyHookSnapshot: string;
|
|
138
181
|
capPreview: string;
|
|
139
182
|
capFrame: string;
|
|
183
|
+
capCover: string;
|
|
184
|
+
cardPreviewTitle: string;
|
|
185
|
+
cardPreviewDescription: string;
|
|
140
186
|
yes: string;
|
|
141
187
|
no: string;
|
|
142
188
|
};
|
|
@@ -158,8 +204,13 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
158
204
|
reloadAria: string;
|
|
159
205
|
reloadHint: string;
|
|
160
206
|
resource: string;
|
|
207
|
+
cardPreviewAria: string;
|
|
208
|
+
cardPreviewHint: string;
|
|
161
209
|
enterFullscreen: string;
|
|
162
210
|
exitFullscreen: string;
|
|
211
|
+
card: string;
|
|
212
|
+
settings: string;
|
|
213
|
+
info: string;
|
|
163
214
|
};
|
|
164
215
|
popover: {
|
|
165
216
|
configure: string;
|
|
@@ -179,6 +230,21 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
179
230
|
fontFamily: string;
|
|
180
231
|
fontFamilyPlaceholder: string;
|
|
181
232
|
fontFamilyHint: string;
|
|
233
|
+
sectionPluginState: string;
|
|
234
|
+
pluginStateHint: string;
|
|
235
|
+
columnSettings: string;
|
|
236
|
+
columnCache: string;
|
|
237
|
+
resetPrefs: string;
|
|
238
|
+
clearCache: string;
|
|
239
|
+
restoreState: string;
|
|
240
|
+
resetPrefsConfirmTitle: string;
|
|
241
|
+
resetPrefsConfirmDescription: string;
|
|
242
|
+
clearCacheConfirmTitle: string;
|
|
243
|
+
clearCacheConfirmDescription: string;
|
|
244
|
+
reset: string;
|
|
245
|
+
clear: string;
|
|
246
|
+
prefsCleared: string;
|
|
247
|
+
cacheCleared: string;
|
|
182
248
|
system: string;
|
|
183
249
|
infoTitle: string;
|
|
184
250
|
infoAria: string;
|
|
@@ -206,6 +272,9 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
206
272
|
emptyHookSnapshot: string;
|
|
207
273
|
capPreview: string;
|
|
208
274
|
capFrame: string;
|
|
275
|
+
capCover: string;
|
|
276
|
+
cardPreviewTitle: string;
|
|
277
|
+
cardPreviewDescription: string;
|
|
209
278
|
yes: string;
|
|
210
279
|
no: string;
|
|
211
280
|
};
|
|
@@ -227,8 +296,13 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
227
296
|
reloadAria: string;
|
|
228
297
|
reloadHint: string;
|
|
229
298
|
resource: string;
|
|
299
|
+
cardPreviewAria: string;
|
|
300
|
+
cardPreviewHint: string;
|
|
230
301
|
enterFullscreen: string;
|
|
231
302
|
exitFullscreen: string;
|
|
303
|
+
card: string;
|
|
304
|
+
settings: string;
|
|
305
|
+
info: string;
|
|
232
306
|
};
|
|
233
307
|
popover: {
|
|
234
308
|
configure: string;
|
|
@@ -248,6 +322,21 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
248
322
|
fontFamily: string;
|
|
249
323
|
fontFamilyPlaceholder: string;
|
|
250
324
|
fontFamilyHint: string;
|
|
325
|
+
sectionPluginState: string;
|
|
326
|
+
pluginStateHint: string;
|
|
327
|
+
columnSettings: string;
|
|
328
|
+
columnCache: string;
|
|
329
|
+
resetPrefs: string;
|
|
330
|
+
clearCache: string;
|
|
331
|
+
restoreState: string;
|
|
332
|
+
resetPrefsConfirmTitle: string;
|
|
333
|
+
resetPrefsConfirmDescription: string;
|
|
334
|
+
clearCacheConfirmTitle: string;
|
|
335
|
+
clearCacheConfirmDescription: string;
|
|
336
|
+
reset: string;
|
|
337
|
+
clear: string;
|
|
338
|
+
prefsCleared: string;
|
|
339
|
+
cacheCleared: string;
|
|
251
340
|
system: string;
|
|
252
341
|
infoTitle: string;
|
|
253
342
|
infoAria: string;
|
|
@@ -275,6 +364,9 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
275
364
|
emptyHookSnapshot: string;
|
|
276
365
|
capPreview: string;
|
|
277
366
|
capFrame: string;
|
|
367
|
+
capCover: string;
|
|
368
|
+
cardPreviewTitle: string;
|
|
369
|
+
cardPreviewDescription: string;
|
|
278
370
|
yes: string;
|
|
279
371
|
no: string;
|
|
280
372
|
};
|
|
@@ -296,8 +388,13 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
296
388
|
reloadAria: string;
|
|
297
389
|
reloadHint: string;
|
|
298
390
|
resource: string;
|
|
391
|
+
cardPreviewAria: string;
|
|
392
|
+
cardPreviewHint: string;
|
|
299
393
|
enterFullscreen: string;
|
|
300
394
|
exitFullscreen: string;
|
|
395
|
+
card: string;
|
|
396
|
+
settings: string;
|
|
397
|
+
info: string;
|
|
301
398
|
};
|
|
302
399
|
popover: {
|
|
303
400
|
configure: string;
|
|
@@ -317,6 +414,21 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
317
414
|
fontFamily: string;
|
|
318
415
|
fontFamilyPlaceholder: string;
|
|
319
416
|
fontFamilyHint: string;
|
|
417
|
+
sectionPluginState: string;
|
|
418
|
+
pluginStateHint: string;
|
|
419
|
+
columnSettings: string;
|
|
420
|
+
columnCache: string;
|
|
421
|
+
resetPrefs: string;
|
|
422
|
+
clearCache: string;
|
|
423
|
+
restoreState: string;
|
|
424
|
+
resetPrefsConfirmTitle: string;
|
|
425
|
+
resetPrefsConfirmDescription: string;
|
|
426
|
+
clearCacheConfirmTitle: string;
|
|
427
|
+
clearCacheConfirmDescription: string;
|
|
428
|
+
reset: string;
|
|
429
|
+
clear: string;
|
|
430
|
+
prefsCleared: string;
|
|
431
|
+
cacheCleared: string;
|
|
320
432
|
system: string;
|
|
321
433
|
infoTitle: string;
|
|
322
434
|
infoAria: string;
|
|
@@ -344,6 +456,9 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
344
456
|
emptyHookSnapshot: string;
|
|
345
457
|
capPreview: string;
|
|
346
458
|
capFrame: string;
|
|
459
|
+
capCover: string;
|
|
460
|
+
cardPreviewTitle: string;
|
|
461
|
+
cardPreviewDescription: string;
|
|
347
462
|
yes: string;
|
|
348
463
|
no: string;
|
|
349
464
|
};
|
|
@@ -365,8 +480,13 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
365
480
|
reloadAria: string;
|
|
366
481
|
reloadHint: string;
|
|
367
482
|
resource: string;
|
|
483
|
+
cardPreviewAria: string;
|
|
484
|
+
cardPreviewHint: string;
|
|
368
485
|
enterFullscreen: string;
|
|
369
486
|
exitFullscreen: string;
|
|
487
|
+
card: string;
|
|
488
|
+
settings: string;
|
|
489
|
+
info: string;
|
|
370
490
|
};
|
|
371
491
|
popover: {
|
|
372
492
|
configure: string;
|
|
@@ -386,6 +506,21 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
386
506
|
fontFamily: string;
|
|
387
507
|
fontFamilyPlaceholder: string;
|
|
388
508
|
fontFamilyHint: string;
|
|
509
|
+
sectionPluginState: string;
|
|
510
|
+
pluginStateHint: string;
|
|
511
|
+
columnSettings: string;
|
|
512
|
+
columnCache: string;
|
|
513
|
+
resetPrefs: string;
|
|
514
|
+
clearCache: string;
|
|
515
|
+
restoreState: string;
|
|
516
|
+
resetPrefsConfirmTitle: string;
|
|
517
|
+
resetPrefsConfirmDescription: string;
|
|
518
|
+
clearCacheConfirmTitle: string;
|
|
519
|
+
clearCacheConfirmDescription: string;
|
|
520
|
+
reset: string;
|
|
521
|
+
clear: string;
|
|
522
|
+
prefsCleared: string;
|
|
523
|
+
cacheCleared: string;
|
|
389
524
|
system: string;
|
|
390
525
|
infoTitle: string;
|
|
391
526
|
infoAria: string;
|
|
@@ -413,6 +548,9 @@ declare const WORKBENCH_CATALOGS: {
|
|
|
413
548
|
emptyHookSnapshot: string;
|
|
414
549
|
capPreview: string;
|
|
415
550
|
capFrame: string;
|
|
551
|
+
capCover: string;
|
|
552
|
+
cardPreviewTitle: string;
|
|
553
|
+
cardPreviewDescription: string;
|
|
416
554
|
yes: string;
|
|
417
555
|
no: string;
|
|
418
556
|
};
|
|
@@ -5,8 +5,13 @@ var de_default = {
|
|
|
5
5
|
reloadAria: "Plugin neu laden",
|
|
6
6
|
reloadHint: "Neu laden \u2014 mit dem aktuellen Build neu einbinden",
|
|
7
7
|
resource: "Ressource",
|
|
8
|
+
cardPreviewAria: "Ressourcen-Karte anzeigen",
|
|
9
|
+
cardPreviewHint: "Simulierte res card \u2014 Cover, Kartentemplates und Metadaten",
|
|
8
10
|
enterFullscreen: "Vollbild aktivieren",
|
|
9
|
-
exitFullscreen: "Vollbild beenden"
|
|
11
|
+
exitFullscreen: "Vollbild beenden",
|
|
12
|
+
card: "Karte",
|
|
13
|
+
settings: "Einstellungen",
|
|
14
|
+
info: "Info"
|
|
10
15
|
},
|
|
11
16
|
popover: {
|
|
12
17
|
configure: "Konfigurieren",
|
|
@@ -26,6 +31,21 @@ var de_default = {
|
|
|
26
31
|
fontFamily: "Schriftfamilie",
|
|
27
32
|
fontFamilyPlaceholder: "App-Standard (System-Schriftstapel)",
|
|
28
33
|
fontFamilyHint: "Leer lassen f\xFCr den App-Standard-System-Schriftstapel.",
|
|
34
|
+
sectionPluginState: "Plugin-Zustand",
|
|
35
|
+
pluginStateHint: "Setzt die vom Plugin gespeicherten Einstellungen und den Cache f\xFCr diese Sitzung zur\xFCck \u2014 Live-\xC4nderungen bleiben schreibgesch\xFCtzt.",
|
|
36
|
+
columnSettings: "Einstellungen",
|
|
37
|
+
columnCache: "Cache",
|
|
38
|
+
resetPrefs: "Einstellungen zur\xFCcksetzen",
|
|
39
|
+
clearCache: "Cache leeren",
|
|
40
|
+
restoreState: "Aus der Bibliothek wiederherstellen",
|
|
41
|
+
resetPrefsConfirmTitle: "Plugin-Einstellungen zur\xFCcksetzen?",
|
|
42
|
+
resetPrefsConfirmDescription: "Das Plugin sieht leere Einstellungen, bis Sie sie wiederherstellen.",
|
|
43
|
+
clearCacheConfirmTitle: "Plugin-Cache leeren?",
|
|
44
|
+
clearCacheConfirmDescription: "Der Cache dieses Plugins f\xFCr diese Ressource wird geleert, bis Sie ihn wiederherstellen.",
|
|
45
|
+
reset: "Zur\xFCcksetzen",
|
|
46
|
+
clear: "Leeren",
|
|
47
|
+
prefsCleared: "geleert",
|
|
48
|
+
cacheCleared: "geleert",
|
|
29
49
|
system: "System",
|
|
30
50
|
infoTitle: "Plugin-Info",
|
|
31
51
|
infoAria: "Plugin-Info",
|
|
@@ -53,6 +73,9 @@ var de_default = {
|
|
|
53
73
|
emptyHookSnapshot: "Kein Hook-Snapshot",
|
|
54
74
|
capPreview: "Vorschau-Rendering",
|
|
55
75
|
capFrame: "Frame-Rendering",
|
|
76
|
+
capCover: "Cover-Rendering",
|
|
77
|
+
cardPreviewTitle: "Ressourcen-Karte",
|
|
78
|
+
cardPreviewDescription: "Wie die Ressource als res card dargestellt wird \u2014 Cover, Kartentemplates und Metadaten.",
|
|
56
79
|
yes: "Ja",
|
|
57
80
|
no: "Nein"
|
|
58
81
|
},
|
|
@@ -76,8 +99,13 @@ var en_default = {
|
|
|
76
99
|
reloadAria: "Reload plugin",
|
|
77
100
|
reloadHint: "Reload \u2014 re-mount with the current build",
|
|
78
101
|
resource: "Resource",
|
|
102
|
+
cardPreviewAria: "Preview resource card",
|
|
103
|
+
cardPreviewHint: "Simulated res card \u2014 cover, card templates and metadata",
|
|
79
104
|
enterFullscreen: "Enter fullscreen",
|
|
80
|
-
exitFullscreen: "Exit fullscreen"
|
|
105
|
+
exitFullscreen: "Exit fullscreen",
|
|
106
|
+
card: "Card",
|
|
107
|
+
settings: "Settings",
|
|
108
|
+
info: "Info"
|
|
81
109
|
},
|
|
82
110
|
popover: {
|
|
83
111
|
configure: "Configure",
|
|
@@ -97,6 +125,21 @@ var en_default = {
|
|
|
97
125
|
fontFamily: "Font family",
|
|
98
126
|
fontFamilyPlaceholder: "App default (system stack)",
|
|
99
127
|
fontFamilyHint: "Leave empty for the app default system stack.",
|
|
128
|
+
sectionPluginState: "Plugin state",
|
|
129
|
+
pluginStateHint: "Reset the plugin's own stored settings and cache for this session \u2014 live edits stay read-only.",
|
|
130
|
+
columnSettings: "Settings",
|
|
131
|
+
columnCache: "Cache",
|
|
132
|
+
resetPrefs: "Reset settings",
|
|
133
|
+
clearCache: "Clear cache",
|
|
134
|
+
restoreState: "Restore from library",
|
|
135
|
+
resetPrefsConfirmTitle: "Reset plugin settings?",
|
|
136
|
+
resetPrefsConfirmDescription: "The plugin will see empty settings until you restore them.",
|
|
137
|
+
clearCacheConfirmTitle: "Clear plugin cache?",
|
|
138
|
+
clearCacheConfirmDescription: "The plugin's cache for this resource will be emptied until you restore it.",
|
|
139
|
+
reset: "Reset",
|
|
140
|
+
clear: "Clear",
|
|
141
|
+
prefsCleared: "cleared",
|
|
142
|
+
cacheCleared: "cleared",
|
|
100
143
|
system: "System",
|
|
101
144
|
infoTitle: "Plugin info",
|
|
102
145
|
infoAria: "Plugin info",
|
|
@@ -124,6 +167,9 @@ var en_default = {
|
|
|
124
167
|
emptyHookSnapshot: "No hook snapshot",
|
|
125
168
|
capPreview: "Preview render",
|
|
126
169
|
capFrame: "Frame render",
|
|
170
|
+
capCover: "Cover render",
|
|
171
|
+
cardPreviewTitle: "Resource card",
|
|
172
|
+
cardPreviewDescription: "How the resource renders as a res card \u2014 cover, card templates and metadata.",
|
|
127
173
|
yes: "Yes",
|
|
128
174
|
no: "No"
|
|
129
175
|
},
|
|
@@ -147,8 +193,13 @@ var es_default = {
|
|
|
147
193
|
reloadAria: "Recargar plugin",
|
|
148
194
|
reloadHint: "Recargar \u2014 volver a montar con la compilaci\xF3n actual",
|
|
149
195
|
resource: "Recurso",
|
|
196
|
+
cardPreviewAria: "Previsualizar tarjeta de recurso",
|
|
197
|
+
cardPreviewHint: "Res card simulada \u2014 portada, plantillas y metadatos",
|
|
150
198
|
enterFullscreen: "Entrar en pantalla completa",
|
|
151
|
-
exitFullscreen: "Salir de pantalla completa"
|
|
199
|
+
exitFullscreen: "Salir de pantalla completa",
|
|
200
|
+
card: "Tarjeta",
|
|
201
|
+
settings: "Ajustes",
|
|
202
|
+
info: "Info"
|
|
152
203
|
},
|
|
153
204
|
popover: {
|
|
154
205
|
configure: "Configurar",
|
|
@@ -168,6 +219,21 @@ var es_default = {
|
|
|
168
219
|
fontFamily: "Familia tipogr\xE1fica",
|
|
169
220
|
fontFamilyPlaceholder: "Predeterminado de la app (pila del sistema)",
|
|
170
221
|
fontFamilyHint: "D\xE9jalo vac\xEDo para la pila del sistema predeterminada de la app.",
|
|
222
|
+
sectionPluginState: "Estado del plugin",
|
|
223
|
+
pluginStateHint: "Restablece los ajustes y la cach\xE9 que guarda el plugin para esta sesi\xF3n \u2014 los cambios en vivo siguen siendo de solo lectura.",
|
|
224
|
+
columnSettings: "Ajustes",
|
|
225
|
+
columnCache: "Cach\xE9",
|
|
226
|
+
resetPrefs: "Restablecer ajustes",
|
|
227
|
+
clearCache: "Vaciar cach\xE9",
|
|
228
|
+
restoreState: "Restaurar desde la biblioteca",
|
|
229
|
+
resetPrefsConfirmTitle: "\xBFRestablecer los ajustes del plugin?",
|
|
230
|
+
resetPrefsConfirmDescription: "El plugin ver\xE1 ajustes vac\xEDos hasta que los restaures.",
|
|
231
|
+
clearCacheConfirmTitle: "\xBFVaciar la cach\xE9 del plugin?",
|
|
232
|
+
clearCacheConfirmDescription: "La cach\xE9 del plugin para este recurso se vaciar\xE1 hasta que la restaures.",
|
|
233
|
+
reset: "Restablecer",
|
|
234
|
+
clear: "Vaciar",
|
|
235
|
+
prefsCleared: "vac\xEDo",
|
|
236
|
+
cacheCleared: "vac\xEDo",
|
|
171
237
|
system: "Sistema",
|
|
172
238
|
infoTitle: "Informaci\xF3n del plugin",
|
|
173
239
|
infoAria: "Informaci\xF3n del plugin",
|
|
@@ -195,6 +261,9 @@ var es_default = {
|
|
|
195
261
|
emptyHookSnapshot: "Sin captura de hooks",
|
|
196
262
|
capPreview: "Render de vista previa",
|
|
197
263
|
capFrame: "Render de fotograma",
|
|
264
|
+
capCover: "Render de portada",
|
|
265
|
+
cardPreviewTitle: "Tarjeta de recurso",
|
|
266
|
+
cardPreviewDescription: "C\xF3mo se muestra el recurso como res card \u2014 portada, plantillas y metadatos.",
|
|
198
267
|
yes: "S\xED",
|
|
199
268
|
no: "No"
|
|
200
269
|
},
|
|
@@ -218,8 +287,13 @@ var ja_default = {
|
|
|
218
287
|
reloadAria: "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u518D\u8AAD\u307F\u8FBC\u307F",
|
|
219
288
|
reloadHint: "\u518D\u8AAD\u307F\u8FBC\u307F \u2014 \u73FE\u5728\u306E\u30D3\u30EB\u30C9\u3067\u518D\u30DE\u30A6\u30F3\u30C8",
|
|
220
289
|
resource: "\u30EA\u30BD\u30FC\u30B9",
|
|
290
|
+
cardPreviewAria: "\u30EA\u30BD\u30FC\u30B9\u30AB\u30FC\u30C9\u3092\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
291
|
+
cardPreviewHint: "res card \u3092\u30B7\u30DF\u30E5\u30EC\u30FC\u30C8 \u2014 \u8868\u7D19\u30FB\u30AB\u30FC\u30C9\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u30FB\u30E1\u30BF\u30C7\u30FC\u30BF",
|
|
221
292
|
enterFullscreen: "\u5168\u753B\u9762\u306B\u3059\u308B",
|
|
222
|
-
exitFullscreen: "\u5168\u753B\u9762\u3092\u7D42\u4E86"
|
|
293
|
+
exitFullscreen: "\u5168\u753B\u9762\u3092\u7D42\u4E86",
|
|
294
|
+
card: "\u30AB\u30FC\u30C9",
|
|
295
|
+
settings: "\u8A2D\u5B9A",
|
|
296
|
+
info: "\u60C5\u5831"
|
|
223
297
|
},
|
|
224
298
|
popover: {
|
|
225
299
|
configure: "\u8A2D\u5B9A",
|
|
@@ -239,6 +313,21 @@ var ja_default = {
|
|
|
239
313
|
fontFamily: "\u30D5\u30A9\u30F3\u30C8\u30D5\u30A1\u30DF\u30EA\u30FC",
|
|
240
314
|
fontFamilyPlaceholder: "\u30A2\u30D7\u30EA\u65E2\u5B9A\uFF08\u30B7\u30B9\u30C6\u30E0\u30D5\u30A9\u30F3\u30C8\uFF09",
|
|
241
315
|
fontFamilyHint: "\u7A7A\u6B04\u306A\u3089\u30A2\u30D7\u30EA\u65E2\u5B9A\u306E\u30B7\u30B9\u30C6\u30E0\u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002",
|
|
316
|
+
sectionPluginState: "\u30D7\u30E9\u30B0\u30A4\u30F3\u72B6\u614B",
|
|
317
|
+
pluginStateHint: "\u3053\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u30D7\u30E9\u30B0\u30A4\u30F3\u81EA\u8EAB\u306E\u4FDD\u5B58\u6E08\u307F\u8A2D\u5B9A\u3068\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u30EA\u30BB\u30C3\u30C8\u3057\u307E\u3059\u2014\u2014\u5B9F\u7DE8\u96C6\u306F\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u306E\u307E\u307E\u3067\u3059\u3002",
|
|
318
|
+
columnSettings: "\u8A2D\u5B9A",
|
|
319
|
+
columnCache: "\u30AD\u30E3\u30C3\u30B7\u30E5",
|
|
320
|
+
resetPrefs: "\u8A2D\u5B9A\u3092\u30EA\u30BB\u30C3\u30C8",
|
|
321
|
+
clearCache: "\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u30AF\u30EA\u30A2",
|
|
322
|
+
restoreState: "\u30E9\u30A4\u30D6\u30E9\u30EA\u304B\u3089\u5FA9\u5143",
|
|
323
|
+
resetPrefsConfirmTitle: "\u30D7\u30E9\u30B0\u30A4\u30F3\u8A2D\u5B9A\u3092\u30EA\u30BB\u30C3\u30C8\u3057\u307E\u3059\u304B\uFF1F",
|
|
324
|
+
resetPrefsConfirmDescription: "\u5FA9\u5143\u3059\u308B\u307E\u3067\u3001\u30D7\u30E9\u30B0\u30A4\u30F3\u306B\u306F\u7A7A\u306E\u8A2D\u5B9A\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002",
|
|
325
|
+
clearCacheConfirmTitle: "\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u3092\u30AF\u30EA\u30A2\u3057\u307E\u3059\u304B\uFF1F",
|
|
326
|
+
clearCacheConfirmDescription: "\u5FA9\u5143\u3059\u308B\u307E\u3067\u3001\u3053\u306E\u30EA\u30BD\u30FC\u30B9\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u30AD\u30E3\u30C3\u30B7\u30E5\u306F\u7A7A\u306B\u306A\u308A\u307E\u3059\u3002",
|
|
327
|
+
reset: "\u30EA\u30BB\u30C3\u30C8",
|
|
328
|
+
clear: "\u30AF\u30EA\u30A2",
|
|
329
|
+
prefsCleared: "\u30AF\u30EA\u30A2\u6E08\u307F",
|
|
330
|
+
cacheCleared: "\u30AF\u30EA\u30A2\u6E08\u307F",
|
|
242
331
|
system: "\u30B7\u30B9\u30C6\u30E0",
|
|
243
332
|
infoTitle: "\u30D7\u30E9\u30B0\u30A4\u30F3\u60C5\u5831",
|
|
244
333
|
infoAria: "\u30D7\u30E9\u30B0\u30A4\u30F3\u60C5\u5831",
|
|
@@ -266,6 +355,9 @@ var ja_default = {
|
|
|
266
355
|
emptyHookSnapshot: "\u30D5\u30C3\u30AF\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8\u306A\u3057",
|
|
267
356
|
capPreview: "\u30D7\u30EC\u30D3\u30E5\u30FC\u63CF\u753B",
|
|
268
357
|
capFrame: "\u30D5\u30EC\u30FC\u30E0\u63CF\u753B",
|
|
358
|
+
capCover: "\u8868\u7D19\u63CF\u753B",
|
|
359
|
+
cardPreviewTitle: "\u30EA\u30BD\u30FC\u30B9\u30AB\u30FC\u30C9",
|
|
360
|
+
cardPreviewDescription: "\u30EA\u30BD\u30FC\u30B9\u304C res card \u3068\u3057\u3066\u63CF\u753B\u3055\u308C\u308B\u69D8\u5B50 \u2014 \u8868\u7D19\u30FB\u30AB\u30FC\u30C9\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u30FB\u30E1\u30BF\u30C7\u30FC\u30BF\u3002",
|
|
269
361
|
yes: "\u306F\u3044",
|
|
270
362
|
no: "\u3044\u3044\u3048"
|
|
271
363
|
},
|
|
@@ -289,8 +381,13 @@ var zh_default = {
|
|
|
289
381
|
reloadAria: "\u91CD\u65B0\u52A0\u8F7D\u63D2\u4EF6",
|
|
290
382
|
reloadHint: "\u91CD\u65B0\u52A0\u8F7D\u2014\u2014\u7528\u5F53\u524D\u6784\u5EFA\u91CD\u65B0\u6302\u8F7D",
|
|
291
383
|
resource: "\u8D44\u6E90",
|
|
384
|
+
cardPreviewAria: "\u9884\u89C8\u8D44\u6E90\u5361\u7247",
|
|
385
|
+
cardPreviewHint: "\u6A21\u62DF res card\u2014\u2014\u5C01\u9762\u3001\u5361\u7247\u6A21\u677F\u4E0E\u5143\u6570\u636E",
|
|
292
386
|
enterFullscreen: "\u8FDB\u5165\u5168\u5C4F",
|
|
293
|
-
exitFullscreen: "\u9000\u51FA\u5168\u5C4F"
|
|
387
|
+
exitFullscreen: "\u9000\u51FA\u5168\u5C4F",
|
|
388
|
+
card: "\u5361\u7247",
|
|
389
|
+
settings: "\u8BBE\u7F6E",
|
|
390
|
+
info: "\u4FE1\u606F"
|
|
294
391
|
},
|
|
295
392
|
popover: {
|
|
296
393
|
configure: "\u914D\u7F6E",
|
|
@@ -310,6 +407,21 @@ var zh_default = {
|
|
|
310
407
|
fontFamily: "\u5B57\u4F53\u7CFB\u5217",
|
|
311
408
|
fontFamilyPlaceholder: "\u5E94\u7528\u9ED8\u8BA4\uFF08\u7CFB\u7EDF\u5B57\u4F53\u6808\uFF09",
|
|
312
409
|
fontFamilyHint: "\u7559\u7A7A\u5219\u4F7F\u7528\u5E94\u7528\u9ED8\u8BA4\u7684\u7CFB\u7EDF\u5B57\u4F53\u6808\u3002",
|
|
410
|
+
sectionPluginState: "\u63D2\u4EF6\u72B6\u6001",
|
|
411
|
+
pluginStateHint: "\u91CD\u7F6E\u63D2\u4EF6\u5728\u672C\u4F1A\u8BDD\u4E2D\u5B58\u50A8\u7684\u8BBE\u7F6E\u4E0E\u7F13\u5B58\u2014\u2014\u5B9E\u65F6\u7F16\u8F91\u4FDD\u6301\u53EA\u8BFB\u3002",
|
|
412
|
+
columnSettings: "\u8BBE\u7F6E",
|
|
413
|
+
columnCache: "\u7F13\u5B58",
|
|
414
|
+
resetPrefs: "\u91CD\u7F6E\u8BBE\u7F6E",
|
|
415
|
+
clearCache: "\u6E05\u7A7A\u7F13\u5B58",
|
|
416
|
+
restoreState: "\u4ECE\u8D44\u6599\u5E93\u6062\u590D",
|
|
417
|
+
resetPrefsConfirmTitle: "\u91CD\u7F6E\u63D2\u4EF6\u8BBE\u7F6E\uFF1F",
|
|
418
|
+
resetPrefsConfirmDescription: "\u63D2\u4EF6\u5C06\u770B\u5230\u7A7A\u7684\u8BBE\u7F6E\uFF0C\u76F4\u81F3\u60A8\u5C06\u5176\u6062\u590D\u3002",
|
|
419
|
+
clearCacheConfirmTitle: "\u6E05\u7A7A\u63D2\u4EF6\u7F13\u5B58\uFF1F",
|
|
420
|
+
clearCacheConfirmDescription: "\u8BE5\u8D44\u6E90\u5BF9\u5E94\u7684\u63D2\u4EF6\u7F13\u5B58\u5C06\u88AB\u6E05\u7A7A\uFF0C\u76F4\u81F3\u60A8\u5C06\u5176\u6062\u590D\u3002",
|
|
421
|
+
reset: "\u91CD\u7F6E",
|
|
422
|
+
clear: "\u6E05\u7A7A",
|
|
423
|
+
prefsCleared: "\u5DF2\u6E05\u7A7A",
|
|
424
|
+
cacheCleared: "\u5DF2\u6E05\u7A7A",
|
|
313
425
|
system: "\u7CFB\u7EDF",
|
|
314
426
|
infoTitle: "\u63D2\u4EF6\u4FE1\u606F",
|
|
315
427
|
infoAria: "\u63D2\u4EF6\u4FE1\u606F",
|
|
@@ -337,6 +449,9 @@ var zh_default = {
|
|
|
337
449
|
emptyHookSnapshot: "\u65E0\u6302\u94A9\u5FEB\u7167",
|
|
338
450
|
capPreview: "\u9884\u89C8\u6E32\u67D3",
|
|
339
451
|
capFrame: "\u5E27\u6E32\u67D3",
|
|
452
|
+
capCover: "\u5C01\u9762\u6E32\u67D3",
|
|
453
|
+
cardPreviewTitle: "\u8D44\u6E90\u5361\u7247",
|
|
454
|
+
cardPreviewDescription: "\u8D44\u6E90\u4F5C\u4E3A res card \u7684\u6E32\u67D3\u6548\u679C\u2014\u2014\u5C01\u9762\u3001\u5361\u7247\u6A21\u677F\u4E0E\u5143\u6570\u636E\u3002",
|
|
340
455
|
yes: "\u662F",
|
|
341
456
|
no: "\u5426"
|
|
342
457
|
},
|