@hoardodile/i18n 0.1.4 → 0.1.6
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/shell.d.ts +343 -0
- package/dist/catalogs/shell.js +284 -0
- package/dist/catalogs/shell.js.map +1 -0
- package/dist/catalogs/workbench.d.ts +90 -0
- package/dist/catalogs/workbench.js +75 -0
- package/dist/catalogs/workbench.js.map +1 -1
- package/dist/{catalogs-P15rGrmg.d.ts → catalogs-CfJSusJy.d.ts} +178 -28
- package/dist/catalogs.d.ts +1 -1
- package/dist/catalogs.js +195 -70
- package/dist/catalogs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +195 -70
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
- package/src/catalogs/de.json +38 -13
- package/src/catalogs/en.json +38 -13
- package/src/catalogs/es.json +38 -13
- package/src/catalogs/ja.json +38 -13
- package/src/catalogs/shell.ts +32 -0
- package/src/catalogs/zh.json +43 -18
- package/src/parity.test.ts +41 -0
- package/src/shell/de.json +53 -0
- package/src/shell/en.json +53 -0
- package/src/shell/es.json +53 -0
- package/src/shell/ja.json +53 -0
- package/src/shell/zh.json +53 -0
- package/src/update-copy.test.ts +52 -0
- package/src/workbench/de.json +15 -0
- package/src/workbench/en.json +15 -0
- package/src/workbench/es.json +15 -0
- package/src/workbench/ja.json +15 -0
- package/src/workbench/zh.json +15 -0
|
@@ -133,6 +133,7 @@ var appShell = {
|
|
|
133
133
|
marketplace: "Marketplace",
|
|
134
134
|
marketplaceUpdatesBadge: "Plugin updates available",
|
|
135
135
|
feedbackAbout: "Feedback & About",
|
|
136
|
+
updateAvailableBadge: "Update available",
|
|
136
137
|
help: "Help"
|
|
137
138
|
},
|
|
138
139
|
syncDueBadge: "A sync reminder is due",
|
|
@@ -318,13 +319,16 @@ var me = {
|
|
|
318
319
|
latest: "You're on the latest version.",
|
|
319
320
|
outdated: "Version {{version}} is available.",
|
|
320
321
|
viewRelease: "View release",
|
|
322
|
+
updateAvailable: "A new version {{version}} is available.",
|
|
321
323
|
updateError: "Update check failed. Please try again later.",
|
|
322
324
|
downloading: "Downloading… {{percent}}%",
|
|
323
|
-
updateReady: "Version {{version}} is ready
|
|
324
|
-
updateReadyResources: "
|
|
325
|
+
updateReady: "Version {{version}} is ready.",
|
|
326
|
+
updateReadyResources: "Version {{version}} is ready.",
|
|
327
|
+
updateFullReason: "Reopen the app to finish updating.",
|
|
328
|
+
updateResourcesReason: "This updates automatically — you can keep using the app.",
|
|
325
329
|
applyResources: "Apply",
|
|
326
330
|
resourcesVersion: "Resources v{{version}}",
|
|
327
|
-
restartToUpdate: "
|
|
331
|
+
restartToUpdate: "Reopen the app",
|
|
328
332
|
portableHint: "Portable builds update by downloading a new zip from GitHub."
|
|
329
333
|
},
|
|
330
334
|
connections: {
|
|
@@ -411,7 +415,7 @@ var me = {
|
|
|
411
415
|
},
|
|
412
416
|
autoUpdate: {
|
|
413
417
|
title: "Automatic updates",
|
|
414
|
-
description: "Download GitHub releases in the background.
|
|
418
|
+
description: "Download GitHub releases in the background. You'll be asked before the app reopens."
|
|
415
419
|
},
|
|
416
420
|
closeAction: {
|
|
417
421
|
title: "When closing the window",
|
|
@@ -420,9 +424,9 @@ var me = {
|
|
|
420
424
|
tray: "Hide to tray",
|
|
421
425
|
quit: "Quit the app"
|
|
422
426
|
},
|
|
423
|
-
updateBanner: "Version {{version}} is ready
|
|
424
|
-
updateBannerResources: "
|
|
425
|
-
updateBannerRestart: "
|
|
427
|
+
updateBanner: "Version {{version}} is ready.",
|
|
428
|
+
updateBannerResources: "Version {{version}} is ready.",
|
|
429
|
+
updateBannerRestart: "Reopen the app",
|
|
426
430
|
updateBannerApply: "Apply",
|
|
427
431
|
updateApplying: "Applying resources update…",
|
|
428
432
|
updatePhaseStopping: "Stopping the local server…",
|
|
@@ -551,6 +555,25 @@ var plugins = {
|
|
|
551
555
|
uninstallConfirmDescription_other: "{{count}} resources are using this plugin. After uninstalling, they will preview with the built-in file plugin; reinstalling the plugin restores them automatically. This cannot be undone.",
|
|
552
556
|
uninstallConfirmNoUsage: "No resources are using this plugin. Reinstall it any time to use it again. This cannot be undone.",
|
|
553
557
|
uninstallSuccess: "Uninstalled {{name}}",
|
|
558
|
+
replaceContentAction: "Replace content…",
|
|
559
|
+
replaceContentTitle: "Replace content plugin",
|
|
560
|
+
replaceContentDescription: "Move every resource that one content plugin handles to another. Each resource's content plugin is re-assigned and its derived metadata is cleared for re-detection.",
|
|
561
|
+
replaceContentFrom: "From plugin",
|
|
562
|
+
replaceContentTo: "To plugin",
|
|
563
|
+
replaceContentToPlaceholder: "Choose a target plugin",
|
|
564
|
+
replaceContentRebuild: "Rebuild",
|
|
565
|
+
replaceContentRebuildImmediate: "Rebuild now (background)",
|
|
566
|
+
replaceContentRebuildImmediateDescription: "Start the metadata rebuild for every affected resource in the background immediately.",
|
|
567
|
+
replaceContentRebuildDefer: "Rebuild when next seen",
|
|
568
|
+
replaceContentRebuildDeferDescription: "Clear metadata now; each resource rebuilds the next time it is opened.",
|
|
569
|
+
replaceContentConfirm: "Replace",
|
|
570
|
+
replaceContentPassed: "Replaced",
|
|
571
|
+
replaceContentFailed: "Not detected",
|
|
572
|
+
replaceContentNoContent: "This content plugin owns no resources.",
|
|
573
|
+
replaceContentSamePlugin: "Source and target plugins must differ.",
|
|
574
|
+
replaceContentInvalidTarget: "The target content plugin is not available.",
|
|
575
|
+
replaceContentEmptyFrom: "No content plugin owns any resources to replace.",
|
|
576
|
+
replaceContentMissingLabel: "missing",
|
|
554
577
|
resetAllPluginPrefSuccess: "All plugin settings have been reset",
|
|
555
578
|
resetAllPluginPrefConfirmTitle: "Reset all plugin settings?",
|
|
556
579
|
resetAllPluginPrefConfirmDescription: "This will delete every plugin's saved settings. All plugins will use their default values after restart. This cannot be undone.",
|
|
@@ -609,18 +632,18 @@ var marketplace = {
|
|
|
609
632
|
pluginId: "Plugin ID",
|
|
610
633
|
repository: "Repository",
|
|
611
634
|
latestRelease: "Latest release",
|
|
612
|
-
manifestVersion: "Manifest version",
|
|
613
635
|
packageAsset: "Asset",
|
|
614
636
|
checksum: "SHA-256",
|
|
615
637
|
notInstalled: "Not installed",
|
|
616
638
|
reportIssue: "Report an issue",
|
|
617
639
|
reportSecurity: "Report a security vulnerability",
|
|
618
640
|
requestFeature: "Request a feature",
|
|
619
|
-
|
|
641
|
+
readme: "Readme",
|
|
620
642
|
languages: "Languages",
|
|
621
|
-
|
|
643
|
+
noReadme: "This release ships no readme",
|
|
622
644
|
noReleaseNotes: "This release has no release notes",
|
|
623
645
|
errorRateLimitedShort: "Latest release info unavailable — retrying automatically.",
|
|
646
|
+
updateUnavailableRateLimited: "v{{version}} has been published, but updating is temporarily unavailable (GitHub rate limit)",
|
|
624
647
|
configureRegistry: "Configure registry",
|
|
625
648
|
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.",
|
|
626
649
|
registryDialogTitle: "Plugin marketplace registry",
|
|
@@ -629,6 +652,8 @@ var marketplace = {
|
|
|
629
652
|
filterInstalled: "Installed",
|
|
630
653
|
filterUpdates: "Updates",
|
|
631
654
|
emptyFilterHint: "No plugins match this filter.",
|
|
655
|
+
searchPlaceholder: "Search plugins",
|
|
656
|
+
searchEmpty: "No plugins match your search.",
|
|
632
657
|
requiresAppVersion: "Requires hoardodile ≥ v{{version}}",
|
|
633
658
|
incompatibleAppVersion: "This plugin requires hoardodile ≥ v{{require}}; this host runs v{{current}}",
|
|
634
659
|
registryActive: "Current registry: {{url}}"
|
|
@@ -2253,8 +2278,8 @@ var desktopShell = {
|
|
|
2253
2278
|
changeLibrary: "Change library…",
|
|
2254
2279
|
copyLanAddress: "Copy LAN address",
|
|
2255
2280
|
restartServer: "Restart server",
|
|
2256
|
-
updateReady: "Update ready —
|
|
2257
|
-
updateReadyResources: "
|
|
2281
|
+
updateReady: "Update ready — Reopen the app",
|
|
2282
|
+
updateReadyResources: "Update ready — Open to apply",
|
|
2258
2283
|
quit: "Quit",
|
|
2259
2284
|
tooltipServerStopped: "hoardodile — server stopped",
|
|
2260
2285
|
tooltipUpdateReady: "hoardodile — update ready",
|
|
@@ -2287,7 +2312,7 @@ var desktopShell = {
|
|
|
2287
2312
|
startInTray: "Start in tray",
|
|
2288
2313
|
startInTrayHint: "No window until you choose Open from the tray.",
|
|
2289
2314
|
"continue": "Continue",
|
|
2290
|
-
missingBridge: "
|
|
2315
|
+
missingBridge: "The app couldn't start. Reopen the app."
|
|
2291
2316
|
}
|
|
2292
2317
|
};
|
|
2293
2318
|
var en = {
|
|
@@ -2477,6 +2502,7 @@ declare const CATALOGS: {
|
|
|
2477
2502
|
marketplace: string;
|
|
2478
2503
|
marketplaceUpdatesBadge: string;
|
|
2479
2504
|
feedbackAbout: string;
|
|
2505
|
+
updateAvailableBadge: string;
|
|
2480
2506
|
help: string;
|
|
2481
2507
|
};
|
|
2482
2508
|
syncDueBadge: string;
|
|
@@ -2662,10 +2688,13 @@ declare const CATALOGS: {
|
|
|
2662
2688
|
latest: string;
|
|
2663
2689
|
outdated: string;
|
|
2664
2690
|
viewRelease: string;
|
|
2691
|
+
updateAvailable: string;
|
|
2665
2692
|
updateError: string;
|
|
2666
2693
|
downloading: string;
|
|
2667
2694
|
updateReady: string;
|
|
2668
2695
|
updateReadyResources: string;
|
|
2696
|
+
updateFullReason: string;
|
|
2697
|
+
updateResourcesReason: string;
|
|
2669
2698
|
applyResources: string;
|
|
2670
2699
|
resourcesVersion: string;
|
|
2671
2700
|
restartToUpdate: string;
|
|
@@ -2895,6 +2924,25 @@ declare const CATALOGS: {
|
|
|
2895
2924
|
uninstallConfirmDescription_other: string;
|
|
2896
2925
|
uninstallConfirmNoUsage: string;
|
|
2897
2926
|
uninstallSuccess: string;
|
|
2927
|
+
replaceContentAction: string;
|
|
2928
|
+
replaceContentTitle: string;
|
|
2929
|
+
replaceContentDescription: string;
|
|
2930
|
+
replaceContentFrom: string;
|
|
2931
|
+
replaceContentTo: string;
|
|
2932
|
+
replaceContentToPlaceholder: string;
|
|
2933
|
+
replaceContentRebuild: string;
|
|
2934
|
+
replaceContentRebuildImmediate: string;
|
|
2935
|
+
replaceContentRebuildImmediateDescription: string;
|
|
2936
|
+
replaceContentRebuildDefer: string;
|
|
2937
|
+
replaceContentRebuildDeferDescription: string;
|
|
2938
|
+
replaceContentConfirm: string;
|
|
2939
|
+
replaceContentPassed: string;
|
|
2940
|
+
replaceContentFailed: string;
|
|
2941
|
+
replaceContentNoContent: string;
|
|
2942
|
+
replaceContentSamePlugin: string;
|
|
2943
|
+
replaceContentInvalidTarget: string;
|
|
2944
|
+
replaceContentEmptyFrom: string;
|
|
2945
|
+
replaceContentMissingLabel: string;
|
|
2898
2946
|
resetAllPluginPrefSuccess: string;
|
|
2899
2947
|
resetAllPluginPrefConfirmTitle: string;
|
|
2900
2948
|
resetAllPluginPrefConfirmDescription: string;
|
|
@@ -2953,18 +3001,18 @@ declare const CATALOGS: {
|
|
|
2953
3001
|
pluginId: string;
|
|
2954
3002
|
repository: string;
|
|
2955
3003
|
latestRelease: string;
|
|
2956
|
-
manifestVersion: string;
|
|
2957
3004
|
packageAsset: string;
|
|
2958
3005
|
checksum: string;
|
|
2959
3006
|
notInstalled: string;
|
|
2960
3007
|
reportIssue: string;
|
|
2961
3008
|
reportSecurity: string;
|
|
2962
3009
|
requestFeature: string;
|
|
2963
|
-
|
|
3010
|
+
readme: string;
|
|
2964
3011
|
languages: string;
|
|
2965
|
-
|
|
3012
|
+
noReadme: string;
|
|
2966
3013
|
noReleaseNotes: string;
|
|
2967
3014
|
errorRateLimitedShort: string;
|
|
3015
|
+
updateUnavailableRateLimited: string;
|
|
2968
3016
|
configureRegistry: string;
|
|
2969
3017
|
pageHint: string;
|
|
2970
3018
|
registryDialogTitle: string;
|
|
@@ -2973,6 +3021,8 @@ declare const CATALOGS: {
|
|
|
2973
3021
|
filterInstalled: string;
|
|
2974
3022
|
filterUpdates: string;
|
|
2975
3023
|
emptyFilterHint: string;
|
|
3024
|
+
searchPlaceholder: string;
|
|
3025
|
+
searchEmpty: string;
|
|
2976
3026
|
requiresAppVersion: string;
|
|
2977
3027
|
incompatibleAppVersion: string;
|
|
2978
3028
|
registryActive: string;
|
|
@@ -4769,6 +4819,7 @@ declare const CATALOGS: {
|
|
|
4769
4819
|
marketplace: string;
|
|
4770
4820
|
marketplaceUpdatesBadge: string;
|
|
4771
4821
|
feedbackAbout: string;
|
|
4822
|
+
updateAvailableBadge: string;
|
|
4772
4823
|
help: string;
|
|
4773
4824
|
};
|
|
4774
4825
|
syncDueBadge: string;
|
|
@@ -4954,10 +5005,13 @@ declare const CATALOGS: {
|
|
|
4954
5005
|
latest: string;
|
|
4955
5006
|
outdated: string;
|
|
4956
5007
|
viewRelease: string;
|
|
5008
|
+
updateAvailable: string;
|
|
4957
5009
|
updateError: string;
|
|
4958
5010
|
downloading: string;
|
|
4959
5011
|
updateReady: string;
|
|
4960
5012
|
updateReadyResources: string;
|
|
5013
|
+
updateFullReason: string;
|
|
5014
|
+
updateResourcesReason: string;
|
|
4961
5015
|
applyResources: string;
|
|
4962
5016
|
resourcesVersion: string;
|
|
4963
5017
|
restartToUpdate: string;
|
|
@@ -5187,6 +5241,25 @@ declare const CATALOGS: {
|
|
|
5187
5241
|
uninstallConfirmDescription_other: string;
|
|
5188
5242
|
uninstallConfirmNoUsage: string;
|
|
5189
5243
|
uninstallSuccess: string;
|
|
5244
|
+
replaceContentAction: string;
|
|
5245
|
+
replaceContentTitle: string;
|
|
5246
|
+
replaceContentDescription: string;
|
|
5247
|
+
replaceContentFrom: string;
|
|
5248
|
+
replaceContentTo: string;
|
|
5249
|
+
replaceContentToPlaceholder: string;
|
|
5250
|
+
replaceContentRebuild: string;
|
|
5251
|
+
replaceContentRebuildImmediate: string;
|
|
5252
|
+
replaceContentRebuildImmediateDescription: string;
|
|
5253
|
+
replaceContentRebuildDefer: string;
|
|
5254
|
+
replaceContentRebuildDeferDescription: string;
|
|
5255
|
+
replaceContentConfirm: string;
|
|
5256
|
+
replaceContentPassed: string;
|
|
5257
|
+
replaceContentFailed: string;
|
|
5258
|
+
replaceContentNoContent: string;
|
|
5259
|
+
replaceContentSamePlugin: string;
|
|
5260
|
+
replaceContentInvalidTarget: string;
|
|
5261
|
+
replaceContentEmptyFrom: string;
|
|
5262
|
+
replaceContentMissingLabel: string;
|
|
5190
5263
|
resetAllPluginPrefSuccess: string;
|
|
5191
5264
|
resetAllPluginPrefConfirmTitle: string;
|
|
5192
5265
|
resetAllPluginPrefConfirmDescription: string;
|
|
@@ -5245,18 +5318,18 @@ declare const CATALOGS: {
|
|
|
5245
5318
|
pluginId: string;
|
|
5246
5319
|
repository: string;
|
|
5247
5320
|
latestRelease: string;
|
|
5248
|
-
manifestVersion: string;
|
|
5249
5321
|
packageAsset: string;
|
|
5250
5322
|
checksum: string;
|
|
5251
5323
|
notInstalled: string;
|
|
5252
5324
|
reportIssue: string;
|
|
5253
5325
|
reportSecurity: string;
|
|
5254
5326
|
requestFeature: string;
|
|
5255
|
-
|
|
5327
|
+
readme: string;
|
|
5256
5328
|
languages: string;
|
|
5257
|
-
|
|
5329
|
+
noReadme: string;
|
|
5258
5330
|
noReleaseNotes: string;
|
|
5259
5331
|
errorRateLimitedShort: string;
|
|
5332
|
+
updateUnavailableRateLimited: string;
|
|
5260
5333
|
configureRegistry: string;
|
|
5261
5334
|
pageHint: string;
|
|
5262
5335
|
registryDialogTitle: string;
|
|
@@ -5265,6 +5338,8 @@ declare const CATALOGS: {
|
|
|
5265
5338
|
filterInstalled: string;
|
|
5266
5339
|
filterUpdates: string;
|
|
5267
5340
|
emptyFilterHint: string;
|
|
5341
|
+
searchPlaceholder: string;
|
|
5342
|
+
searchEmpty: string;
|
|
5268
5343
|
requiresAppVersion: string;
|
|
5269
5344
|
incompatibleAppVersion: string;
|
|
5270
5345
|
registryActive: string;
|
|
@@ -7061,6 +7136,7 @@ declare const CATALOGS: {
|
|
|
7061
7136
|
marketplace: string;
|
|
7062
7137
|
marketplaceUpdatesBadge: string;
|
|
7063
7138
|
feedbackAbout: string;
|
|
7139
|
+
updateAvailableBadge: string;
|
|
7064
7140
|
help: string;
|
|
7065
7141
|
};
|
|
7066
7142
|
syncDueBadge: string;
|
|
@@ -7246,10 +7322,13 @@ declare const CATALOGS: {
|
|
|
7246
7322
|
latest: string;
|
|
7247
7323
|
outdated: string;
|
|
7248
7324
|
viewRelease: string;
|
|
7325
|
+
updateAvailable: string;
|
|
7249
7326
|
updateError: string;
|
|
7250
7327
|
downloading: string;
|
|
7251
7328
|
updateReady: string;
|
|
7252
7329
|
updateReadyResources: string;
|
|
7330
|
+
updateFullReason: string;
|
|
7331
|
+
updateResourcesReason: string;
|
|
7253
7332
|
applyResources: string;
|
|
7254
7333
|
resourcesVersion: string;
|
|
7255
7334
|
restartToUpdate: string;
|
|
@@ -7479,6 +7558,25 @@ declare const CATALOGS: {
|
|
|
7479
7558
|
uninstallConfirmDescription_other: string;
|
|
7480
7559
|
uninstallConfirmNoUsage: string;
|
|
7481
7560
|
uninstallSuccess: string;
|
|
7561
|
+
replaceContentAction: string;
|
|
7562
|
+
replaceContentTitle: string;
|
|
7563
|
+
replaceContentDescription: string;
|
|
7564
|
+
replaceContentFrom: string;
|
|
7565
|
+
replaceContentTo: string;
|
|
7566
|
+
replaceContentToPlaceholder: string;
|
|
7567
|
+
replaceContentRebuild: string;
|
|
7568
|
+
replaceContentRebuildImmediate: string;
|
|
7569
|
+
replaceContentRebuildImmediateDescription: string;
|
|
7570
|
+
replaceContentRebuildDefer: string;
|
|
7571
|
+
replaceContentRebuildDeferDescription: string;
|
|
7572
|
+
replaceContentConfirm: string;
|
|
7573
|
+
replaceContentPassed: string;
|
|
7574
|
+
replaceContentFailed: string;
|
|
7575
|
+
replaceContentNoContent: string;
|
|
7576
|
+
replaceContentSamePlugin: string;
|
|
7577
|
+
replaceContentInvalidTarget: string;
|
|
7578
|
+
replaceContentEmptyFrom: string;
|
|
7579
|
+
replaceContentMissingLabel: string;
|
|
7482
7580
|
resetAllPluginPrefSuccess: string;
|
|
7483
7581
|
resetAllPluginPrefConfirmTitle: string;
|
|
7484
7582
|
resetAllPluginPrefConfirmDescription: string;
|
|
@@ -7537,18 +7635,18 @@ declare const CATALOGS: {
|
|
|
7537
7635
|
pluginId: string;
|
|
7538
7636
|
repository: string;
|
|
7539
7637
|
latestRelease: string;
|
|
7540
|
-
manifestVersion: string;
|
|
7541
7638
|
packageAsset: string;
|
|
7542
7639
|
checksum: string;
|
|
7543
7640
|
notInstalled: string;
|
|
7544
7641
|
reportIssue: string;
|
|
7545
7642
|
reportSecurity: string;
|
|
7546
7643
|
requestFeature: string;
|
|
7547
|
-
|
|
7644
|
+
readme: string;
|
|
7548
7645
|
languages: string;
|
|
7549
|
-
|
|
7646
|
+
noReadme: string;
|
|
7550
7647
|
noReleaseNotes: string;
|
|
7551
7648
|
errorRateLimitedShort: string;
|
|
7649
|
+
updateUnavailableRateLimited: string;
|
|
7552
7650
|
configureRegistry: string;
|
|
7553
7651
|
pageHint: string;
|
|
7554
7652
|
registryDialogTitle: string;
|
|
@@ -7557,6 +7655,8 @@ declare const CATALOGS: {
|
|
|
7557
7655
|
filterInstalled: string;
|
|
7558
7656
|
filterUpdates: string;
|
|
7559
7657
|
emptyFilterHint: string;
|
|
7658
|
+
searchPlaceholder: string;
|
|
7659
|
+
searchEmpty: string;
|
|
7560
7660
|
requiresAppVersion: string;
|
|
7561
7661
|
incompatibleAppVersion: string;
|
|
7562
7662
|
registryActive: string;
|
|
@@ -9353,6 +9453,7 @@ declare const CATALOGS: {
|
|
|
9353
9453
|
marketplace: string;
|
|
9354
9454
|
marketplaceUpdatesBadge: string;
|
|
9355
9455
|
feedbackAbout: string;
|
|
9456
|
+
updateAvailableBadge: string;
|
|
9356
9457
|
help: string;
|
|
9357
9458
|
};
|
|
9358
9459
|
syncDueBadge: string;
|
|
@@ -9538,10 +9639,13 @@ declare const CATALOGS: {
|
|
|
9538
9639
|
latest: string;
|
|
9539
9640
|
outdated: string;
|
|
9540
9641
|
viewRelease: string;
|
|
9642
|
+
updateAvailable: string;
|
|
9541
9643
|
updateError: string;
|
|
9542
9644
|
downloading: string;
|
|
9543
9645
|
updateReady: string;
|
|
9544
9646
|
updateReadyResources: string;
|
|
9647
|
+
updateFullReason: string;
|
|
9648
|
+
updateResourcesReason: string;
|
|
9545
9649
|
applyResources: string;
|
|
9546
9650
|
resourcesVersion: string;
|
|
9547
9651
|
restartToUpdate: string;
|
|
@@ -9771,6 +9875,25 @@ declare const CATALOGS: {
|
|
|
9771
9875
|
uninstallConfirmDescription_other: string;
|
|
9772
9876
|
uninstallConfirmNoUsage: string;
|
|
9773
9877
|
uninstallSuccess: string;
|
|
9878
|
+
replaceContentAction: string;
|
|
9879
|
+
replaceContentTitle: string;
|
|
9880
|
+
replaceContentDescription: string;
|
|
9881
|
+
replaceContentFrom: string;
|
|
9882
|
+
replaceContentTo: string;
|
|
9883
|
+
replaceContentToPlaceholder: string;
|
|
9884
|
+
replaceContentRebuild: string;
|
|
9885
|
+
replaceContentRebuildImmediate: string;
|
|
9886
|
+
replaceContentRebuildImmediateDescription: string;
|
|
9887
|
+
replaceContentRebuildDefer: string;
|
|
9888
|
+
replaceContentRebuildDeferDescription: string;
|
|
9889
|
+
replaceContentConfirm: string;
|
|
9890
|
+
replaceContentPassed: string;
|
|
9891
|
+
replaceContentFailed: string;
|
|
9892
|
+
replaceContentNoContent: string;
|
|
9893
|
+
replaceContentSamePlugin: string;
|
|
9894
|
+
replaceContentInvalidTarget: string;
|
|
9895
|
+
replaceContentEmptyFrom: string;
|
|
9896
|
+
replaceContentMissingLabel: string;
|
|
9774
9897
|
resetAllPluginPrefSuccess: string;
|
|
9775
9898
|
resetAllPluginPrefConfirmTitle: string;
|
|
9776
9899
|
resetAllPluginPrefConfirmDescription: string;
|
|
@@ -9829,18 +9952,18 @@ declare const CATALOGS: {
|
|
|
9829
9952
|
pluginId: string;
|
|
9830
9953
|
repository: string;
|
|
9831
9954
|
latestRelease: string;
|
|
9832
|
-
manifestVersion: string;
|
|
9833
9955
|
packageAsset: string;
|
|
9834
9956
|
checksum: string;
|
|
9835
9957
|
notInstalled: string;
|
|
9836
9958
|
reportIssue: string;
|
|
9837
9959
|
reportSecurity: string;
|
|
9838
9960
|
requestFeature: string;
|
|
9839
|
-
|
|
9961
|
+
readme: string;
|
|
9840
9962
|
languages: string;
|
|
9841
|
-
|
|
9963
|
+
noReadme: string;
|
|
9842
9964
|
noReleaseNotes: string;
|
|
9843
9965
|
errorRateLimitedShort: string;
|
|
9966
|
+
updateUnavailableRateLimited: string;
|
|
9844
9967
|
configureRegistry: string;
|
|
9845
9968
|
pageHint: string;
|
|
9846
9969
|
registryDialogTitle: string;
|
|
@@ -9849,6 +9972,8 @@ declare const CATALOGS: {
|
|
|
9849
9972
|
filterInstalled: string;
|
|
9850
9973
|
filterUpdates: string;
|
|
9851
9974
|
emptyFilterHint: string;
|
|
9975
|
+
searchPlaceholder: string;
|
|
9976
|
+
searchEmpty: string;
|
|
9852
9977
|
requiresAppVersion: string;
|
|
9853
9978
|
incompatibleAppVersion: string;
|
|
9854
9979
|
registryActive: string;
|
|
@@ -11645,6 +11770,7 @@ declare const CATALOGS: {
|
|
|
11645
11770
|
marketplace: string;
|
|
11646
11771
|
marketplaceUpdatesBadge: string;
|
|
11647
11772
|
feedbackAbout: string;
|
|
11773
|
+
updateAvailableBadge: string;
|
|
11648
11774
|
help: string;
|
|
11649
11775
|
};
|
|
11650
11776
|
syncDueBadge: string;
|
|
@@ -11830,10 +11956,13 @@ declare const CATALOGS: {
|
|
|
11830
11956
|
latest: string;
|
|
11831
11957
|
outdated: string;
|
|
11832
11958
|
viewRelease: string;
|
|
11959
|
+
updateAvailable: string;
|
|
11833
11960
|
updateError: string;
|
|
11834
11961
|
downloading: string;
|
|
11835
11962
|
updateReady: string;
|
|
11836
11963
|
updateReadyResources: string;
|
|
11964
|
+
updateFullReason: string;
|
|
11965
|
+
updateResourcesReason: string;
|
|
11837
11966
|
applyResources: string;
|
|
11838
11967
|
resourcesVersion: string;
|
|
11839
11968
|
restartToUpdate: string;
|
|
@@ -12063,6 +12192,25 @@ declare const CATALOGS: {
|
|
|
12063
12192
|
uninstallConfirmDescription_other: string;
|
|
12064
12193
|
uninstallConfirmNoUsage: string;
|
|
12065
12194
|
uninstallSuccess: string;
|
|
12195
|
+
replaceContentAction: string;
|
|
12196
|
+
replaceContentTitle: string;
|
|
12197
|
+
replaceContentDescription: string;
|
|
12198
|
+
replaceContentFrom: string;
|
|
12199
|
+
replaceContentTo: string;
|
|
12200
|
+
replaceContentToPlaceholder: string;
|
|
12201
|
+
replaceContentRebuild: string;
|
|
12202
|
+
replaceContentRebuildImmediate: string;
|
|
12203
|
+
replaceContentRebuildImmediateDescription: string;
|
|
12204
|
+
replaceContentRebuildDefer: string;
|
|
12205
|
+
replaceContentRebuildDeferDescription: string;
|
|
12206
|
+
replaceContentConfirm: string;
|
|
12207
|
+
replaceContentPassed: string;
|
|
12208
|
+
replaceContentFailed: string;
|
|
12209
|
+
replaceContentNoContent: string;
|
|
12210
|
+
replaceContentSamePlugin: string;
|
|
12211
|
+
replaceContentInvalidTarget: string;
|
|
12212
|
+
replaceContentEmptyFrom: string;
|
|
12213
|
+
replaceContentMissingLabel: string;
|
|
12066
12214
|
resetAllPluginPrefSuccess: string;
|
|
12067
12215
|
resetAllPluginPrefConfirmTitle: string;
|
|
12068
12216
|
resetAllPluginPrefConfirmDescription: string;
|
|
@@ -12121,18 +12269,18 @@ declare const CATALOGS: {
|
|
|
12121
12269
|
pluginId: string;
|
|
12122
12270
|
repository: string;
|
|
12123
12271
|
latestRelease: string;
|
|
12124
|
-
manifestVersion: string;
|
|
12125
12272
|
packageAsset: string;
|
|
12126
12273
|
checksum: string;
|
|
12127
12274
|
notInstalled: string;
|
|
12128
12275
|
reportIssue: string;
|
|
12129
12276
|
reportSecurity: string;
|
|
12130
12277
|
requestFeature: string;
|
|
12131
|
-
|
|
12278
|
+
readme: string;
|
|
12132
12279
|
languages: string;
|
|
12133
|
-
|
|
12280
|
+
noReadme: string;
|
|
12134
12281
|
noReleaseNotes: string;
|
|
12135
12282
|
errorRateLimitedShort: string;
|
|
12283
|
+
updateUnavailableRateLimited: string;
|
|
12136
12284
|
configureRegistry: string;
|
|
12137
12285
|
pageHint: string;
|
|
12138
12286
|
registryDialogTitle: string;
|
|
@@ -12141,6 +12289,8 @@ declare const CATALOGS: {
|
|
|
12141
12289
|
filterInstalled: string;
|
|
12142
12290
|
filterUpdates: string;
|
|
12143
12291
|
emptyFilterHint: string;
|
|
12292
|
+
searchPlaceholder: string;
|
|
12293
|
+
searchEmpty: string;
|
|
12144
12294
|
requiresAppVersion: string;
|
|
12145
12295
|
incompatibleAppVersion: string;
|
|
12146
12296
|
registryActive: 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-CfJSusJy.js';
|
|
2
2
|
import './core.js';
|