@hoardodile/i18n 0.2.1 → 0.2.3
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-DhA-exiB.d.ts → catalogs-CJojj7ku.d.ts} +176 -8
- package/dist/catalogs.d.ts +1 -1
- package/dist/catalogs.js +180 -40
- package/dist/catalogs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +180 -40
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/catalogs/de.json +36 -8
- package/src/catalogs/en.json +36 -8
- package/src/catalogs/es.json +36 -8
- package/src/catalogs/ja.json +36 -8
- package/src/catalogs/zh.json +36 -8
|
@@ -150,6 +150,8 @@ var common = {
|
|
|
150
150
|
first: "First",
|
|
151
151
|
last: "Last",
|
|
152
152
|
jumpToPage: "Page",
|
|
153
|
+
noDescription: "No description",
|
|
154
|
+
noName: "No name",
|
|
153
155
|
go: "Go",
|
|
154
156
|
goTo: "Go to",
|
|
155
157
|
unknownError: "Unknown error",
|
|
@@ -157,6 +159,7 @@ var common = {
|
|
|
157
159
|
loadFailed: "Failed to load",
|
|
158
160
|
show: "Show",
|
|
159
161
|
hide: "Hide",
|
|
162
|
+
view: "View",
|
|
160
163
|
selected: "Selected",
|
|
161
164
|
available: "Available",
|
|
162
165
|
allSelected: "All selected",
|
|
@@ -399,7 +402,7 @@ var me = {
|
|
|
399
402
|
password: {
|
|
400
403
|
title: "Password",
|
|
401
404
|
description: "The admin password used to sign in to this host.",
|
|
402
|
-
changeButton: "Change
|
|
405
|
+
changeButton: "Change",
|
|
403
406
|
dialogTitle: "Change password",
|
|
404
407
|
currentPassword: "Current password",
|
|
405
408
|
newPassword: "New password",
|
|
@@ -480,8 +483,8 @@ var me = {
|
|
|
480
483
|
sourceExplicit: "User proxy (explicit)",
|
|
481
484
|
bypassCount_one: "{{count}} host bypasses the proxy",
|
|
482
485
|
bypassCount_other: "{{count}} hosts bypass the proxy",
|
|
483
|
-
test: "Test
|
|
484
|
-
testing: "Testing
|
|
486
|
+
test: "Test",
|
|
487
|
+
testing: "Testing…",
|
|
485
488
|
testSuccess: "GitHub is reachable (HTTP {{status}})",
|
|
486
489
|
testFailed: "GitHub is not reachable: {{message}}",
|
|
487
490
|
testHint: "Check your proxy settings (HOARDODILE_PROXY / system proxy / proxy env vars).",
|
|
@@ -747,6 +750,8 @@ var marketplace = {
|
|
|
747
750
|
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.",
|
|
748
751
|
refreshed: "Marketplace refreshed",
|
|
749
752
|
refreshFailed: "Marketplace refresh failed",
|
|
753
|
+
detailRefresh: "Refresh release info",
|
|
754
|
+
refreshRateLimited: "GitHub rate limit hit — still showing the cached release",
|
|
750
755
|
emptyHint: "The registry lists no plugins yet. Add repository addresses to registry.json and refresh.",
|
|
751
756
|
install: "Install",
|
|
752
757
|
update: "Update",
|
|
@@ -972,7 +977,8 @@ var dataHistory = {
|
|
|
972
977
|
archiving: "Archiving…",
|
|
973
978
|
edit: "Edit",
|
|
974
979
|
switchToVersion: "Switch to this version",
|
|
975
|
-
switching: "Switching…"
|
|
980
|
+
switching: "Switching…",
|
|
981
|
+
moreActions: "Archive actions"
|
|
976
982
|
},
|
|
977
983
|
edit: {
|
|
978
984
|
title: "Edit archive",
|
|
@@ -1051,6 +1057,19 @@ var documents = {
|
|
|
1051
1057
|
confirm: "You have unsaved changes in this document. Leave anyway?"
|
|
1052
1058
|
},
|
|
1053
1059
|
moreActions: "More actions",
|
|
1060
|
+
find: {
|
|
1061
|
+
placeholder: "Find in document",
|
|
1062
|
+
replacePlaceholder: "Replace with",
|
|
1063
|
+
matchCase: "Match case",
|
|
1064
|
+
toggleReplace: "Toggle replace",
|
|
1065
|
+
previous: "Previous match",
|
|
1066
|
+
next: "Next match",
|
|
1067
|
+
counter: "{{current}} / {{total}}",
|
|
1068
|
+
noResults: "No matches",
|
|
1069
|
+
replace: "Replace",
|
|
1070
|
+
replaceAll: "Replace all",
|
|
1071
|
+
close: "Close"
|
|
1072
|
+
},
|
|
1054
1073
|
zoom: {
|
|
1055
1074
|
label: "Text zoom",
|
|
1056
1075
|
smaller: "Zoom out",
|
|
@@ -1172,6 +1191,11 @@ var documents = {
|
|
|
1172
1191
|
hardDeleteConfirm: "Delete forever",
|
|
1173
1192
|
hardDeleting: "Deleting…"
|
|
1174
1193
|
},
|
|
1194
|
+
renameDialog: {
|
|
1195
|
+
folderTitle: "Rename folder",
|
|
1196
|
+
documentTitle: "Rename document",
|
|
1197
|
+
nameLabel: "Name"
|
|
1198
|
+
},
|
|
1175
1199
|
softDeleteDialog: {
|
|
1176
1200
|
title: "Move to recycle bin?",
|
|
1177
1201
|
description: "The item will be hidden from the tree and can be restored later from the recycle bin.",
|
|
@@ -2347,7 +2371,7 @@ var protectionUx = {
|
|
|
2347
2371
|
backupRunning: "Backup in progress…",
|
|
2348
2372
|
firstBackupMissing: "Enabled; no completed backup yet",
|
|
2349
2373
|
backupCompleted: "Last completed backup: {{time}}",
|
|
2350
|
-
locationHelp: "This is where this service saves backups.
|
|
2374
|
+
locationHelp: "This is where this service saves backups.",
|
|
2351
2375
|
frequency: "Backup frequency",
|
|
2352
2376
|
frequencyHelp: "Changes are saved automatically at most this often. The first backup still runs right away.",
|
|
2353
2377
|
frequencyHourly: "Hourly",
|
|
@@ -2376,7 +2400,11 @@ var protectionUx = {
|
|
|
2376
2400
|
errorPairing: "The connection is no longer authorized. Create a new pairing invitation on the sender.",
|
|
2377
2401
|
errorNetwork: "Could not complete the connection. Check that the sender is running and reachable, then retry.",
|
|
2378
2402
|
errorIncomplete: "Some files could not be backed up. Check file access and retry before relying on this backup.",
|
|
2379
|
-
jobsHelp: "Backups, restores and syncs you've run recently — handy for spotting and retrying a failed job."
|
|
2403
|
+
jobsHelp: "Backups, restores and syncs you've run recently — handy for spotting and retrying a failed job.",
|
|
2404
|
+
recentOperationsCount_one: "{{count}} operation",
|
|
2405
|
+
recentOperationsCount_other: "{{count}} operations",
|
|
2406
|
+
pointsCount_one: "{{count}} backup",
|
|
2407
|
+
pointsCount_other: "{{count}} backups"
|
|
2380
2408
|
};
|
|
2381
2409
|
var replicationUx = {
|
|
2382
2410
|
unconfigured: "Choose how to use this device",
|
|
@@ -2410,8 +2438,8 @@ var backupHealth = {
|
|
|
2410
2438
|
neverBackedUpSub: "No completed backup yet. Create the first one to start protecting your library.",
|
|
2411
2439
|
backupNow: "Back up now",
|
|
2412
2440
|
turnOnAutomatic: "Turn on automatic backups",
|
|
2413
|
-
syncUnconfiguredTitle: "
|
|
2414
|
-
syncUnconfiguredSub: "
|
|
2441
|
+
syncUnconfiguredTitle: "Only this device holds a copy so far.",
|
|
2442
|
+
syncUnconfiguredSub: "Pair another device or drive in backup sync to keep an offsite copy.",
|
|
2415
2443
|
syncUnconfiguredAction: "Set up backup sync",
|
|
2416
2444
|
syncDueTitle: "A synced device hasn't been updated.",
|
|
2417
2445
|
syncDueSub: "One of your synced devices hasn't received a backup in a while.",
|
|
@@ -2648,6 +2676,8 @@ declare const CATALOGS: {
|
|
|
2648
2676
|
first: string;
|
|
2649
2677
|
last: string;
|
|
2650
2678
|
jumpToPage: string;
|
|
2679
|
+
noDescription: string;
|
|
2680
|
+
noName: string;
|
|
2651
2681
|
go: string;
|
|
2652
2682
|
goTo: string;
|
|
2653
2683
|
unknownError: string;
|
|
@@ -2655,6 +2685,7 @@ declare const CATALOGS: {
|
|
|
2655
2685
|
loadFailed: string;
|
|
2656
2686
|
show: string;
|
|
2657
2687
|
hide: string;
|
|
2688
|
+
view: string;
|
|
2658
2689
|
selected: string;
|
|
2659
2690
|
available: string;
|
|
2660
2691
|
allSelected: string;
|
|
@@ -3245,6 +3276,8 @@ declare const CATALOGS: {
|
|
|
3245
3276
|
refreshConfirmDescription: string;
|
|
3246
3277
|
refreshed: string;
|
|
3247
3278
|
refreshFailed: string;
|
|
3279
|
+
detailRefresh: string;
|
|
3280
|
+
refreshRateLimited: string;
|
|
3248
3281
|
emptyHint: string;
|
|
3249
3282
|
install: string;
|
|
3250
3283
|
update: string;
|
|
@@ -3471,6 +3504,7 @@ declare const CATALOGS: {
|
|
|
3471
3504
|
edit: string;
|
|
3472
3505
|
switchToVersion: string;
|
|
3473
3506
|
switching: string;
|
|
3507
|
+
moreActions: string;
|
|
3474
3508
|
};
|
|
3475
3509
|
edit: {
|
|
3476
3510
|
title: string;
|
|
@@ -3549,6 +3583,19 @@ declare const CATALOGS: {
|
|
|
3549
3583
|
confirm: string;
|
|
3550
3584
|
};
|
|
3551
3585
|
moreActions: string;
|
|
3586
|
+
find: {
|
|
3587
|
+
placeholder: string;
|
|
3588
|
+
replacePlaceholder: string;
|
|
3589
|
+
matchCase: string;
|
|
3590
|
+
toggleReplace: string;
|
|
3591
|
+
previous: string;
|
|
3592
|
+
next: string;
|
|
3593
|
+
counter: string;
|
|
3594
|
+
noResults: string;
|
|
3595
|
+
replace: string;
|
|
3596
|
+
replaceAll: string;
|
|
3597
|
+
close: string;
|
|
3598
|
+
};
|
|
3552
3599
|
zoom: {
|
|
3553
3600
|
label: string;
|
|
3554
3601
|
smaller: string;
|
|
@@ -3670,6 +3717,11 @@ declare const CATALOGS: {
|
|
|
3670
3717
|
hardDeleteConfirm: string;
|
|
3671
3718
|
hardDeleting: string;
|
|
3672
3719
|
};
|
|
3720
|
+
renameDialog: {
|
|
3721
|
+
folderTitle: string;
|
|
3722
|
+
documentTitle: string;
|
|
3723
|
+
nameLabel: string;
|
|
3724
|
+
};
|
|
3673
3725
|
softDeleteDialog: {
|
|
3674
3726
|
title: string;
|
|
3675
3727
|
description: string;
|
|
@@ -4875,6 +4927,10 @@ declare const CATALOGS: {
|
|
|
4875
4927
|
errorNetwork: string;
|
|
4876
4928
|
errorIncomplete: string;
|
|
4877
4929
|
jobsHelp: string;
|
|
4930
|
+
recentOperationsCount_one: string;
|
|
4931
|
+
recentOperationsCount_other: string;
|
|
4932
|
+
pointsCount_one: string;
|
|
4933
|
+
pointsCount_other: string;
|
|
4878
4934
|
};
|
|
4879
4935
|
replicationUx: {
|
|
4880
4936
|
unconfigured: string;
|
|
@@ -5088,6 +5144,8 @@ declare const CATALOGS: {
|
|
|
5088
5144
|
first: string;
|
|
5089
5145
|
last: string;
|
|
5090
5146
|
jumpToPage: string;
|
|
5147
|
+
noDescription: string;
|
|
5148
|
+
noName: string;
|
|
5091
5149
|
go: string;
|
|
5092
5150
|
goTo: string;
|
|
5093
5151
|
unknownError: string;
|
|
@@ -5095,6 +5153,7 @@ declare const CATALOGS: {
|
|
|
5095
5153
|
loadFailed: string;
|
|
5096
5154
|
show: string;
|
|
5097
5155
|
hide: string;
|
|
5156
|
+
view: string;
|
|
5098
5157
|
selected: string;
|
|
5099
5158
|
available: string;
|
|
5100
5159
|
allSelected: string;
|
|
@@ -5685,6 +5744,8 @@ declare const CATALOGS: {
|
|
|
5685
5744
|
refreshConfirmDescription: string;
|
|
5686
5745
|
refreshed: string;
|
|
5687
5746
|
refreshFailed: string;
|
|
5747
|
+
detailRefresh: string;
|
|
5748
|
+
refreshRateLimited: string;
|
|
5688
5749
|
emptyHint: string;
|
|
5689
5750
|
install: string;
|
|
5690
5751
|
update: string;
|
|
@@ -5911,6 +5972,7 @@ declare const CATALOGS: {
|
|
|
5911
5972
|
edit: string;
|
|
5912
5973
|
switchToVersion: string;
|
|
5913
5974
|
switching: string;
|
|
5975
|
+
moreActions: string;
|
|
5914
5976
|
};
|
|
5915
5977
|
edit: {
|
|
5916
5978
|
title: string;
|
|
@@ -5989,6 +6051,19 @@ declare const CATALOGS: {
|
|
|
5989
6051
|
confirm: string;
|
|
5990
6052
|
};
|
|
5991
6053
|
moreActions: string;
|
|
6054
|
+
find: {
|
|
6055
|
+
placeholder: string;
|
|
6056
|
+
replacePlaceholder: string;
|
|
6057
|
+
matchCase: string;
|
|
6058
|
+
toggleReplace: string;
|
|
6059
|
+
previous: string;
|
|
6060
|
+
next: string;
|
|
6061
|
+
counter: string;
|
|
6062
|
+
noResults: string;
|
|
6063
|
+
replace: string;
|
|
6064
|
+
replaceAll: string;
|
|
6065
|
+
close: string;
|
|
6066
|
+
};
|
|
5992
6067
|
zoom: {
|
|
5993
6068
|
label: string;
|
|
5994
6069
|
smaller: string;
|
|
@@ -6110,6 +6185,11 @@ declare const CATALOGS: {
|
|
|
6110
6185
|
hardDeleteConfirm: string;
|
|
6111
6186
|
hardDeleting: string;
|
|
6112
6187
|
};
|
|
6188
|
+
renameDialog: {
|
|
6189
|
+
folderTitle: string;
|
|
6190
|
+
documentTitle: string;
|
|
6191
|
+
nameLabel: string;
|
|
6192
|
+
};
|
|
6113
6193
|
softDeleteDialog: {
|
|
6114
6194
|
title: string;
|
|
6115
6195
|
description: string;
|
|
@@ -7315,6 +7395,10 @@ declare const CATALOGS: {
|
|
|
7315
7395
|
errorNetwork: string;
|
|
7316
7396
|
errorIncomplete: string;
|
|
7317
7397
|
jobsHelp: string;
|
|
7398
|
+
recentOperationsCount_one: string;
|
|
7399
|
+
recentOperationsCount_other: string;
|
|
7400
|
+
pointsCount_one: string;
|
|
7401
|
+
pointsCount_other: string;
|
|
7318
7402
|
};
|
|
7319
7403
|
replicationUx: {
|
|
7320
7404
|
unconfigured: string;
|
|
@@ -7528,6 +7612,8 @@ declare const CATALOGS: {
|
|
|
7528
7612
|
first: string;
|
|
7529
7613
|
last: string;
|
|
7530
7614
|
jumpToPage: string;
|
|
7615
|
+
noDescription: string;
|
|
7616
|
+
noName: string;
|
|
7531
7617
|
go: string;
|
|
7532
7618
|
goTo: string;
|
|
7533
7619
|
unknownError: string;
|
|
@@ -7535,6 +7621,7 @@ declare const CATALOGS: {
|
|
|
7535
7621
|
loadFailed: string;
|
|
7536
7622
|
show: string;
|
|
7537
7623
|
hide: string;
|
|
7624
|
+
view: string;
|
|
7538
7625
|
selected: string;
|
|
7539
7626
|
available: string;
|
|
7540
7627
|
allSelected: string;
|
|
@@ -8125,6 +8212,8 @@ declare const CATALOGS: {
|
|
|
8125
8212
|
refreshConfirmDescription: string;
|
|
8126
8213
|
refreshed: string;
|
|
8127
8214
|
refreshFailed: string;
|
|
8215
|
+
detailRefresh: string;
|
|
8216
|
+
refreshRateLimited: string;
|
|
8128
8217
|
emptyHint: string;
|
|
8129
8218
|
install: string;
|
|
8130
8219
|
update: string;
|
|
@@ -8351,6 +8440,7 @@ declare const CATALOGS: {
|
|
|
8351
8440
|
edit: string;
|
|
8352
8441
|
switchToVersion: string;
|
|
8353
8442
|
switching: string;
|
|
8443
|
+
moreActions: string;
|
|
8354
8444
|
};
|
|
8355
8445
|
edit: {
|
|
8356
8446
|
title: string;
|
|
@@ -8429,6 +8519,19 @@ declare const CATALOGS: {
|
|
|
8429
8519
|
confirm: string;
|
|
8430
8520
|
};
|
|
8431
8521
|
moreActions: string;
|
|
8522
|
+
find: {
|
|
8523
|
+
placeholder: string;
|
|
8524
|
+
replacePlaceholder: string;
|
|
8525
|
+
matchCase: string;
|
|
8526
|
+
toggleReplace: string;
|
|
8527
|
+
previous: string;
|
|
8528
|
+
next: string;
|
|
8529
|
+
counter: string;
|
|
8530
|
+
noResults: string;
|
|
8531
|
+
replace: string;
|
|
8532
|
+
replaceAll: string;
|
|
8533
|
+
close: string;
|
|
8534
|
+
};
|
|
8432
8535
|
zoom: {
|
|
8433
8536
|
label: string;
|
|
8434
8537
|
smaller: string;
|
|
@@ -8550,6 +8653,11 @@ declare const CATALOGS: {
|
|
|
8550
8653
|
hardDeleteConfirm: string;
|
|
8551
8654
|
hardDeleting: string;
|
|
8552
8655
|
};
|
|
8656
|
+
renameDialog: {
|
|
8657
|
+
folderTitle: string;
|
|
8658
|
+
documentTitle: string;
|
|
8659
|
+
nameLabel: string;
|
|
8660
|
+
};
|
|
8553
8661
|
softDeleteDialog: {
|
|
8554
8662
|
title: string;
|
|
8555
8663
|
description: string;
|
|
@@ -9755,6 +9863,10 @@ declare const CATALOGS: {
|
|
|
9755
9863
|
errorNetwork: string;
|
|
9756
9864
|
errorIncomplete: string;
|
|
9757
9865
|
jobsHelp: string;
|
|
9866
|
+
recentOperationsCount_one: string;
|
|
9867
|
+
recentOperationsCount_other: string;
|
|
9868
|
+
pointsCount_one: string;
|
|
9869
|
+
pointsCount_other: string;
|
|
9758
9870
|
};
|
|
9759
9871
|
replicationUx: {
|
|
9760
9872
|
unconfigured: string;
|
|
@@ -9968,6 +10080,8 @@ declare const CATALOGS: {
|
|
|
9968
10080
|
first: string;
|
|
9969
10081
|
last: string;
|
|
9970
10082
|
jumpToPage: string;
|
|
10083
|
+
noDescription: string;
|
|
10084
|
+
noName: string;
|
|
9971
10085
|
go: string;
|
|
9972
10086
|
goTo: string;
|
|
9973
10087
|
unknownError: string;
|
|
@@ -9975,6 +10089,7 @@ declare const CATALOGS: {
|
|
|
9975
10089
|
loadFailed: string;
|
|
9976
10090
|
show: string;
|
|
9977
10091
|
hide: string;
|
|
10092
|
+
view: string;
|
|
9978
10093
|
selected: string;
|
|
9979
10094
|
available: string;
|
|
9980
10095
|
allSelected: string;
|
|
@@ -10565,6 +10680,8 @@ declare const CATALOGS: {
|
|
|
10565
10680
|
refreshConfirmDescription: string;
|
|
10566
10681
|
refreshed: string;
|
|
10567
10682
|
refreshFailed: string;
|
|
10683
|
+
detailRefresh: string;
|
|
10684
|
+
refreshRateLimited: string;
|
|
10568
10685
|
emptyHint: string;
|
|
10569
10686
|
install: string;
|
|
10570
10687
|
update: string;
|
|
@@ -10791,6 +10908,7 @@ declare const CATALOGS: {
|
|
|
10791
10908
|
edit: string;
|
|
10792
10909
|
switchToVersion: string;
|
|
10793
10910
|
switching: string;
|
|
10911
|
+
moreActions: string;
|
|
10794
10912
|
};
|
|
10795
10913
|
edit: {
|
|
10796
10914
|
title: string;
|
|
@@ -10869,6 +10987,19 @@ declare const CATALOGS: {
|
|
|
10869
10987
|
confirm: string;
|
|
10870
10988
|
};
|
|
10871
10989
|
moreActions: string;
|
|
10990
|
+
find: {
|
|
10991
|
+
placeholder: string;
|
|
10992
|
+
replacePlaceholder: string;
|
|
10993
|
+
matchCase: string;
|
|
10994
|
+
toggleReplace: string;
|
|
10995
|
+
previous: string;
|
|
10996
|
+
next: string;
|
|
10997
|
+
counter: string;
|
|
10998
|
+
noResults: string;
|
|
10999
|
+
replace: string;
|
|
11000
|
+
replaceAll: string;
|
|
11001
|
+
close: string;
|
|
11002
|
+
};
|
|
10872
11003
|
zoom: {
|
|
10873
11004
|
label: string;
|
|
10874
11005
|
smaller: string;
|
|
@@ -10990,6 +11121,11 @@ declare const CATALOGS: {
|
|
|
10990
11121
|
hardDeleteConfirm: string;
|
|
10991
11122
|
hardDeleting: string;
|
|
10992
11123
|
};
|
|
11124
|
+
renameDialog: {
|
|
11125
|
+
folderTitle: string;
|
|
11126
|
+
documentTitle: string;
|
|
11127
|
+
nameLabel: string;
|
|
11128
|
+
};
|
|
10993
11129
|
softDeleteDialog: {
|
|
10994
11130
|
title: string;
|
|
10995
11131
|
description: string;
|
|
@@ -12195,6 +12331,10 @@ declare const CATALOGS: {
|
|
|
12195
12331
|
errorNetwork: string;
|
|
12196
12332
|
errorIncomplete: string;
|
|
12197
12333
|
jobsHelp: string;
|
|
12334
|
+
recentOperationsCount_one: string;
|
|
12335
|
+
recentOperationsCount_other: string;
|
|
12336
|
+
pointsCount_one: string;
|
|
12337
|
+
pointsCount_other: string;
|
|
12198
12338
|
};
|
|
12199
12339
|
replicationUx: {
|
|
12200
12340
|
unconfigured: string;
|
|
@@ -12408,6 +12548,8 @@ declare const CATALOGS: {
|
|
|
12408
12548
|
first: string;
|
|
12409
12549
|
last: string;
|
|
12410
12550
|
jumpToPage: string;
|
|
12551
|
+
noDescription: string;
|
|
12552
|
+
noName: string;
|
|
12411
12553
|
go: string;
|
|
12412
12554
|
goTo: string;
|
|
12413
12555
|
unknownError: string;
|
|
@@ -12415,6 +12557,7 @@ declare const CATALOGS: {
|
|
|
12415
12557
|
loadFailed: string;
|
|
12416
12558
|
show: string;
|
|
12417
12559
|
hide: string;
|
|
12560
|
+
view: string;
|
|
12418
12561
|
selected: string;
|
|
12419
12562
|
available: string;
|
|
12420
12563
|
allSelected: string;
|
|
@@ -13005,6 +13148,8 @@ declare const CATALOGS: {
|
|
|
13005
13148
|
refreshConfirmDescription: string;
|
|
13006
13149
|
refreshed: string;
|
|
13007
13150
|
refreshFailed: string;
|
|
13151
|
+
detailRefresh: string;
|
|
13152
|
+
refreshRateLimited: string;
|
|
13008
13153
|
emptyHint: string;
|
|
13009
13154
|
install: string;
|
|
13010
13155
|
update: string;
|
|
@@ -13231,6 +13376,7 @@ declare const CATALOGS: {
|
|
|
13231
13376
|
edit: string;
|
|
13232
13377
|
switchToVersion: string;
|
|
13233
13378
|
switching: string;
|
|
13379
|
+
moreActions: string;
|
|
13234
13380
|
};
|
|
13235
13381
|
edit: {
|
|
13236
13382
|
title: string;
|
|
@@ -13309,6 +13455,19 @@ declare const CATALOGS: {
|
|
|
13309
13455
|
confirm: string;
|
|
13310
13456
|
};
|
|
13311
13457
|
moreActions: string;
|
|
13458
|
+
find: {
|
|
13459
|
+
placeholder: string;
|
|
13460
|
+
replacePlaceholder: string;
|
|
13461
|
+
matchCase: string;
|
|
13462
|
+
toggleReplace: string;
|
|
13463
|
+
previous: string;
|
|
13464
|
+
next: string;
|
|
13465
|
+
counter: string;
|
|
13466
|
+
noResults: string;
|
|
13467
|
+
replace: string;
|
|
13468
|
+
replaceAll: string;
|
|
13469
|
+
close: string;
|
|
13470
|
+
};
|
|
13312
13471
|
zoom: {
|
|
13313
13472
|
label: string;
|
|
13314
13473
|
smaller: string;
|
|
@@ -13430,6 +13589,11 @@ declare const CATALOGS: {
|
|
|
13430
13589
|
hardDeleteConfirm: string;
|
|
13431
13590
|
hardDeleting: string;
|
|
13432
13591
|
};
|
|
13592
|
+
renameDialog: {
|
|
13593
|
+
folderTitle: string;
|
|
13594
|
+
documentTitle: string;
|
|
13595
|
+
nameLabel: string;
|
|
13596
|
+
};
|
|
13433
13597
|
softDeleteDialog: {
|
|
13434
13598
|
title: string;
|
|
13435
13599
|
description: string;
|
|
@@ -14635,6 +14799,10 @@ declare const CATALOGS: {
|
|
|
14635
14799
|
errorNetwork: string;
|
|
14636
14800
|
errorIncomplete: string;
|
|
14637
14801
|
jobsHelp: string;
|
|
14802
|
+
recentOperationsCount_one: string;
|
|
14803
|
+
recentOperationsCount_other: string;
|
|
14804
|
+
pointsCount_one: string;
|
|
14805
|
+
pointsCount_other: string;
|
|
14638
14806
|
};
|
|
14639
14807
|
replicationUx: {
|
|
14640
14808
|
unconfigured: string;
|
package/dist/catalogs.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { C as CATALOGS, c as catalogFor } from './catalogs-
|
|
1
|
+
export { C as CATALOGS, c as catalogFor } from './catalogs-CJojj7ku.js';
|
|
2
2
|
import './core.js';
|