@hoardodile/i18n 0.0.0 → 0.1.1

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.
@@ -173,6 +173,7 @@ var me = {
173
173
  privacy: "Privacy",
174
174
  archive: "Archive",
175
175
  plugins: "Plugins",
176
+ marketplace: "Marketplace",
176
177
  sync: "Sync"
177
178
  },
178
179
  section: {
@@ -342,6 +343,8 @@ var me = {
342
343
  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.",
343
344
  enableAnyway: "Enable sharing anyway",
344
345
  primaryHint: "Open on a device on the same Wi-Fi.",
346
+ localHint: "The address the desktop app uses — open it in a browser or copy it.",
347
+ open: "Open in browser",
345
348
  portAdjustedTitle: "Port {{preferred}} is in use — the server is now listening on {{actual}}.",
346
349
  portAdjustedHint: "Open this address from other devices with the new port.",
347
350
  portAdjustedDismiss: "Dismiss",
@@ -356,6 +359,14 @@ var me = {
356
359
  title: "Start in tray",
357
360
  description: "No window until you choose Open from the tray."
358
361
  },
362
+ signInOnLaunch: {
363
+ title: "Require sign-in on launch",
364
+ description: "Sign in again every time you open the app."
365
+ },
366
+ signInOnWindowOpen: {
367
+ title: "Require sign-in when reopening from the tray",
368
+ description: "Sign in again whenever the window was closed (tray, second launch)."
369
+ },
359
370
  autoUpdate: {
360
371
  title: "Automatic updates",
361
372
  description: "Download GitHub releases in the background. Restart is always confirmed."
@@ -514,6 +525,37 @@ var plugins = {
514
525
  download: "Downloads"
515
526
  }
516
527
  };
528
+ var marketplace = {
529
+ title: "Plugin marketplace",
530
+ description: "Plugins published as GitHub releases, discovered through a registry repo you own.",
531
+ registryRepoLabel: "Registry repo address",
532
+ registryPlaceholder: "https://github.com/me/hoardodile-plugins",
533
+ 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.",
534
+ save: "Save",
535
+ disable: "Disable",
536
+ saved: "Marketplace now uses {{repo}}",
537
+ notConfiguredHint: "No registry repo configured — paste one above to list plugins published as GitHub releases.",
538
+ loading: "Loading catalog…",
539
+ loadFailed: "Marketplace refresh failed: {{message}}",
540
+ refreshedAt: "Last refreshed {{time}}",
541
+ refresh: "Refresh",
542
+ refreshed: "Marketplace refreshed",
543
+ refreshFailed: "Marketplace refresh failed",
544
+ emptyHint: "The registry lists no plugins yet. Add repository addresses to registry.json and refresh.",
545
+ registryErrorsTitle: "Registry entries that could not be loaded",
546
+ install: "Install",
547
+ update: "Update",
548
+ updateTo: "Update to v{{version}}",
549
+ installed: "Installed v{{version}}",
550
+ noRelease: "No GitHub release yet",
551
+ release: "Release",
552
+ installConfirmTitle: "Install plugin from GitHub?",
553
+ updateConfirmTitle: "Update {{name}}?",
554
+ installing: "Installing…",
555
+ 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.",
556
+ installSuccess: "Installed {{name}}",
557
+ updateSuccess: "Updated {{name}} to v{{version}}"
558
+ };
517
559
  var overview = {
518
560
  usageHistory: {
519
561
  title: "Usage history"
@@ -888,7 +930,9 @@ var documents = {
888
930
  untitledHeading: "Untitled heading",
889
931
  detailMeta: {
890
932
  chars_one: "{{count, number}} char",
891
- chars_other: "{{count, number}} chars"
933
+ chars_other: "{{count, number}} chars",
934
+ created: "Created {{time}}",
935
+ updated: "Updated {{time}}"
892
936
  },
893
937
  notes: {
894
938
  tab: "Notes",
@@ -923,6 +967,7 @@ var documents = {
923
967
  committed: "Version committed",
924
968
  contentTooLarge: "Content exceeds maximum character limit",
925
969
  versionLoadFailed: "Could not load version content",
970
+ diffFailed: "Could not compute the document diff",
926
971
  savedLocally: "Saved on this device",
927
972
  resolveConflictFirst: "Resolve the offline conflict before committing",
928
973
  movedToTrash: "Moved to recycle bin",
@@ -2166,6 +2211,7 @@ var en = {
2166
2211
  me: me,
2167
2212
  plugin: plugin,
2168
2213
  plugins: plugins,
2214
+ marketplace: marketplace,
2169
2215
  overview: overview,
2170
2216
  login: login,
2171
2217
  dataHistory: dataHistory,
@@ -2378,6 +2424,7 @@ declare const CATALOGS: {
2378
2424
  privacy: string;
2379
2425
  archive: string;
2380
2426
  plugins: string;
2427
+ marketplace: string;
2381
2428
  sync: string;
2382
2429
  };
2383
2430
  section: {
@@ -2547,6 +2594,8 @@ declare const CATALOGS: {
2547
2594
  weakPasswordDescription: string;
2548
2595
  enableAnyway: string;
2549
2596
  primaryHint: string;
2597
+ localHint: string;
2598
+ open: string;
2550
2599
  portAdjustedTitle: string;
2551
2600
  portAdjustedHint: string;
2552
2601
  portAdjustedDismiss: string;
@@ -2561,6 +2610,14 @@ declare const CATALOGS: {
2561
2610
  title: string;
2562
2611
  description: string;
2563
2612
  };
2613
+ signInOnLaunch: {
2614
+ title: string;
2615
+ description: string;
2616
+ };
2617
+ signInOnWindowOpen: {
2618
+ title: string;
2619
+ description: string;
2620
+ };
2564
2621
  autoUpdate: {
2565
2622
  title: string;
2566
2623
  description: string;
@@ -2719,6 +2776,37 @@ declare const CATALOGS: {
2719
2776
  download: string;
2720
2777
  };
2721
2778
  };
2779
+ marketplace: {
2780
+ title: string;
2781
+ description: string;
2782
+ registryRepoLabel: string;
2783
+ registryPlaceholder: string;
2784
+ setupHint: string;
2785
+ save: string;
2786
+ disable: string;
2787
+ saved: string;
2788
+ notConfiguredHint: string;
2789
+ loading: string;
2790
+ loadFailed: string;
2791
+ refreshedAt: string;
2792
+ refresh: string;
2793
+ refreshed: string;
2794
+ refreshFailed: string;
2795
+ emptyHint: string;
2796
+ registryErrorsTitle: string;
2797
+ install: string;
2798
+ update: string;
2799
+ updateTo: string;
2800
+ installed: string;
2801
+ noRelease: string;
2802
+ release: string;
2803
+ installConfirmTitle: string;
2804
+ updateConfirmTitle: string;
2805
+ installing: string;
2806
+ installConfirmNote: string;
2807
+ installSuccess: string;
2808
+ updateSuccess: string;
2809
+ };
2722
2810
  overview: {
2723
2811
  usageHistory: {
2724
2812
  title: string;
@@ -3094,6 +3182,8 @@ declare const CATALOGS: {
3094
3182
  detailMeta: {
3095
3183
  chars_one: string;
3096
3184
  chars_other: string;
3185
+ created: string;
3186
+ updated: string;
3097
3187
  };
3098
3188
  notes: {
3099
3189
  tab: string;
@@ -3128,6 +3218,7 @@ declare const CATALOGS: {
3128
3218
  committed: string;
3129
3219
  contentTooLarge: string;
3130
3220
  versionLoadFailed: string;
3221
+ diffFailed: string;
3131
3222
  savedLocally: string;
3132
3223
  resolveConflictFirst: string;
3133
3224
  movedToTrash: string;
@@ -4533,6 +4624,7 @@ declare const CATALOGS: {
4533
4624
  privacy: string;
4534
4625
  archive: string;
4535
4626
  plugins: string;
4627
+ marketplace: string;
4536
4628
  sync: string;
4537
4629
  };
4538
4630
  section: {
@@ -4702,6 +4794,8 @@ declare const CATALOGS: {
4702
4794
  weakPasswordDescription: string;
4703
4795
  enableAnyway: string;
4704
4796
  primaryHint: string;
4797
+ localHint: string;
4798
+ open: string;
4705
4799
  portAdjustedTitle: string;
4706
4800
  portAdjustedHint: string;
4707
4801
  portAdjustedDismiss: string;
@@ -4716,6 +4810,14 @@ declare const CATALOGS: {
4716
4810
  title: string;
4717
4811
  description: string;
4718
4812
  };
4813
+ signInOnLaunch: {
4814
+ title: string;
4815
+ description: string;
4816
+ };
4817
+ signInOnWindowOpen: {
4818
+ title: string;
4819
+ description: string;
4820
+ };
4719
4821
  autoUpdate: {
4720
4822
  title: string;
4721
4823
  description: string;
@@ -4874,6 +4976,37 @@ declare const CATALOGS: {
4874
4976
  download: string;
4875
4977
  };
4876
4978
  };
4979
+ marketplace: {
4980
+ title: string;
4981
+ description: string;
4982
+ registryRepoLabel: string;
4983
+ registryPlaceholder: string;
4984
+ setupHint: string;
4985
+ save: string;
4986
+ disable: string;
4987
+ saved: string;
4988
+ notConfiguredHint: string;
4989
+ loading: string;
4990
+ loadFailed: string;
4991
+ refreshedAt: string;
4992
+ refresh: string;
4993
+ refreshed: string;
4994
+ refreshFailed: string;
4995
+ emptyHint: string;
4996
+ registryErrorsTitle: string;
4997
+ install: string;
4998
+ update: string;
4999
+ updateTo: string;
5000
+ installed: string;
5001
+ noRelease: string;
5002
+ release: string;
5003
+ installConfirmTitle: string;
5004
+ updateConfirmTitle: string;
5005
+ installing: string;
5006
+ installConfirmNote: string;
5007
+ installSuccess: string;
5008
+ updateSuccess: string;
5009
+ };
4877
5010
  overview: {
4878
5011
  usageHistory: {
4879
5012
  title: string;
@@ -5253,6 +5386,7 @@ declare const CATALOGS: {
5253
5386
  moveFailed: string;
5254
5387
  contentTooLarge: string;
5255
5388
  versionLoadFailed: string;
5389
+ diffFailed: string;
5256
5390
  savedLocally: string;
5257
5391
  resolveConflictFirst: string;
5258
5392
  };
@@ -5267,6 +5401,8 @@ declare const CATALOGS: {
5267
5401
  detailMeta: {
5268
5402
  chars_one: string;
5269
5403
  chars_other: string;
5404
+ created: string;
5405
+ updated: string;
5270
5406
  };
5271
5407
  notes: {
5272
5408
  tab: string;
@@ -6688,6 +6824,7 @@ declare const CATALOGS: {
6688
6824
  privacy: string;
6689
6825
  archive: string;
6690
6826
  plugins: string;
6827
+ marketplace: string;
6691
6828
  sync: string;
6692
6829
  };
6693
6830
  section: {
@@ -6857,6 +6994,8 @@ declare const CATALOGS: {
6857
6994
  weakPasswordDescription: string;
6858
6995
  enableAnyway: string;
6859
6996
  primaryHint: string;
6997
+ localHint: string;
6998
+ open: string;
6860
6999
  portAdjustedTitle: string;
6861
7000
  portAdjustedHint: string;
6862
7001
  portAdjustedDismiss: string;
@@ -6871,6 +7010,14 @@ declare const CATALOGS: {
6871
7010
  title: string;
6872
7011
  description: string;
6873
7012
  };
7013
+ signInOnLaunch: {
7014
+ title: string;
7015
+ description: string;
7016
+ };
7017
+ signInOnWindowOpen: {
7018
+ title: string;
7019
+ description: string;
7020
+ };
6874
7021
  autoUpdate: {
6875
7022
  title: string;
6876
7023
  description: string;
@@ -7029,6 +7176,37 @@ declare const CATALOGS: {
7029
7176
  download: string;
7030
7177
  };
7031
7178
  };
7179
+ marketplace: {
7180
+ title: string;
7181
+ description: string;
7182
+ registryRepoLabel: string;
7183
+ registryPlaceholder: string;
7184
+ setupHint: string;
7185
+ save: string;
7186
+ disable: string;
7187
+ saved: string;
7188
+ notConfiguredHint: string;
7189
+ loading: string;
7190
+ loadFailed: string;
7191
+ refreshedAt: string;
7192
+ refresh: string;
7193
+ refreshed: string;
7194
+ refreshFailed: string;
7195
+ emptyHint: string;
7196
+ registryErrorsTitle: string;
7197
+ install: string;
7198
+ update: string;
7199
+ updateTo: string;
7200
+ installed: string;
7201
+ noRelease: string;
7202
+ release: string;
7203
+ installConfirmTitle: string;
7204
+ updateConfirmTitle: string;
7205
+ installing: string;
7206
+ installConfirmNote: string;
7207
+ installSuccess: string;
7208
+ updateSuccess: string;
7209
+ };
7032
7210
  overview: {
7033
7211
  usageHistory: {
7034
7212
  title: string;
@@ -7404,6 +7582,8 @@ declare const CATALOGS: {
7404
7582
  detailMeta: {
7405
7583
  chars_one: string;
7406
7584
  chars_other: string;
7585
+ created: string;
7586
+ updated: string;
7407
7587
  };
7408
7588
  notes: {
7409
7589
  tab: string;
@@ -7438,6 +7618,7 @@ declare const CATALOGS: {
7438
7618
  committed: string;
7439
7619
  contentTooLarge: string;
7440
7620
  versionLoadFailed: string;
7621
+ diffFailed: string;
7441
7622
  savedLocally: string;
7442
7623
  resolveConflictFirst: string;
7443
7624
  movedToTrash: string;
@@ -8843,6 +9024,7 @@ declare const CATALOGS: {
8843
9024
  privacy: string;
8844
9025
  archive: string;
8845
9026
  plugins: string;
9027
+ marketplace: string;
8846
9028
  sync: string;
8847
9029
  };
8848
9030
  section: {
@@ -9012,6 +9194,8 @@ declare const CATALOGS: {
9012
9194
  weakPasswordDescription: string;
9013
9195
  enableAnyway: string;
9014
9196
  primaryHint: string;
9197
+ localHint: string;
9198
+ open: string;
9015
9199
  portAdjustedTitle: string;
9016
9200
  portAdjustedHint: string;
9017
9201
  portAdjustedDismiss: string;
@@ -9026,6 +9210,14 @@ declare const CATALOGS: {
9026
9210
  title: string;
9027
9211
  description: string;
9028
9212
  };
9213
+ signInOnLaunch: {
9214
+ title: string;
9215
+ description: string;
9216
+ };
9217
+ signInOnWindowOpen: {
9218
+ title: string;
9219
+ description: string;
9220
+ };
9029
9221
  autoUpdate: {
9030
9222
  title: string;
9031
9223
  description: string;
@@ -9184,6 +9376,37 @@ declare const CATALOGS: {
9184
9376
  download: string;
9185
9377
  };
9186
9378
  };
9379
+ marketplace: {
9380
+ title: string;
9381
+ description: string;
9382
+ registryRepoLabel: string;
9383
+ registryPlaceholder: string;
9384
+ setupHint: string;
9385
+ save: string;
9386
+ disable: string;
9387
+ saved: string;
9388
+ notConfiguredHint: string;
9389
+ loading: string;
9390
+ loadFailed: string;
9391
+ refreshedAt: string;
9392
+ refresh: string;
9393
+ refreshed: string;
9394
+ refreshFailed: string;
9395
+ emptyHint: string;
9396
+ registryErrorsTitle: string;
9397
+ install: string;
9398
+ update: string;
9399
+ updateTo: string;
9400
+ installed: string;
9401
+ noRelease: string;
9402
+ release: string;
9403
+ installConfirmTitle: string;
9404
+ updateConfirmTitle: string;
9405
+ installing: string;
9406
+ installConfirmNote: string;
9407
+ installSuccess: string;
9408
+ updateSuccess: string;
9409
+ };
9187
9410
  overview: {
9188
9411
  usageHistory: {
9189
9412
  title: string;
@@ -9559,6 +9782,8 @@ declare const CATALOGS: {
9559
9782
  detailMeta: {
9560
9783
  chars_one: string;
9561
9784
  chars_other: string;
9785
+ created: string;
9786
+ updated: string;
9562
9787
  };
9563
9788
  notes: {
9564
9789
  tab: string;
@@ -9593,6 +9818,7 @@ declare const CATALOGS: {
9593
9818
  committed: string;
9594
9819
  contentTooLarge: string;
9595
9820
  versionLoadFailed: string;
9821
+ diffFailed: string;
9596
9822
  savedLocally: string;
9597
9823
  resolveConflictFirst: string;
9598
9824
  movedToTrash: string;
@@ -10998,6 +11224,7 @@ declare const CATALOGS: {
10998
11224
  privacy: string;
10999
11225
  archive: string;
11000
11226
  plugins: string;
11227
+ marketplace: string;
11001
11228
  sync: string;
11002
11229
  };
11003
11230
  section: {
@@ -11167,6 +11394,8 @@ declare const CATALOGS: {
11167
11394
  weakPasswordDescription: string;
11168
11395
  enableAnyway: string;
11169
11396
  primaryHint: string;
11397
+ localHint: string;
11398
+ open: string;
11170
11399
  portAdjustedTitle: string;
11171
11400
  portAdjustedHint: string;
11172
11401
  portAdjustedDismiss: string;
@@ -11181,6 +11410,14 @@ declare const CATALOGS: {
11181
11410
  title: string;
11182
11411
  description: string;
11183
11412
  };
11413
+ signInOnLaunch: {
11414
+ title: string;
11415
+ description: string;
11416
+ };
11417
+ signInOnWindowOpen: {
11418
+ title: string;
11419
+ description: string;
11420
+ };
11184
11421
  autoUpdate: {
11185
11422
  title: string;
11186
11423
  description: string;
@@ -11339,6 +11576,37 @@ declare const CATALOGS: {
11339
11576
  download: string;
11340
11577
  };
11341
11578
  };
11579
+ marketplace: {
11580
+ title: string;
11581
+ description: string;
11582
+ registryRepoLabel: string;
11583
+ registryPlaceholder: string;
11584
+ setupHint: string;
11585
+ save: string;
11586
+ disable: string;
11587
+ saved: string;
11588
+ notConfiguredHint: string;
11589
+ loading: string;
11590
+ loadFailed: string;
11591
+ refreshedAt: string;
11592
+ refresh: string;
11593
+ refreshed: string;
11594
+ refreshFailed: string;
11595
+ emptyHint: string;
11596
+ registryErrorsTitle: string;
11597
+ install: string;
11598
+ update: string;
11599
+ updateTo: string;
11600
+ installed: string;
11601
+ noRelease: string;
11602
+ release: string;
11603
+ installConfirmTitle: string;
11604
+ updateConfirmTitle: string;
11605
+ installing: string;
11606
+ installConfirmNote: string;
11607
+ installSuccess: string;
11608
+ updateSuccess: string;
11609
+ };
11342
11610
  overview: {
11343
11611
  usageHistory: {
11344
11612
  title: string;
@@ -11714,6 +11982,8 @@ declare const CATALOGS: {
11714
11982
  detailMeta: {
11715
11983
  chars_one: string;
11716
11984
  chars_other: string;
11985
+ created: string;
11986
+ updated: string;
11717
11987
  };
11718
11988
  notes: {
11719
11989
  tab: string;
@@ -11748,6 +12018,7 @@ declare const CATALOGS: {
11748
12018
  committed: string;
11749
12019
  contentTooLarge: string;
11750
12020
  versionLoadFailed: string;
12021
+ diffFailed: string;
11751
12022
  savedLocally: string;
11752
12023
  resolveConflictFirst: string;
11753
12024
  movedToTrash: string;
@@ -1,2 +1,2 @@
1
- export { C as CATALOGS, c as catalogFor } from './catalogs-BF4px4Mm.js';
1
+ export { C as CATALOGS, c as catalogFor } from './catalogs-D1-e8yVx.js';
2
2
  import './core.js';