@hoardodile/i18n 0.1.0 → 0.1.2
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/README.md +1 -1
- package/dist/catalogs/ui.d.ts +1 -1
- package/dist/catalogs/ui.js +35 -0
- package/dist/catalogs/ui.js.map +1 -1
- package/dist/{catalogs-BF4px4Mm.d.ts → catalogs-DhL0jLaW.d.ts} +758 -12
- package/dist/catalogs.d.ts +1 -1
- package/dist/catalogs.js +655 -35
- package/dist/catalogs.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +690 -35
- package/dist/index.js.map +1 -1
- package/dist/{ui-CJPMCZT7.d.ts → ui-DYXLhqSV.d.ts} +42 -0
- package/package.json +1 -1
- package/src/catalogs/de.json +131 -7
- package/src/catalogs/en.json +131 -7
- package/src/catalogs/es.json +131 -7
- package/src/catalogs/ja.json +131 -7
- package/src/catalogs/zh.json +131 -7
- package/src/ui/de.json +7 -0
- package/src/ui/en.json +7 -0
- package/src/ui/es.json +7 -0
- package/src/ui/ja.json +7 -0
- package/src/ui/zh.json +7 -0
|
@@ -21,11 +21,18 @@ var closeConfirm = {
|
|
|
21
21
|
var pluginDownload = {
|
|
22
22
|
eyebrow: "Plugin download",
|
|
23
23
|
title: "Download this file?",
|
|
24
|
+
titleMany_one: "Download this file?",
|
|
25
|
+
titleMany_other: "Download these {{count}} files?",
|
|
24
26
|
description: "{{pluginName}} wants to download a file into its own storage folder. The file is fetched from the URL below and stored only inside the plugin's folder.",
|
|
27
|
+
descriptionMany_one: "{{pluginName}} wants to download a file into its own storage folder. The file is fetched from the URL below and stored only inside the plugin's folder.",
|
|
28
|
+
descriptionMany_other: "{{pluginName}} wants to download {{count}} files into its own storage folder. The files are fetched from the URLs below and stored only inside the plugin's folder.",
|
|
25
29
|
urlLabel: "URL",
|
|
26
30
|
destLabel: "Destination",
|
|
27
31
|
sizeLabel: "Size",
|
|
28
32
|
unknownSize: "unknown",
|
|
33
|
+
itemLabel: "File {{index}}",
|
|
34
|
+
batchNote_one: "The file is handled as a whole: Allow downloads it, Deny downloads none.",
|
|
35
|
+
batchNote_other: "All {{count}} files are handled together: Allow downloads them all, Deny downloads none.",
|
|
29
36
|
deny: "Deny",
|
|
30
37
|
allow: "Allow",
|
|
31
38
|
remember: "Remember for this session (no more prompts from this plugin)"
|
|
@@ -133,11 +140,18 @@ declare const UI_CATALOGS: {
|
|
|
133
140
|
pluginDownload: {
|
|
134
141
|
eyebrow: string;
|
|
135
142
|
title: string;
|
|
143
|
+
titleMany_one: string;
|
|
144
|
+
titleMany_other: string;
|
|
136
145
|
description: string;
|
|
146
|
+
descriptionMany_one: string;
|
|
147
|
+
descriptionMany_other: string;
|
|
137
148
|
urlLabel: string;
|
|
138
149
|
destLabel: string;
|
|
139
150
|
sizeLabel: string;
|
|
140
151
|
unknownSize: string;
|
|
152
|
+
itemLabel: string;
|
|
153
|
+
batchNote_one: string;
|
|
154
|
+
batchNote_other: string;
|
|
141
155
|
deny: string;
|
|
142
156
|
allow: string;
|
|
143
157
|
remember: string;
|
|
@@ -219,11 +233,18 @@ declare const UI_CATALOGS: {
|
|
|
219
233
|
pluginDownload: {
|
|
220
234
|
eyebrow: string;
|
|
221
235
|
title: string;
|
|
236
|
+
titleMany_one: string;
|
|
237
|
+
titleMany_other: string;
|
|
222
238
|
description: string;
|
|
239
|
+
descriptionMany_one: string;
|
|
240
|
+
descriptionMany_other: string;
|
|
223
241
|
urlLabel: string;
|
|
224
242
|
destLabel: string;
|
|
225
243
|
sizeLabel: string;
|
|
226
244
|
unknownSize: string;
|
|
245
|
+
itemLabel: string;
|
|
246
|
+
batchNote_one: string;
|
|
247
|
+
batchNote_other: string;
|
|
227
248
|
deny: string;
|
|
228
249
|
allow: string;
|
|
229
250
|
remember: string;
|
|
@@ -305,11 +326,18 @@ declare const UI_CATALOGS: {
|
|
|
305
326
|
pluginDownload: {
|
|
306
327
|
eyebrow: string;
|
|
307
328
|
title: string;
|
|
329
|
+
titleMany_one: string;
|
|
330
|
+
titleMany_other: string;
|
|
308
331
|
description: string;
|
|
332
|
+
descriptionMany_one: string;
|
|
333
|
+
descriptionMany_other: string;
|
|
309
334
|
urlLabel: string;
|
|
310
335
|
destLabel: string;
|
|
311
336
|
sizeLabel: string;
|
|
312
337
|
unknownSize: string;
|
|
338
|
+
itemLabel: string;
|
|
339
|
+
batchNote_one: string;
|
|
340
|
+
batchNote_other: string;
|
|
313
341
|
deny: string;
|
|
314
342
|
allow: string;
|
|
315
343
|
remember: string;
|
|
@@ -391,11 +419,18 @@ declare const UI_CATALOGS: {
|
|
|
391
419
|
pluginDownload: {
|
|
392
420
|
eyebrow: string;
|
|
393
421
|
title: string;
|
|
422
|
+
titleMany_one: string;
|
|
423
|
+
titleMany_other: string;
|
|
394
424
|
description: string;
|
|
425
|
+
descriptionMany_one: string;
|
|
426
|
+
descriptionMany_other: string;
|
|
395
427
|
urlLabel: string;
|
|
396
428
|
destLabel: string;
|
|
397
429
|
sizeLabel: string;
|
|
398
430
|
unknownSize: string;
|
|
431
|
+
itemLabel: string;
|
|
432
|
+
batchNote_one: string;
|
|
433
|
+
batchNote_other: string;
|
|
399
434
|
deny: string;
|
|
400
435
|
allow: string;
|
|
401
436
|
remember: string;
|
|
@@ -477,11 +512,18 @@ declare const UI_CATALOGS: {
|
|
|
477
512
|
pluginDownload: {
|
|
478
513
|
eyebrow: string;
|
|
479
514
|
title: string;
|
|
515
|
+
titleMany_one: string;
|
|
516
|
+
titleMany_other: string;
|
|
480
517
|
description: string;
|
|
518
|
+
descriptionMany_one: string;
|
|
519
|
+
descriptionMany_other: string;
|
|
481
520
|
urlLabel: string;
|
|
482
521
|
destLabel: string;
|
|
483
522
|
sizeLabel: string;
|
|
484
523
|
unknownSize: string;
|
|
524
|
+
itemLabel: string;
|
|
525
|
+
batchNote_one: string;
|
|
526
|
+
batchNote_other: string;
|
|
485
527
|
deny: string;
|
|
486
528
|
allow: string;
|
|
487
529
|
remember: string;
|
package/package.json
CHANGED
package/src/catalogs/de.json
CHANGED
|
@@ -105,6 +105,17 @@
|
|
|
105
105
|
"noMatches": "Keine passenden Zeitzonen."
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
+
"appError": {
|
|
109
|
+
"title": "Da ist etwas schiefgelaufen",
|
|
110
|
+
"description": "Diese Seite konnte nicht angezeigt werden. Lade die App neu — deine Daten sind sicher — oder kopiere die Fehlerdetails in einen Bugbericht.",
|
|
111
|
+
"details": "Fehlerdetails",
|
|
112
|
+
"tryAgain": "Erneut versuchen",
|
|
113
|
+
"reload": "Neu laden",
|
|
114
|
+
"copyDetails": "Fehlerdetails kopieren",
|
|
115
|
+
"copied": "Fehlerdetails in die Zwischenablage kopiert.",
|
|
116
|
+
"copyFailed": "Kopieren in die Zwischenablage fehlgeschlagen.",
|
|
117
|
+
"reportIssue": "Problem melden"
|
|
118
|
+
},
|
|
108
119
|
"appShell": {
|
|
109
120
|
"primaryNav": "Primäre Navigation",
|
|
110
121
|
"secondaryNav": "Sekundäre Navigation",
|
|
@@ -118,6 +129,8 @@
|
|
|
118
129
|
"documents": "Dokumente",
|
|
119
130
|
"messages": "Nachrichten",
|
|
120
131
|
"me": "Einstellungen",
|
|
132
|
+
"marketplace": "Marktplatz",
|
|
133
|
+
"marketplaceUpdatesBadge": "Plugin-Updates verfügbar",
|
|
121
134
|
"feedbackAbout": "Feedback & Über",
|
|
122
135
|
"help": "Hilfe"
|
|
123
136
|
},
|
|
@@ -172,6 +185,7 @@
|
|
|
172
185
|
"privacy": "Datenschutz",
|
|
173
186
|
"archive": "Archiv",
|
|
174
187
|
"plugins": "Plugins",
|
|
188
|
+
"marketplace": "Marktplatz",
|
|
175
189
|
"sync": "Sync"
|
|
176
190
|
},
|
|
177
191
|
"section": {
|
|
@@ -284,8 +298,16 @@
|
|
|
284
298
|
"repository": "GitHub-Repository",
|
|
285
299
|
"website": "Website",
|
|
286
300
|
"bugTitle": "Fehler melden",
|
|
287
|
-
"bugDescription": "Etwas
|
|
288
|
-
"bugAction": "
|
|
301
|
+
"bugDescription": "Etwas schiefgelaufen? Lade das Protokollarchiv (die jüngsten App- und Serverprotokolle, als ZIP) herunter und hänge es an das Issue unten an. Entferne vor dem Absenden lokale Pfade und private Daten.",
|
|
302
|
+
"bugAction": "Problem melden",
|
|
303
|
+
"downloadLogs": "Protokolle herunterladen",
|
|
304
|
+
"logsArchiveConfirmTitle": "Protokollarchiv herunterladen?",
|
|
305
|
+
"logsArchiveConfirmNote": "Es enthält die jüngste Aktivität dieses Geräts — lokale Pfade, Dateinamen und ähnliche Details. Sende es nur an vertrauenswürdige Maintainer und prüfe den Inhalt vor dem Anhängen.",
|
|
306
|
+
"logsArchiveDownloaded": "Protokollarchiv heruntergeladen — hänge es an das Issue an.",
|
|
307
|
+
"logsArchiveFailed": "Das Protokollarchiv konnte nicht erstellt werden.",
|
|
308
|
+
"logsArchiving": "Verpacken…",
|
|
309
|
+
"openLogsFolder": "Serverprotokollordner öffnen",
|
|
310
|
+
"openLogsFailed": "Der Protokollordner konnte nicht geöffnet werden.",
|
|
289
311
|
"featureTitle": "Funktion vorschlagen",
|
|
290
312
|
"featureDescription": "Fehlt etwas? Sag uns, was als Nächstes kommen soll.",
|
|
291
313
|
"featureAction": "Idee teilen",
|
|
@@ -308,8 +330,29 @@
|
|
|
308
330
|
"title": "Letzte Verbindungen",
|
|
309
331
|
"description": "Jede Anmeldung mit Gerät, IP und Zeitpunkt. Nur auf diesem Gerät gespeichert; Einträge älter als 90 Tage werden entfernt.",
|
|
310
332
|
"empty": "Noch keine Anmeldungen.",
|
|
333
|
+
"totalLabel_one": "{{count}} Anmeldung",
|
|
334
|
+
"totalLabel_other": "{{count}} Anmeldungen",
|
|
311
335
|
"loopback": "dieses Gerät"
|
|
312
336
|
},
|
|
337
|
+
"network": {
|
|
338
|
+
"title": "Ausgehendes Netzwerk",
|
|
339
|
+
"description": "Der Proxy für Plugin-Downloads und den Plugin-Marktplatz. Wird aus Proxy-Umgebungsvariablen oder dem System-Proxy erkannt; HOARDODILE_PROXY übersteuert.",
|
|
340
|
+
"proxyLabel": "Ausgehender Proxy",
|
|
341
|
+
"sourceNone": "Direktverbindung (kein Proxy)",
|
|
342
|
+
"sourceEnv": "Benutzer-Proxy (Umgebungsvariablen)",
|
|
343
|
+
"sourceSystem": "Benutzer-Proxy (System)",
|
|
344
|
+
"sourceExplicit": "Benutzer-Proxy (explizit)",
|
|
345
|
+
"bypassCount_one": "{{count}} Host umgeht den Proxy",
|
|
346
|
+
"bypassCount_other": "{{count}} Hosts umgehen den Proxy",
|
|
347
|
+
"test": "GitHub-Verbindung testen",
|
|
348
|
+
"testing": "GitHub-Verbindung wird getestet…",
|
|
349
|
+
"testSuccess": "GitHub erreichbar (HTTP {{status}})",
|
|
350
|
+
"testFailed": "GitHub nicht erreichbar: {{message}}",
|
|
351
|
+
"testHint": "Prüfe die Proxy-Einstellungen (HOARDODILE_PROXY / System-Proxy / Proxy-Umgebungsvariablen).",
|
|
352
|
+
"connectionLabel": "GitHub-Verbindung",
|
|
353
|
+
"notTested": "Noch nicht getestet",
|
|
354
|
+
"proxyConfigHint": "Aktiviere es über den System-Proxy oder Proxy-Umgebungsvariablen (HOARDODILE_PROXY)."
|
|
355
|
+
},
|
|
313
356
|
"desktop": {
|
|
314
357
|
"library": {
|
|
315
358
|
"title": "Bibliotheksordner",
|
|
@@ -341,6 +384,8 @@
|
|
|
341
384
|
"weakPasswordDescription": "Jeder in deinem Netzwerk, der es errät, kann auf die gesamte Bibliothek zugreifen. Lege zuerst unter Einstellungen → Passwort ändern ein stärkeres Passwort fest oder aktiviere die Freigabe trotzdem.",
|
|
342
385
|
"enableAnyway": "Freigabe trotzdem aktivieren",
|
|
343
386
|
"primaryHint": "Auf einem Gerät im gleichen WLAN öffnen.",
|
|
387
|
+
"localHint": "Die Adresse der Desktop-App — im Browser öffnen oder kopieren.",
|
|
388
|
+
"open": "Im Browser öffnen",
|
|
344
389
|
"portAdjustedTitle": "Port {{preferred}} ist belegt — der Server lauscht jetzt auf {{actual}}.",
|
|
345
390
|
"portAdjustedHint": "Öffne diese Adresse von anderen Geräten mit dem neuen Port.",
|
|
346
391
|
"portAdjustedDismiss": "Ausblenden",
|
|
@@ -355,6 +400,14 @@
|
|
|
355
400
|
"title": "Im Infobereich starten",
|
|
356
401
|
"description": "Kein Fenster, bis du im Infobereich „Öffnen“ wählst."
|
|
357
402
|
},
|
|
403
|
+
"signInOnLaunch": {
|
|
404
|
+
"title": "Bei jedem Start anmelden",
|
|
405
|
+
"description": "Bei jedem Öffnen der App erneut anmelden."
|
|
406
|
+
},
|
|
407
|
+
"signInOnWindowOpen": {
|
|
408
|
+
"title": "Beim erneuten Öffnen aus dem Infobereich anmelden",
|
|
409
|
+
"description": "Bei jedem erneuten Öffnen nach dem Schließen (Infobereich, zweiter Start) anmelden."
|
|
410
|
+
},
|
|
358
411
|
"autoUpdate": {
|
|
359
412
|
"title": "Automatische Updates",
|
|
360
413
|
"description": "GitHub-Releases im Hintergrund herunterladen. Ein Neustart wird immer bestätigt."
|
|
@@ -458,6 +511,10 @@
|
|
|
458
511
|
"missingSource": "Quelle fehlt",
|
|
459
512
|
"installed": "Installiert",
|
|
460
513
|
"installedDescription": "Die Reihenfolge bestimmt, wer ein Paket zuerst beansprucht — zum Neusortieren ziehen.",
|
|
514
|
+
"bundledTitle": "Gebündelte Plugins",
|
|
515
|
+
"bundledDescription": "Offizielle Plugins, die mit der App ausgeliefert werden. Das Deinstallieren löscht das gebündelte Original nicht — hier jederzeit offline wiederherstellbar.",
|
|
516
|
+
"bundledRestore": "Wiederherstellen",
|
|
517
|
+
"bundledRestoreSuccess": "{{name}} wiederhergestellt",
|
|
461
518
|
"filterPlaceholder": "Plugins filtern",
|
|
462
519
|
"countInstalled": "{{count}} installiert",
|
|
463
520
|
"listView": "Listenansicht",
|
|
@@ -513,6 +570,67 @@
|
|
|
513
570
|
"download": "Downloads"
|
|
514
571
|
}
|
|
515
572
|
},
|
|
573
|
+
"marketplace": {
|
|
574
|
+
"title": "Plugin-Marktplatz",
|
|
575
|
+
"description": "Plugins, die als GitHub-Releases veröffentlicht und über ein eigenes Registry-Repository gefunden werden.",
|
|
576
|
+
"registryRepoLabel": "Adresse des Registry-Repositories",
|
|
577
|
+
"registryPlaceholder": "https://github.com/me/hoardodile-plugins",
|
|
578
|
+
"setupHint": "Gib die Adresse eines GitHub-Repositorys an, dessen registry.json im Stammverzeichnis die Plugin-Repository-Adressen auflistet (eine pro Zeile). Alles andere — Namen, Versionen, Berechtigungen, Release-Notizen — wird automatisch aus jedem Repository und seinen Releases gelesen.",
|
|
579
|
+
"save": "Speichern",
|
|
580
|
+
"disable": "Deaktivieren",
|
|
581
|
+
"saved": "Marktplatz nutzt jetzt {{repo}}",
|
|
582
|
+
"notConfiguredHint": "Kein Registry-Repository konfiguriert — trage oben eine Adresse ein, um als GitHub-Releases veröffentlichte Plugins aufzulisten.",
|
|
583
|
+
"loadFailed": "Marktplatz-Aktualisierung fehlgeschlagen: {{message}}",
|
|
584
|
+
"refreshedAt": "Zuletzt aktualisiert {{time}}",
|
|
585
|
+
"refresh": "Aktualisieren",
|
|
586
|
+
"refreshConfirmTitle": "Den gesamten Marktplatz aktualisieren?",
|
|
587
|
+
"refreshConfirmDescription": "Dabei wird das neueste Release jedes Plugins über die GitHub-API abgefragt (ohne Token: 60 Anfragen/Stunde). Häufiges Aktualisieren kann dieses Limit erreichen; danach wird bis zum Reset die zwischengespeicherte Release-Info angezeigt.",
|
|
588
|
+
"refreshed": "Marktplatz aktualisiert",
|
|
589
|
+
"refreshFailed": "Marktplatz-Aktualisierung fehlgeschlagen",
|
|
590
|
+
"emptyHint": "Das Registry enthält noch keine Plugins. Füge Repository-Adressen zu registry.json hinzu und aktualisiere.",
|
|
591
|
+
"install": "Installieren",
|
|
592
|
+
"update": "Aktualisieren",
|
|
593
|
+
"updateTo": "Auf v{{version}} aktualisieren",
|
|
594
|
+
"installed": "v{{version}} installiert",
|
|
595
|
+
"noRelease": "Noch kein GitHub-Release",
|
|
596
|
+
"release": "Release",
|
|
597
|
+
"installConfirmTitle": "Plugin von GitHub installieren?",
|
|
598
|
+
"updateConfirmTitle": "{{name}} aktualisieren?",
|
|
599
|
+
"installing": "Installiere…",
|
|
600
|
+
"installConfirmNote": "Es wird Servercode aus dem oben genannten GitHub-Repository installiert und im selben eingeschränkten Sandbox ausgeführt wie jedes Plugin. Die deklarierten Berechtigungen sind oben aufgeführt. Installiere nur aus vertrauenswürdigen Repositories.",
|
|
601
|
+
"installSuccess": "{{name}} installiert",
|
|
602
|
+
"updateSuccess": "{{name}} auf v{{version}} aktualisiert",
|
|
603
|
+
"view": "Ansehen",
|
|
604
|
+
"details": "Details",
|
|
605
|
+
"moreActions": "Weitere Aktionen",
|
|
606
|
+
"releaseNotes": "Versionshinweise",
|
|
607
|
+
"pluginInfo": "Plugin-Info",
|
|
608
|
+
"pluginId": "Plugin-ID",
|
|
609
|
+
"repository": "Repository",
|
|
610
|
+
"latestRelease": "Neueste Version",
|
|
611
|
+
"manifestVersion": "Manifest-Version",
|
|
612
|
+
"packageAsset": "Paket",
|
|
613
|
+
"checksum": "SHA-256",
|
|
614
|
+
"notInstalled": "Nicht installiert",
|
|
615
|
+
"reportIssue": "Problem melden",
|
|
616
|
+
"reportSecurity": "Sicherheitslücke melden",
|
|
617
|
+
"intro": "Einführung",
|
|
618
|
+
"languages": "Sprachen",
|
|
619
|
+
"noIntro": "Diese Version enthält keine Einführung",
|
|
620
|
+
"noReleaseNotes": "Diese Version enthält keine Versionshinweise",
|
|
621
|
+
"errorRateLimitedShort": "Neueste Versionsinfos nicht verfügbar — wird automatisch erneut versucht.",
|
|
622
|
+
"configureRegistry": "Registry konfigurieren",
|
|
623
|
+
"pageHint": "Plugins werden als GitHub-Releases veröffentlicht und über ein eigenes Registry-Repository gefunden. Konfiguriere das Registry oben — der Katalog liest Namen, Versionen, Berechtigungen und Versionshinweise direkt aus jedem Repository und seinen Releases.",
|
|
624
|
+
"registryDialogTitle": "Plugin-Marktplatz-Registry",
|
|
625
|
+
"installedBadge": "Installiert",
|
|
626
|
+
"filterAll": "Alle",
|
|
627
|
+
"filterInstalled": "Installiert",
|
|
628
|
+
"filterUpdates": "Updates",
|
|
629
|
+
"emptyFilterHint": "Keine Plugins entsprechen diesem Filter.",
|
|
630
|
+
"requiresAppVersion": "Benötigt hoardodile ≥ v{{version}}",
|
|
631
|
+
"incompatibleAppVersion": "Dieses Plugin benötigt hoardodile ≥ v{{require}}; diese Installation läuft mit v{{current}}",
|
|
632
|
+
"registryActive": "Aktuelles Registry: {{url}}"
|
|
633
|
+
},
|
|
516
634
|
"overview": {
|
|
517
635
|
"usageHistory": {
|
|
518
636
|
"title": "Nutzungsverlauf"
|
|
@@ -887,7 +1005,9 @@
|
|
|
887
1005
|
"untitledHeading": "Unbenannte Überschrift",
|
|
888
1006
|
"detailMeta": {
|
|
889
1007
|
"chars_one": "{{count, number}} Zeichen",
|
|
890
|
-
"chars_other": "{{count, number}} Zeichen"
|
|
1008
|
+
"chars_other": "{{count, number}} Zeichen",
|
|
1009
|
+
"created": "Erstellt {{time}}",
|
|
1010
|
+
"updated": "Aktualisiert {{time}}"
|
|
891
1011
|
},
|
|
892
1012
|
"notes": {
|
|
893
1013
|
"tab": "Notizen",
|
|
@@ -922,6 +1042,7 @@
|
|
|
922
1042
|
"committed": "Version festgeschrieben",
|
|
923
1043
|
"contentTooLarge": "Inhalt überschreitet das maximale Zeichenlimit",
|
|
924
1044
|
"versionLoadFailed": "Versionsinhalt konnte nicht geladen werden",
|
|
1045
|
+
"diffFailed": "Die Dokumentdifferenz konnte nicht berechnet werden",
|
|
925
1046
|
"savedLocally": "Auf diesem Gerät gespeichert",
|
|
926
1047
|
"resolveConflictFirst": "Löse den Offline-Konflikt, bevor du festschreibst",
|
|
927
1048
|
"movedToTrash": "In den Papierkorb verschoben",
|
|
@@ -2027,7 +2148,7 @@
|
|
|
2027
2148
|
}
|
|
2028
2149
|
},
|
|
2029
2150
|
"sync": {
|
|
2030
|
-
"pageHint": "Pro Gerät: erfasst Elementanzahlen, Inhaltsgröße und Speichervolumen ·
|
|
2151
|
+
"pageHint": "Pro Gerät: erfasst Elementanzahlen, Inhaltsgröße und Speichervolumen · öffne die Seite, um zu sehen, was sich seit dem letzten Sync geändert hat",
|
|
2031
2152
|
"status": {
|
|
2032
2153
|
"allUpToDate": "Alle Geräte auf dem neuesten Stand",
|
|
2033
2154
|
"dueCount_one": "{{count}} von {{total}} Gerät fällig",
|
|
@@ -2074,14 +2195,17 @@
|
|
|
2074
2195
|
"editTitle": "Gerät bearbeiten",
|
|
2075
2196
|
"edit": "Bearbeiten",
|
|
2076
2197
|
"save": "Speichern",
|
|
2077
|
-
"editPending": "Speichern…"
|
|
2198
|
+
"editPending": "Speichern…",
|
|
2199
|
+
"liveHint": "Aktueller Zustand · Änderungen seit dem letzten Sync"
|
|
2078
2200
|
},
|
|
2079
2201
|
"fields": {
|
|
2080
2202
|
"resources": "Ressourcen",
|
|
2081
2203
|
"characters": "Charaktere",
|
|
2082
2204
|
"documents": "Dokumente",
|
|
2205
|
+
"folders": "Ordner",
|
|
2083
2206
|
"messages": "Nachrichten",
|
|
2084
2207
|
"tags": "Tags",
|
|
2208
|
+
"collections": "Sammlungen",
|
|
2085
2209
|
"trash": "Papierkorb",
|
|
2086
2210
|
"contentSize": "Inhaltsgröße",
|
|
2087
2211
|
"storage": "Speicher",
|
|
@@ -2123,6 +2247,7 @@
|
|
|
2123
2247
|
"copied": "LAN-Adresse in die Zwischenablage kopiert."
|
|
2124
2248
|
},
|
|
2125
2249
|
"errorPage": {
|
|
2250
|
+
"rendererCrashed": "Das App-Fenster ist abgestürzt. Drücke „Erneut versuchen“, um es neu zu laden — deine Daten und der eingebettete Server sind sicher.",
|
|
2126
2251
|
"serverError": "Der Server konnte nicht erreicht werden. Er startet möglicherweise noch oder wurde gestoppt. Warte einen Moment und drücke Erneut versuchen, oder verwende Server neu starten aus dem Infobereich.",
|
|
2127
2252
|
"devServerError": "Der Entwicklungsserver läuft nicht. Starte `pnpm dev` in einem anderen Terminal und drücke dann Erneut versuchen."
|
|
2128
2253
|
},
|
|
@@ -2136,8 +2261,7 @@
|
|
|
2136
2261
|
},
|
|
2137
2262
|
"shell": {
|
|
2138
2263
|
"serverUnreachable": "Server nicht erreichbar",
|
|
2139
|
-
"retry": "Erneut versuchen"
|
|
2140
|
-
"loadingLabel": "Wird geladen"
|
|
2264
|
+
"retry": "Erneut versuchen"
|
|
2141
2265
|
},
|
|
2142
2266
|
"wizard": {
|
|
2143
2267
|
"title": "Willkommen bei hoardodile",
|
package/src/catalogs/en.json
CHANGED
|
@@ -105,6 +105,17 @@
|
|
|
105
105
|
"noMatches": "No matching time zones."
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
+
"appError": {
|
|
109
|
+
"title": "Something went wrong",
|
|
110
|
+
"description": "This page could not be displayed. Reload the app — your data is safe — or copy the error details into a bug report.",
|
|
111
|
+
"details": "Error details",
|
|
112
|
+
"tryAgain": "Try again",
|
|
113
|
+
"reload": "Reload",
|
|
114
|
+
"copyDetails": "Copy error details",
|
|
115
|
+
"copied": "Error details copied to the clipboard.",
|
|
116
|
+
"copyFailed": "Could not copy to the clipboard.",
|
|
117
|
+
"reportIssue": "Report an issue"
|
|
118
|
+
},
|
|
108
119
|
"appShell": {
|
|
109
120
|
"primaryNav": "Primary navigation",
|
|
110
121
|
"secondaryNav": "Secondary navigation",
|
|
@@ -118,6 +129,8 @@
|
|
|
118
129
|
"documents": "Documents",
|
|
119
130
|
"messages": "Messages",
|
|
120
131
|
"me": "Settings",
|
|
132
|
+
"marketplace": "Marketplace",
|
|
133
|
+
"marketplaceUpdatesBadge": "Plugin updates available",
|
|
121
134
|
"feedbackAbout": "Feedback & About",
|
|
122
135
|
"help": "Help"
|
|
123
136
|
},
|
|
@@ -172,6 +185,7 @@
|
|
|
172
185
|
"privacy": "Privacy",
|
|
173
186
|
"archive": "Archive",
|
|
174
187
|
"plugins": "Plugins",
|
|
188
|
+
"marketplace": "Marketplace",
|
|
175
189
|
"sync": "Sync"
|
|
176
190
|
},
|
|
177
191
|
"section": {
|
|
@@ -284,8 +298,16 @@
|
|
|
284
298
|
"repository": "GitHub repository",
|
|
285
299
|
"website": "Website",
|
|
286
300
|
"bugTitle": "Report a bug",
|
|
287
|
-
"bugDescription": "Something went wrong?
|
|
288
|
-
"bugAction": "
|
|
301
|
+
"bugDescription": "Something went wrong? Download the log archive (recent frontend and server logs, zipped) and attach it to the issue below. Remove local paths and anything private before sending.",
|
|
302
|
+
"bugAction": "Report an issue",
|
|
303
|
+
"downloadLogs": "Download logs",
|
|
304
|
+
"logsArchiveConfirmTitle": "Download the log archive?",
|
|
305
|
+
"logsArchiveConfirmNote": "It contains this device's recent app activity — local paths, file names and similar details. Send it only to trusted maintainers and check the contents before attaching.",
|
|
306
|
+
"logsArchiveDownloaded": "Log archive downloaded — attach it to the issue.",
|
|
307
|
+
"logsArchiveFailed": "Could not build the log archive.",
|
|
308
|
+
"logsArchiving": "Packing…",
|
|
309
|
+
"openLogsFolder": "Open server log folder",
|
|
310
|
+
"openLogsFailed": "Could not open the logs folder.",
|
|
289
311
|
"featureTitle": "Request a feature",
|
|
290
312
|
"featureDescription": "Missing something? Tell us what to build next.",
|
|
291
313
|
"featureAction": "Share your idea",
|
|
@@ -308,8 +330,29 @@
|
|
|
308
330
|
"title": "Recent connections",
|
|
309
331
|
"description": "Every sign-in with device, IP and time. Stored only on this device; rows older than 90 days are pruned.",
|
|
310
332
|
"empty": "No sign-ins yet.",
|
|
333
|
+
"totalLabel_one": "{{count}} sign-in",
|
|
334
|
+
"totalLabel_other": "{{count}} sign-ins",
|
|
311
335
|
"loopback": "this device"
|
|
312
336
|
},
|
|
337
|
+
"network": {
|
|
338
|
+
"title": "Outbound network",
|
|
339
|
+
"description": "The proxy used for plugin downloads and the plugin marketplace. Detected from your proxy env vars or the system proxy; HOARDODILE_PROXY overrides.",
|
|
340
|
+
"proxyLabel": "Outbound proxy",
|
|
341
|
+
"sourceNone": "Direct connection (no proxy)",
|
|
342
|
+
"sourceEnv": "User proxy (env vars)",
|
|
343
|
+
"sourceSystem": "User proxy (system)",
|
|
344
|
+
"sourceExplicit": "User proxy (explicit)",
|
|
345
|
+
"bypassCount_one": "{{count}} host bypasses the proxy",
|
|
346
|
+
"bypassCount_other": "{{count}} hosts bypass the proxy",
|
|
347
|
+
"test": "Test GitHub connection",
|
|
348
|
+
"testing": "Testing GitHub connection…",
|
|
349
|
+
"testSuccess": "GitHub is reachable (HTTP {{status}})",
|
|
350
|
+
"testFailed": "GitHub is not reachable: {{message}}",
|
|
351
|
+
"testHint": "Check your proxy settings (HOARDODILE_PROXY / system proxy / proxy env vars).",
|
|
352
|
+
"connectionLabel": "GitHub connection",
|
|
353
|
+
"notTested": "Not tested yet",
|
|
354
|
+
"proxyConfigHint": "Enable via your system proxy or proxy env vars (HOARDODILE_PROXY)."
|
|
355
|
+
},
|
|
313
356
|
"desktop": {
|
|
314
357
|
"library": {
|
|
315
358
|
"title": "Library folder",
|
|
@@ -341,6 +384,8 @@
|
|
|
341
384
|
"weakPasswordDescription": "Anyone on your network who guesses it can access the whole library. Set a stronger password in Settings → Change password first, or enable sharing anyway.",
|
|
342
385
|
"enableAnyway": "Enable sharing anyway",
|
|
343
386
|
"primaryHint": "Open on a device on the same Wi-Fi.",
|
|
387
|
+
"localHint": "The address the desktop app uses — open it in a browser or copy it.",
|
|
388
|
+
"open": "Open in browser",
|
|
344
389
|
"portAdjustedTitle": "Port {{preferred}} is in use — the server is now listening on {{actual}}.",
|
|
345
390
|
"portAdjustedHint": "Open this address from other devices with the new port.",
|
|
346
391
|
"portAdjustedDismiss": "Dismiss",
|
|
@@ -355,6 +400,14 @@
|
|
|
355
400
|
"title": "Start in tray",
|
|
356
401
|
"description": "No window until you choose Open from the tray."
|
|
357
402
|
},
|
|
403
|
+
"signInOnLaunch": {
|
|
404
|
+
"title": "Require sign-in on launch",
|
|
405
|
+
"description": "Sign in again every time you open the app."
|
|
406
|
+
},
|
|
407
|
+
"signInOnWindowOpen": {
|
|
408
|
+
"title": "Require sign-in when reopening from the tray",
|
|
409
|
+
"description": "Sign in again whenever the window was closed (tray, second launch)."
|
|
410
|
+
},
|
|
358
411
|
"autoUpdate": {
|
|
359
412
|
"title": "Automatic updates",
|
|
360
413
|
"description": "Download GitHub releases in the background. Restart is always confirmed."
|
|
@@ -458,6 +511,10 @@
|
|
|
458
511
|
"missingSource": "source missing",
|
|
459
512
|
"installed": "Installed",
|
|
460
513
|
"installedDescription": "Order decides who claims a bundle first — drag to re-prioritize.",
|
|
514
|
+
"bundledTitle": "Bundled plugins",
|
|
515
|
+
"bundledDescription": "Official plugins that ship with this app. Removing one keeps the bundled original — restore it here anytime, without a network connection.",
|
|
516
|
+
"bundledRestore": "Restore",
|
|
517
|
+
"bundledRestoreSuccess": "Restored {{name}}",
|
|
461
518
|
"filterPlaceholder": "Filter plugins",
|
|
462
519
|
"countInstalled": "{{count}} installed",
|
|
463
520
|
"listView": "List view",
|
|
@@ -513,6 +570,67 @@
|
|
|
513
570
|
"download": "Downloads"
|
|
514
571
|
}
|
|
515
572
|
},
|
|
573
|
+
"marketplace": {
|
|
574
|
+
"title": "Plugin marketplace",
|
|
575
|
+
"description": "Plugins published as GitHub releases, discovered through a registry repo you own.",
|
|
576
|
+
"registryRepoLabel": "Registry repo address",
|
|
577
|
+
"registryPlaceholder": "https://github.com/me/hoardodile-plugins",
|
|
578
|
+
"setupHint": "Paste a GitHub repository whose root registry.json lists your plugin repository addresses (one per line). Everything else — names, versions, permissions, release notes — is read automatically from each repo and its releases.",
|
|
579
|
+
"save": "Save",
|
|
580
|
+
"disable": "Disable",
|
|
581
|
+
"saved": "Marketplace now uses {{repo}}",
|
|
582
|
+
"notConfiguredHint": "No registry repo configured — paste one above to list plugins published as GitHub releases.",
|
|
583
|
+
"loadFailed": "Marketplace refresh failed: {{message}}",
|
|
584
|
+
"refreshedAt": "Last refreshed {{time}}",
|
|
585
|
+
"refresh": "Refresh",
|
|
586
|
+
"refreshConfirmTitle": "Refresh the whole marketplace?",
|
|
587
|
+
"refreshConfirmDescription": "This re-checks every plugin's latest release through the GitHub API, limited to 60 requests per hour without a token. Frequent refreshes can hit that limit; the catalog then falls back to cached release data until the quota resets.",
|
|
588
|
+
"refreshed": "Marketplace refreshed",
|
|
589
|
+
"refreshFailed": "Marketplace refresh failed",
|
|
590
|
+
"emptyHint": "The registry lists no plugins yet. Add repository addresses to registry.json and refresh.",
|
|
591
|
+
"install": "Install",
|
|
592
|
+
"update": "Update",
|
|
593
|
+
"updateTo": "Update to v{{version}}",
|
|
594
|
+
"installed": "Installed v{{version}}",
|
|
595
|
+
"noRelease": "No GitHub release yet",
|
|
596
|
+
"release": "Release",
|
|
597
|
+
"installConfirmTitle": "Install plugin from GitHub?",
|
|
598
|
+
"updateConfirmTitle": "Update {{name}}?",
|
|
599
|
+
"installing": "Installing…",
|
|
600
|
+
"installConfirmNote": "This installs server-side code from the GitHub repository above, running in the same restricted sandbox as every plugin. The declared permissions are shown above. Only install from repositories you trust.",
|
|
601
|
+
"installSuccess": "Installed {{name}}",
|
|
602
|
+
"updateSuccess": "Updated {{name}} to v{{version}}",
|
|
603
|
+
"view": "View",
|
|
604
|
+
"details": "Details",
|
|
605
|
+
"moreActions": "More actions",
|
|
606
|
+
"releaseNotes": "Release notes",
|
|
607
|
+
"pluginInfo": "Plugin info",
|
|
608
|
+
"pluginId": "Plugin ID",
|
|
609
|
+
"repository": "Repository",
|
|
610
|
+
"latestRelease": "Latest release",
|
|
611
|
+
"manifestVersion": "Manifest version",
|
|
612
|
+
"packageAsset": "Asset",
|
|
613
|
+
"checksum": "SHA-256",
|
|
614
|
+
"notInstalled": "Not installed",
|
|
615
|
+
"reportIssue": "Report an issue",
|
|
616
|
+
"reportSecurity": "Report a security vulnerability",
|
|
617
|
+
"intro": "Intro",
|
|
618
|
+
"languages": "Languages",
|
|
619
|
+
"noIntro": "This release ships no introduction",
|
|
620
|
+
"noReleaseNotes": "This release has no release notes",
|
|
621
|
+
"errorRateLimitedShort": "Latest release info unavailable — retrying automatically.",
|
|
622
|
+
"configureRegistry": "Configure registry",
|
|
623
|
+
"pageHint": "Plugins are published as GitHub releases and discovered through a registry repo you own. Configure the registry above — the catalog reads names, versions, permissions and release notes straight from each repo and its releases.",
|
|
624
|
+
"registryDialogTitle": "Plugin marketplace registry",
|
|
625
|
+
"installedBadge": "Installed",
|
|
626
|
+
"filterAll": "All",
|
|
627
|
+
"filterInstalled": "Installed",
|
|
628
|
+
"filterUpdates": "Updates",
|
|
629
|
+
"emptyFilterHint": "No plugins match this filter.",
|
|
630
|
+
"requiresAppVersion": "Requires hoardodile ≥ v{{version}}",
|
|
631
|
+
"incompatibleAppVersion": "This plugin requires hoardodile ≥ v{{require}}; this host runs v{{current}}",
|
|
632
|
+
"registryActive": "Current registry: {{url}}"
|
|
633
|
+
},
|
|
516
634
|
"overview": {
|
|
517
635
|
"usageHistory": {
|
|
518
636
|
"title": "Usage history"
|
|
@@ -887,7 +1005,9 @@
|
|
|
887
1005
|
"untitledHeading": "Untitled heading",
|
|
888
1006
|
"detailMeta": {
|
|
889
1007
|
"chars_one": "{{count, number}} char",
|
|
890
|
-
"chars_other": "{{count, number}} chars"
|
|
1008
|
+
"chars_other": "{{count, number}} chars",
|
|
1009
|
+
"created": "Created {{time}}",
|
|
1010
|
+
"updated": "Updated {{time}}"
|
|
891
1011
|
},
|
|
892
1012
|
"notes": {
|
|
893
1013
|
"tab": "Notes",
|
|
@@ -922,6 +1042,7 @@
|
|
|
922
1042
|
"committed": "Version committed",
|
|
923
1043
|
"contentTooLarge": "Content exceeds maximum character limit",
|
|
924
1044
|
"versionLoadFailed": "Could not load version content",
|
|
1045
|
+
"diffFailed": "Could not compute the document diff",
|
|
925
1046
|
"savedLocally": "Saved on this device",
|
|
926
1047
|
"resolveConflictFirst": "Resolve the offline conflict before committing",
|
|
927
1048
|
"movedToTrash": "Moved to recycle bin",
|
|
@@ -2027,7 +2148,7 @@
|
|
|
2027
2148
|
}
|
|
2028
2149
|
},
|
|
2029
2150
|
"sync": {
|
|
2030
|
-
"pageHint": "Per device: records entity counts, content size and storage volume ·
|
|
2151
|
+
"pageHint": "Per device: records entity counts, content size and storage volume · open the page anytime to see what changed since the last sync",
|
|
2031
2152
|
"status": {
|
|
2032
2153
|
"allUpToDate": "All devices up to date",
|
|
2033
2154
|
"dueCount_one": "{{count}} of {{total}} device due",
|
|
@@ -2074,14 +2195,17 @@
|
|
|
2074
2195
|
"editTitle": "Edit device",
|
|
2075
2196
|
"edit": "Edit",
|
|
2076
2197
|
"save": "Save",
|
|
2077
|
-
"editPending": "Saving…"
|
|
2198
|
+
"editPending": "Saving…",
|
|
2199
|
+
"liveHint": "Live state · changes since the last sync"
|
|
2078
2200
|
},
|
|
2079
2201
|
"fields": {
|
|
2080
2202
|
"resources": "Resources",
|
|
2081
2203
|
"characters": "Characters",
|
|
2082
2204
|
"documents": "Documents",
|
|
2205
|
+
"folders": "Folders",
|
|
2083
2206
|
"messages": "Messages",
|
|
2084
2207
|
"tags": "Tags",
|
|
2208
|
+
"collections": "Collections",
|
|
2085
2209
|
"trash": "Trash",
|
|
2086
2210
|
"contentSize": "Content size",
|
|
2087
2211
|
"storage": "Storage",
|
|
@@ -2123,6 +2247,7 @@
|
|
|
2123
2247
|
"copied": "LAN address copied to the clipboard."
|
|
2124
2248
|
},
|
|
2125
2249
|
"errorPage": {
|
|
2250
|
+
"rendererCrashed": "The app window crashed. Press Retry to reload it — your data and the bundled server are safe.",
|
|
2126
2251
|
"serverError": "The server could not be reached. It may still be starting, or it may have stopped. Wait a moment and press Retry, or use Restart server from the tray.",
|
|
2127
2252
|
"devServerError": "The development server is not running. Start `pnpm dev` in another terminal, then press Retry."
|
|
2128
2253
|
},
|
|
@@ -2136,8 +2261,7 @@
|
|
|
2136
2261
|
},
|
|
2137
2262
|
"shell": {
|
|
2138
2263
|
"serverUnreachable": "Server unreachable",
|
|
2139
|
-
"retry": "Retry"
|
|
2140
|
-
"loadingLabel": "Loading"
|
|
2264
|
+
"retry": "Retry"
|
|
2141
2265
|
},
|
|
2142
2266
|
"wizard": {
|
|
2143
2267
|
"title": "Welcome to hoardodile",
|