@hoardodile/i18n 0.1.15 → 0.2.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.
@@ -1,5 +1,133 @@
1
1
  import { SupportedLanguage } from './core.js';
2
2
 
3
+ var protection = {
4
+ drillDestination: "Temporary recovery folder",
5
+ lastRestore: "Last restored",
6
+ restoredEditable: "Local edits after restoration are not included in this status.",
7
+ drill: "Recovery drill",
8
+ fullDrill: "Restore and verify a full temporary copy",
9
+ drillHelp: "The default drill restores database checkpoints, plugin entry files, and a small original file. A full drill needs space for the entire library. Temporary files are removed afterwards.",
10
+ restorePrompt: "Type RESTORE to confirm.",
11
+ title: "On this device",
12
+ description: "Recovery points contain your library files, database checkpoint, and archived plugins.",
13
+ repository: "Backup storage",
14
+ folder: "Backup folder",
15
+ initialize: "Enable complete backups",
16
+ importKey: "Recovery passphrase",
17
+ create: "Back up now",
18
+ name: "Name",
19
+ note: "Note",
20
+ automatic: "Automatic backups",
21
+ enabled: "Enabled",
22
+ paused: "Paused",
23
+ empty: "No complete recovery points yet.",
24
+ loading: "Loading…",
25
+ restore: "Restore",
26
+ compare: "Compare files",
27
+ metadata: "Edit details",
28
+ check: "Check repository",
29
+ checkFull: "Verify all backup data",
30
+ key: "Export recovery key",
31
+ keyHelp: "Keep this key separately. It is required to recover your backups on a new installation.",
32
+ retention: "Retention policy",
33
+ keepAutomatic: "Automatic backups to keep",
34
+ previewCleanup: "Preview cleanup",
35
+ cleanup: "Remove expired points",
36
+ reclaim: "Also reclaim unused storage",
37
+ cleanupDescription: "Only expired backup recovery points will be removed. Library archives are retained.",
38
+ save: "Save",
39
+ cancel: "Cancel",
40
+ confirm: "Confirm",
41
+ manual: "Manual",
42
+ auto: "Automatic",
43
+ pinned: "Keep indefinitely",
44
+ restoreTitle: "Replace this library",
45
+ restoreDescription: "This replaces all library content with the selected recovery point and discards local changes. The library enters maintenance mode. Your sign-in credentials and device connections are retained.",
46
+ repair: "Repair selected files",
47
+ repairTitle: "Repair files from backup",
48
+ repairDescription: "Selected files will be replaced with their backed-up contents. Files changed since the preview will not be overwritten.",
49
+ differences: "File comparison",
50
+ noDifferences: "No file differences found.",
51
+ missing: "Missing",
52
+ changed: "Different contents",
53
+ extra: "Not in this backup",
54
+ archives: "Historical archives",
55
+ archivesHelp: "Browse an archive using its own frozen data and plugins.",
56
+ jobs: "Recent operations",
57
+ retry: "Retry",
58
+ waitingFiles: "File changes are paused while a storage operation runs. Reading and database-only edits remain available.",
59
+ maintenance: "Library recovery",
60
+ maintenanceHelp: "The library is unavailable while its files are being restored. You can follow progress or retry an interrupted operation here.",
61
+ recoveryKeySaved: "Recovery key downloaded",
62
+ lastCheck: "Last full verification",
63
+ never: "Never",
64
+ noJobs: "No operations yet.",
65
+ state: {
66
+ queued: "Queued",
67
+ running: "Running",
68
+ cancelling: "Cancelling",
69
+ succeeded: "Completed",
70
+ failed: "Failed",
71
+ cancelled: "Cancelled",
72
+ interrupted: "Interrupted"
73
+ },
74
+ kind: {
75
+ drill: "Recovery drill",
76
+ backup: "Backup",
77
+ check: "Verification",
78
+ compare: "File comparison",
79
+ repair: "File repair",
80
+ restore: "Restore",
81
+ retention: "Backup cleanup",
82
+ receive: "Receive backups",
83
+ archive: "Create archive",
84
+ "file-write": "File change"
85
+ },
86
+ processedFiles_one: "{{count}} file",
87
+ processedFiles_other: "{{count}} files",
88
+ processedBytes: "Processed: {{value}}",
89
+ addedBytes: "New data: {{value}}",
90
+ networkBytes: "Received: {{value}}",
91
+ manageQueue: "Manage waiting operations",
92
+ resubmitFile: "Submit the original file operation again."
93
+ };
94
+ var replication = {
95
+ healthReceived: "Backups received",
96
+ healthRecorded: "Records up to date",
97
+ healthAttention: "Sync needs attention",
98
+ healthUnconfigured: "Sync not configured",
99
+ addressHelp: "Enable HTTPS LAN sharing or enter the HTTPS address of your reverse proxy.",
100
+ title: "Offsite copy",
101
+ description: "One sender can share backups with several receivers. Receiving a backup never changes this library.",
102
+ name: "Service name",
103
+ role: "Role",
104
+ unconfigured: "Not configured",
105
+ send: "Send",
106
+ receive: "Receive",
107
+ connect: "Connect to sender",
108
+ disconnect: "Disconnect",
109
+ invite: "Create pairing invitation",
110
+ inviteHelp: "Send this code and this service's HTTPS address to your receiver. The code expires in ten minutes and can be used once.",
111
+ url: "Sender HTTPS address",
112
+ code: "Pairing code",
113
+ fingerprint: "SHA-256 certificate fingerprint (for self-signed certificates)",
114
+ receiveNow: "Receive now",
115
+ paused: "Pause backup sync",
116
+ paired: "Connected service",
117
+ revoke: "Revoke connection",
118
+ received: "Last confirmed receipt",
119
+ never: "Not received yet",
120
+ connectHelp: "Enter the sender's address and pairing code. For a self-signed certificate, also enter its verified fingerprint.",
121
+ source: "Sender",
122
+ devices: "Synced devices",
123
+ manualRecords: "Manual records",
124
+ addRecord: "Add manual device",
125
+ details: "Details",
126
+ copy: "Copy",
127
+ remove: "Remove",
128
+ unknown: "Unknown",
129
+ noDevices: "No devices configured."
130
+ };
3
131
  var common = {
4
132
  back: "Back",
5
133
  cancel: "Cancel",
@@ -37,7 +165,6 @@ var common = {
37
165
  requestFailed: "Request failed",
38
166
  saved: "Saved",
39
167
  saveFailed: "Could not save",
40
- confirmByTypingPrompt: "Type \"<name>{{name}}</name>\" to confirm",
41
168
  searchIncludeIntro: "Search intro",
42
169
  underline: "Underline",
43
170
  colorPicker: {
@@ -185,10 +312,10 @@ var me = {
185
312
  desktop: "Desktop",
186
313
  custom: "Custom",
187
314
  privacy: "Privacy",
188
- archive: "Archive",
315
+ archives: "Archives",
316
+ archive: "Backups",
189
317
  plugins: "Plugins",
190
- marketplace: "Marketplace",
191
- sync: "Sync"
318
+ marketplace: "Marketplace"
192
319
  },
193
320
  section: {
194
321
  language: "Language",
@@ -235,7 +362,11 @@ var me = {
235
362
  relation: "Relation",
236
363
  collection: "Collection"
237
364
  },
238
- link: "Link"
365
+ link: "Link",
366
+ watchOnly: {
367
+ title: "Watch-only mode",
368
+ description: "Restrict character and resource browsing to content carrying a watch-only tag."
369
+ }
239
370
  },
240
371
  account: {
241
372
  title: "Account",
@@ -506,12 +637,13 @@ var plugin = {
506
637
  previewFallbackUnknown: "unknown plugin"
507
638
  };
508
639
  var plugins = {
509
- pageHint: "Install from a .zip bundle, or rescan the plugins folder to pick up new arrivals.",
510
- uploadZip: "Upload .zip",
640
+ pageHint: "Install from a plugin package (zip, tar, 7z, rar and more), or refresh the plugins folder to pick up new arrivals.",
641
+ uploadPlugin: "Upload plugin",
642
+ uploadValidatedServerSide: "The package is validated by the server — its name, version and permissions appear after installation.",
511
643
  uploadPluginSuccess: "Plugin installed",
512
644
  uploading: "Installing…",
513
- rescan: "Rescan plugins",
514
- rescanSuccess: "Plugins rescanned",
645
+ rescan: "Refresh plugins",
646
+ rescanSuccess: "Plugins refreshed",
515
647
  more: "More",
516
648
  enableToggle: "Enable or disable plugin",
517
649
  dragToReorder: "Drag to reorder",
@@ -559,8 +691,8 @@ var plugins = {
559
691
  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.",
560
692
  uninstallConfirmNoUsage: "No resources are using this plugin. Reinstall it any time to use it again. This cannot be undone.",
561
693
  uninstallSuccess: "Uninstalled {{name}}",
562
- replaceContentAction: "Replace content…",
563
- replaceContentTitle: "Replace content plugin",
694
+ replaceContentAction: "Replace plugin…",
695
+ replaceContentTitle: "Replace plugin",
564
696
  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.",
565
697
  replaceContentFrom: "From plugin",
566
698
  replaceContentTo: "To plugin",
@@ -819,19 +951,12 @@ var login = {
819
951
  setupFormAria: "Set password"
820
952
  };
821
953
  var dataHistory = {
822
- title: "Data History",
823
- description: "Manage your data snapshots. Backups are for migration or disaster recovery; archives freeze a version as read-only so its data can never change again.",
824
- status: {
825
- currentWritable: "Writable — v{{version}}",
826
- viewingArchive: "Viewing archive — v{{version}}"
827
- },
954
+ pageHint: "Freeze the latest version into a read-only archive. Name and description can be edited on the current version anytime.",
828
955
  chip: {
829
956
  latest: "Latest",
830
- readOnly: "Read-only",
831
- auto: "Auto"
957
+ readOnly: "Read-only"
832
958
  },
833
959
  archive: {
834
- title: "v{{version}}",
835
960
  tagCurrent: "Latest (writable)",
836
961
  tagActive: "Viewing",
837
962
  tagReadOnly: "Historical archive",
@@ -840,81 +965,32 @@ var dataHistory = {
840
965
  nameLabel: "Name",
841
966
  namePlaceholder: "e.g. v1 milestone",
842
967
  noteLabel: "Note",
843
- notePlaceholder: "e.g. before migration, data freeze…",
844
- switchHint: "After switching, the app runs in read-only mode against this archive. Return to the latest version to edit again.",
845
- activeHint: "This is the version you are viewing."
846
- },
847
- backup: {
848
- typeLabel: "Database backup",
849
- autoTypeLabel: "Automatic daily snapshot",
850
- autoBadge: "auto",
851
- autoDeleteHint: "This automatic snapshot is kept for a short rolling window and will be replaced automatically. You can delete it now to free up space.",
852
- nameLabel: "Name",
853
- nameEmpty: "None",
854
- restoreHint: "Restoring asks you to type the backup name — the current library is archived first, so nothing is lost silently.",
855
- deleteHint: "This backup file will be permanently deleted and cannot be recovered.",
856
- archivedHint: "This backup belongs to an archived version. Its data is frozen and cannot be restored or deleted."
968
+ notePlaceholder: "e.g. before migration, data freeze…"
857
969
  },
858
970
  action: {
859
- backupNow: "Backup now",
860
- backingUp: "Backing up…",
861
971
  archiveNow: "Archive now",
862
972
  archiving: "Archiving…",
863
- restore: "Restore",
864
- restoring: "Restoring…",
865
- "delete": "Delete",
866
- deleting: "Deleting…",
973
+ edit: "Edit",
867
974
  switchToVersion: "Switch to this version",
868
- switching: "Switching…",
869
- download: "Download"
975
+ switching: "Switching…"
870
976
  },
871
- reloading: "Reloading…",
872
- autoSnapshot: {
873
- enabled: "Automatic snapshot: daily · keeps {{keep}} days",
874
- disabled: "Automatic snapshots are disabled",
875
- last: "newest {{time}}"
876
- },
877
- detail: {
878
- selectPrompt: "Select a backup or archive on the timeline to view details and available actions.",
879
- size: "Size",
880
- versionNumber: "Version",
881
- createdAt: "Created",
882
- note: "Note",
883
- contents: "Contents",
884
- contentsValue: "{{resources}} resources · {{characters}} characters · {{documents}} documents",
885
- backupOnVersion: "Backup on v{{version}}",
886
- archiveVersion: "Archive v{{version}}"
887
- },
888
- note: {
889
- empty: "Click to add a note…",
890
- placeholder: "Add a short description for this snapshot…"
977
+ edit: {
978
+ title: "Edit archive",
979
+ description: "Archive v{{version}}"
891
980
  },
981
+ reloading: "Reloading…",
892
982
  confirm: {
893
983
  archiveTitle: "Archive latest version",
894
- archiveDescription: "The latest version's database and all resources, characters, and documents will be frozen as a read-only archive. Data inside an archive never changes again; a new writable version will be created for ongoing work.",
984
+ archiveDescription: "The current data, plugin code and plugin vaults will be frozen together. A new writable version will use independent plugin copies.",
895
985
  archivePhrase: "archive",
896
- archiveAutoHint: "The current version's automatic snapshots freeze with this archive; a fresh snapshot is taken for the new version right away.",
897
- restoreTitle: "Restore this backup",
898
- restoreDescription: "The current library is archived first, so nothing is lost silently. This restore can be undone by restoring the archived version.",
899
- restorePhrase: "restore backup",
900
- autoPhrase: "auto",
901
- deleteBackupTitle: "Delete backup forever",
902
- deleteBackupDescription: "This backup file will be permanently deleted and cannot be recovered.",
903
- deleteBackupPhrase: "delete backup",
904
986
  switchTitle: "Switch to this archive version",
905
987
  switchDescription: "After switching, the app runs in read-only mode and only historical data is visible. Return to the latest version to edit again."
906
988
  },
907
989
  empty: {
908
- title: "No data history yet.",
909
- description: "Create a backup now to protect against data loss."
990
+ title: "No archives yet."
910
991
  },
911
992
  toast: {
912
- backupCreated: "Backup created",
913
- backupFailed: "Backup failed",
914
993
  archiveFailed: "Archive failed",
915
- backupDeleted: "Backup deleted",
916
- deleteFailed: "Delete failed",
917
- restoreFailed: "Restore failed",
918
994
  switchFailed: "Switch failed",
919
995
  metaSaved: "Saved",
920
996
  metaSaveFailed: "Could not save"
@@ -1957,7 +2033,14 @@ var tags = {
1957
2033
  linkHint: "Optional link to the tag's canonical page — shown in the hover preview.",
1958
2034
  uploadImage: "Upload image…",
1959
2035
  editImage: "Edit image…",
1960
- imageDialogTitle: "Tag image"
2036
+ imageDialogTitle: "Tag image",
2037
+ visibilityLabel: "Visibility",
2038
+ visibilityHint: "Watch-only narrows browse to content carrying this tag; explicit-view hides that content until you pick the tag to view."
2039
+ },
2040
+ visibility: {
2041
+ normal: "Normal",
2042
+ watchOnly: "Watch only",
2043
+ explicitView: "Explicit view"
1961
2044
  },
1962
2045
  card: {
1963
2046
  openLink: "Open link",
@@ -2191,89 +2274,15 @@ var storage = {
2191
2274
  }
2192
2275
  };
2193
2276
  var sync = {
2194
- pageHint: "Per device: records entity counts, content size and storage volume · open the page anytime to see what changed since the last sync",
2195
- status: {
2196
- allUpToDate: "All devices up to date",
2197
- dueCount_one: "{{count}} of {{total}} device due",
2198
- dueCount_other: "{{count}} of {{total}} devices due"
2199
- },
2200
- tip: {
2201
- oneWay: "Sync one-way: one master repository, the rest as mirrors, to avoid conflicts."
2202
- },
2203
2277
  config: {
2204
2278
  remindLabel: "Remind me after",
2205
- remindDescription: "Past the interval without a synced snapshot, the dashboard asks.",
2206
2279
  remindDays_one: "{{count}} day",
2207
2280
  remindDays_other: "{{count}} days"
2208
2281
  },
2209
- devices: {
2210
- addTitle: "Add a device",
2211
- addAutoRecord: "The current state is synced automatically once added.",
2212
- namePlaceholder: "Device name",
2213
- notesPlaceholder: "Notes (optional)",
2214
- nameHint: "e.g. Laptop",
2215
- notesHint: "e.g. USB 4TB",
2216
- add: "Add device",
2217
- addPending: "Adding…",
2218
- empty: "No devices yet — add one to start syncing.",
2219
- loading: "Loading…",
2220
- neverSynced: "Never synced",
2221
- lastSyncedAgo_one: "Last synced {{date}} · {{count}} day ago",
2222
- lastSyncedAgo_other: "Last synced {{date}} · {{count}} days ago",
2223
- justNow: "Just now",
2224
- minutesAgo_one: "{{count}} minute ago",
2225
- minutesAgo_other: "{{count}} minutes ago",
2226
- hoursAgo_one: "{{count}} hour ago",
2227
- hoursAgo_other: "{{count}} hours ago",
2228
- upToDate: "Up to date",
2229
- overdue_one: "Overdue · {{count}} day",
2230
- overdue_other: "Overdue · {{count}} days",
2231
- neverBadge: "Not synced yet",
2232
- record: "Sync",
2233
- recordNow: "Sync now",
2234
- deleteTitle: "Delete {{name}}?",
2235
- deleteDescription: "The device and all of its sync records will be removed.",
2236
- "delete": "Delete",
2237
- deletePending: "Deleting…",
2238
- editTitle: "Edit device",
2239
- edit: "Edit",
2240
- save: "Save",
2241
- editPending: "Saving…",
2242
- liveHint: "Live state · changes since the last sync"
2243
- },
2244
- fields: {
2245
- resources: "Resources",
2246
- characters: "Characters",
2247
- documents: "Documents",
2248
- folders: "Folders",
2249
- messages: "Messages",
2250
- tags: "Tags",
2251
- collections: "Collections",
2252
- trash: "Trash",
2253
- contentSize: "Content size",
2254
- storage: "Storage",
2255
- firstRecord: "First sync"
2256
- },
2257
- toast: {
2258
- deviceAdded: "Device added and synced",
2259
- deviceAddFailed: "Could not add device",
2260
- deviceUpdated: "Device updated",
2261
- deviceUpdateFailed: "Could not update device",
2262
- deviceDeleted: "Device deleted",
2263
- deviceDeleteFailed: "Could not delete device",
2264
- recorded: "Synced",
2265
- recordFailed: "Could not sync"
2266
- },
2267
2282
  banner: {
2268
2283
  noDevicesTitle: "No sync devices configured yet.",
2269
2284
  noDevicesDescription: "Add at least one device to track syncs.",
2270
- configureLink: "Set up",
2271
- neverSyncedTitle: "{{name}} has never been synced",
2272
- neverSyncedDescription: "No sync recorded for this device yet.",
2273
- overdueTitle_one: "{{name}} last synced {{count}} day ago",
2274
- overdueTitle_other: "{{name}} last synced {{count}} days ago",
2275
- overdueDescription: "It's been longer than your {{count}}-day reminder interval.",
2276
- recordLink: "Sync now"
2285
+ configureLink: "Set up"
2277
2286
  }
2278
2287
  };
2279
2288
  var desktopShell = {
@@ -2319,7 +2328,119 @@ var desktopShell = {
2319
2328
  missingBridge: "The app couldn't start. Reopen the app."
2320
2329
  }
2321
2330
  };
2331
+ var protectionUx = {
2332
+ protectionTitle: "Backups",
2333
+ sendRequiresBackup: "Create a local backup first to share this device's backups.",
2334
+ setup: "Set up backups",
2335
+ noBackup: "No local backup yet",
2336
+ setupHelp: "Save your library, files, and versioned plugins together.",
2337
+ start: "Start backing up",
2338
+ openExisting: "Open an existing backup",
2339
+ firstBackupHelp: "This starts the first backup and enables automatic backups. Large libraries take longer the first time. Save the recovery key when prompted.",
2340
+ existingHelp: "Place your existing repository at the configured backup location, then open it with its recovery key. Your library changes only after you confirm a restore.",
2341
+ importKeyFile: "Choose recovery key file",
2342
+ keyFileError: "Could not read this key file. Choose a recovery key file smaller than 64 KB.",
2343
+ enableAndBackup: "Enable and create first backup",
2344
+ status: "Backup status",
2345
+ description: "Keep recoverable copies of your library and its files. Automatic backups save changes without duplicating unchanged content.",
2346
+ firstBackupRunning: "Creating the first backup…",
2347
+ backupRunning: "Backup in progress…",
2348
+ firstBackupMissing: "Enabled; no completed backup yet",
2349
+ backupCompleted: "Last completed backup: {{time}}",
2350
+ locationHelp: "This is where this service saves backups. Use backup sync to keep a copy on another device.",
2351
+ frequency: "Backup frequency",
2352
+ frequencyHelp: "Changes are saved automatically at most this often. The first backup still runs right away.",
2353
+ frequencyHourly: "Hourly",
2354
+ frequency6Hours: "Every 6 hours",
2355
+ frequency12Hours: "Every 12 hours",
2356
+ frequencyDaily: "Daily",
2357
+ frequencyWeekly: "Weekly",
2358
+ saveKey: "Save your recovery key",
2359
+ localBackups: "This device's backups",
2360
+ availableBackups: "Available backups",
2361
+ open: "Open",
2362
+ pointTools: "Advanced backup actions",
2363
+ checkHelp: "Check repository structure quickly, or read all backup data to verify its integrity.",
2364
+ policyHelp: "Only the newest automatic backups are kept. Manual and pinned recovery points are never removed automatically.",
2365
+ preparingRestore: "Checking backup…",
2366
+ restoreSource: "Backup source: {{source}}",
2367
+ restoreKeepsHost: "This replaces the library and discards local changes. Your login and device connections stay in place.",
2368
+ activity: "Current activity",
2369
+ keepReading: "You can keep reading. File changes may wait until this storage task finishes.",
2370
+ restoreWorking: "The library will reopen when restoration finishes. Keep the service running.",
2371
+ taskFailed: "This task did not finish. Check the details, resolve the cause, then retry.",
2372
+ errorDetails: "Technical details",
2373
+ chooseAnotherBackup: "Choose another backup to restore",
2374
+ errorSpace: "Not enough free space. Free space on the storage volume, then retry.",
2375
+ errorCertificate: "The sender's certificate could not be verified. Check the sender and its fingerprint before reconnecting.",
2376
+ errorPairing: "The connection is no longer authorized. Create a new pairing invitation on the sender.",
2377
+ errorNetwork: "Could not complete the connection. Check that the sender is running and reachable, then retry.",
2378
+ 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."
2380
+ };
2381
+ var replicationUx = {
2382
+ unconfigured: "Choose how to use this device",
2383
+ send: "Share this device's backups",
2384
+ receive: "Hold another device's backups",
2385
+ sendHelp: "This device is the source — share a pairing invitation with each device that should hold a copy.",
2386
+ receiveHelp: "This device holds a copy — connect to one source device and pull its backups.",
2387
+ useBackup: "Use this backup on this device",
2388
+ receivedBackup: "Received backup",
2389
+ receivedFrom: "From {{source}} · Backup created {{time}}",
2390
+ libraryUnchanged: "Receiving this backup does not change the library you are using. Restore it to use its data here.",
2391
+ waitingFirst: "Waiting for the first completed backup from the sender.",
2392
+ pasteInvitation: "Paste pairing invitation",
2393
+ invalidInvitation: "This invitation is invalid or expired. Copy a new invitation directly from the sender.",
2394
+ manualConnection: "Enter connection details manually",
2395
+ invitation: "Pairing invitation",
2396
+ copyInvitation: "Copy pairing invitation",
2397
+ copied: "Invitation copied",
2398
+ copyFailed: "Clipboard access failed. Select and copy the invitation text manually."
2399
+ };
2400
+ var backupHealth = {
2401
+ ok: "Your backups and sync are up to date.",
2402
+ okSub: "Last backup: {{time}} · {{devices}}",
2403
+ syncedDevices_one: "{{count}} device",
2404
+ syncedDevices_other: "{{count}} devices",
2405
+ noBackupsTitle: "Your library isn't backed up yet.",
2406
+ noBackupsSub: "Save a recoverable copy of your library and files, so you can restore them if something goes wrong.",
2407
+ noBackupsAction: "Set up backups",
2408
+ backupNeedsTitle: "Backups need attention.",
2409
+ backupOffSub: "Automatic backups are off. Turn them on so changes are always protected.",
2410
+ neverBackedUpSub: "No completed backup yet. Create the first one to start protecting your library.",
2411
+ backupNow: "Back up now",
2412
+ turnOnAutomatic: "Turn on automatic backups",
2413
+ syncUnconfiguredTitle: "Add a synced device to keep a copy elsewhere.",
2414
+ syncUnconfiguredSub: "Another device or drive can hold a copy of your backups, so one failure cannot lose everything.",
2415
+ syncUnconfiguredAction: "Set up backup sync",
2416
+ syncDueTitle: "A synced device hasn't been updated.",
2417
+ syncDueSub: "One of your synced devices hasn't received a backup in a while.",
2418
+ syncDueAction: "Open backups",
2419
+ receiveNow: "Receive now",
2420
+ receiverTitle: "A copy of another device's backups is kept here.",
2421
+ receiverSub: "This device holds the latest backup from its sync source. You only need a local backup here if you also keep your own library on this device.",
2422
+ protectedTitle: "Your library is protected locally and offsite.",
2423
+ protectedSub: "Last local backup: {{local}} · Offsite copy received: {{remote}}"
2424
+ };
2425
+ var backupSetup = {
2426
+ title: "Set up backups",
2427
+ intro: "Backups keep a recoverable copy of your library and files, so you can restore them if something goes wrong.",
2428
+ stepStart: "What would you like to do?",
2429
+ startNew: "Start protecting this device",
2430
+ startNewHint: "We'll create the first backup and turn on automatic backups.",
2431
+ startExisting: "I already have a backup to use",
2432
+ startExistingHint: "Open a backup from a previous installation with its recovery passphrase.",
2433
+ createFirst: "Create first backup",
2434
+ createFirstHelp: "This creates the first backup and turns on automatic backups. Large libraries take longer the first time.",
2435
+ existingHelp: "Place your backup at the configured location, then open it with its recovery passphrase. Your library changes only after you confirm a restore.",
2436
+ chooseKey: "Choose recovery passphrase file",
2437
+ keyFileError: "Could not read this key file. Choose one smaller than 64 KB.",
2438
+ cancel: "Cancel",
2439
+ back: "Back"
2440
+ };
2322
2441
  var en = {
2442
+ protection: protection,
2443
+ replication: replication,
2323
2444
  common: common,
2324
2445
  entityMeta: entityMeta,
2325
2446
  language: language,
@@ -2353,7 +2474,11 @@ var en = {
2353
2474
  messages: messages,
2354
2475
  storage: storage,
2355
2476
  sync: sync,
2356
- desktopShell: desktopShell
2477
+ desktopShell: desktopShell,
2478
+ protectionUx: protectionUx,
2479
+ replicationUx: replicationUx,
2480
+ backupHealth: backupHealth,
2481
+ backupSetup: backupSetup
2357
2482
  };
2358
2483
 
2359
2484
  /**
@@ -2373,6 +2498,134 @@ var en = {
2373
2498
 
2374
2499
  declare const CATALOGS: {
2375
2500
  readonly en: {
2501
+ protection: {
2502
+ drillDestination: string;
2503
+ lastRestore: string;
2504
+ restoredEditable: string;
2505
+ drill: string;
2506
+ fullDrill: string;
2507
+ drillHelp: string;
2508
+ restorePrompt: string;
2509
+ title: string;
2510
+ description: string;
2511
+ repository: string;
2512
+ folder: string;
2513
+ initialize: string;
2514
+ importKey: string;
2515
+ create: string;
2516
+ name: string;
2517
+ note: string;
2518
+ automatic: string;
2519
+ enabled: string;
2520
+ paused: string;
2521
+ empty: string;
2522
+ loading: string;
2523
+ restore: string;
2524
+ compare: string;
2525
+ metadata: string;
2526
+ check: string;
2527
+ checkFull: string;
2528
+ key: string;
2529
+ keyHelp: string;
2530
+ retention: string;
2531
+ keepAutomatic: string;
2532
+ previewCleanup: string;
2533
+ cleanup: string;
2534
+ reclaim: string;
2535
+ cleanupDescription: string;
2536
+ save: string;
2537
+ cancel: string;
2538
+ confirm: string;
2539
+ manual: string;
2540
+ auto: string;
2541
+ pinned: string;
2542
+ restoreTitle: string;
2543
+ restoreDescription: string;
2544
+ repair: string;
2545
+ repairTitle: string;
2546
+ repairDescription: string;
2547
+ differences: string;
2548
+ noDifferences: string;
2549
+ missing: string;
2550
+ changed: string;
2551
+ extra: string;
2552
+ archives: string;
2553
+ archivesHelp: string;
2554
+ jobs: string;
2555
+ retry: string;
2556
+ waitingFiles: string;
2557
+ maintenance: string;
2558
+ maintenanceHelp: string;
2559
+ recoveryKeySaved: string;
2560
+ lastCheck: string;
2561
+ never: string;
2562
+ noJobs: string;
2563
+ state: {
2564
+ queued: string;
2565
+ running: string;
2566
+ cancelling: string;
2567
+ succeeded: string;
2568
+ failed: string;
2569
+ cancelled: string;
2570
+ interrupted: string;
2571
+ };
2572
+ kind: {
2573
+ drill: string;
2574
+ backup: string;
2575
+ check: string;
2576
+ compare: string;
2577
+ repair: string;
2578
+ restore: string;
2579
+ retention: string;
2580
+ receive: string;
2581
+ archive: string;
2582
+ "file-write": string;
2583
+ };
2584
+ processedFiles_one: string;
2585
+ processedFiles_other: string;
2586
+ processedBytes: string;
2587
+ addedBytes: string;
2588
+ networkBytes: string;
2589
+ manageQueue: string;
2590
+ resubmitFile: string;
2591
+ };
2592
+ replication: {
2593
+ healthReceived: string;
2594
+ healthRecorded: string;
2595
+ healthAttention: string;
2596
+ healthUnconfigured: string;
2597
+ addressHelp: string;
2598
+ title: string;
2599
+ description: string;
2600
+ name: string;
2601
+ role: string;
2602
+ unconfigured: string;
2603
+ send: string;
2604
+ receive: string;
2605
+ connect: string;
2606
+ disconnect: string;
2607
+ invite: string;
2608
+ inviteHelp: string;
2609
+ url: string;
2610
+ code: string;
2611
+ fingerprint: string;
2612
+ receiveNow: string;
2613
+ paused: string;
2614
+ paired: string;
2615
+ revoke: string;
2616
+ received: string;
2617
+ never: string;
2618
+ connectHelp: string;
2619
+ source: string;
2620
+ devices: string;
2621
+ manualRecords: string;
2622
+ addRecord: string;
2623
+ details: string;
2624
+ copy: string;
2625
+ remove: string;
2626
+ unknown: string;
2627
+ noDevices: string;
2628
+ };
2376
2629
  common: {
2377
2630
  back: string;
2378
2631
  cancel: string;
@@ -2410,7 +2663,6 @@ declare const CATALOGS: {
2410
2663
  requestFailed: string;
2411
2664
  saved: string;
2412
2665
  saveFailed: string;
2413
- confirmByTypingPrompt: string;
2414
2666
  searchIncludeIntro: string;
2415
2667
  underline: string;
2416
2668
  colorPicker: {
@@ -2558,10 +2810,10 @@ declare const CATALOGS: {
2558
2810
  desktop: string;
2559
2811
  custom: string;
2560
2812
  privacy: string;
2813
+ archives: string;
2561
2814
  archive: string;
2562
2815
  plugins: string;
2563
2816
  marketplace: string;
2564
- sync: string;
2565
2817
  };
2566
2818
  section: {
2567
2819
  language: string;
@@ -2609,6 +2861,10 @@ declare const CATALOGS: {
2609
2861
  collection: string;
2610
2862
  };
2611
2863
  link: string;
2864
+ watchOnly: {
2865
+ title: string;
2866
+ description: string;
2867
+ };
2612
2868
  };
2613
2869
  account: {
2614
2870
  title: string;
@@ -2880,7 +3136,8 @@ declare const CATALOGS: {
2880
3136
  };
2881
3137
  plugins: {
2882
3138
  pageHint: string;
2883
- uploadZip: string;
3139
+ uploadPlugin: string;
3140
+ uploadValidatedServerSide: string;
2884
3141
  uploadPluginSuccess: string;
2885
3142
  uploading: string;
2886
3143
  rescan: string;
@@ -3192,19 +3449,12 @@ declare const CATALOGS: {
3192
3449
  setupFormAria: string;
3193
3450
  };
3194
3451
  dataHistory: {
3195
- title: string;
3196
- description: string;
3197
- status: {
3198
- currentWritable: string;
3199
- viewingArchive: string;
3200
- };
3452
+ pageHint: string;
3201
3453
  chip: {
3202
3454
  latest: string;
3203
3455
  readOnly: string;
3204
- auto: string;
3205
3456
  };
3206
3457
  archive: {
3207
- title: string;
3208
3458
  tagCurrent: string;
3209
3459
  tagActive: string;
3210
3460
  tagReadOnly: string;
@@ -3214,80 +3464,31 @@ declare const CATALOGS: {
3214
3464
  namePlaceholder: string;
3215
3465
  noteLabel: string;
3216
3466
  notePlaceholder: string;
3217
- switchHint: string;
3218
- activeHint: string;
3219
- };
3220
- backup: {
3221
- typeLabel: string;
3222
- autoTypeLabel: string;
3223
- autoBadge: string;
3224
- autoDeleteHint: string;
3225
- nameLabel: string;
3226
- nameEmpty: string;
3227
- restoreHint: string;
3228
- deleteHint: string;
3229
- archivedHint: string;
3230
3467
  };
3231
3468
  action: {
3232
- backupNow: string;
3233
- backingUp: string;
3234
3469
  archiveNow: string;
3235
3470
  archiving: string;
3236
- restore: string;
3237
- restoring: string;
3238
- delete: string;
3239
- deleting: string;
3471
+ edit: string;
3240
3472
  switchToVersion: string;
3241
3473
  switching: string;
3242
- download: string;
3243
- };
3244
- reloading: string;
3245
- autoSnapshot: {
3246
- enabled: string;
3247
- disabled: string;
3248
- last: string;
3249
3474
  };
3250
- detail: {
3251
- selectPrompt: string;
3252
- size: string;
3253
- versionNumber: string;
3254
- createdAt: string;
3255
- note: string;
3256
- contents: string;
3257
- contentsValue: string;
3258
- backupOnVersion: string;
3259
- archiveVersion: string;
3260
- };
3261
- note: {
3262
- empty: string;
3263
- placeholder: string;
3475
+ edit: {
3476
+ title: string;
3477
+ description: string;
3264
3478
  };
3479
+ reloading: string;
3265
3480
  confirm: {
3266
3481
  archiveTitle: string;
3267
3482
  archiveDescription: string;
3268
3483
  archivePhrase: string;
3269
- archiveAutoHint: string;
3270
- restoreTitle: string;
3271
- restoreDescription: string;
3272
- restorePhrase: string;
3273
- autoPhrase: string;
3274
- deleteBackupTitle: string;
3275
- deleteBackupDescription: string;
3276
- deleteBackupPhrase: string;
3277
3484
  switchTitle: string;
3278
3485
  switchDescription: string;
3279
3486
  };
3280
3487
  empty: {
3281
3488
  title: string;
3282
- description: string;
3283
3489
  };
3284
3490
  toast: {
3285
- backupCreated: string;
3286
- backupFailed: string;
3287
3491
  archiveFailed: string;
3288
- backupDeleted: string;
3289
- deleteFailed: string;
3290
- restoreFailed: string;
3291
3492
  switchFailed: string;
3292
3493
  metaSaved: string;
3293
3494
  metaSaveFailed: string;
@@ -4331,6 +4532,13 @@ declare const CATALOGS: {
4331
4532
  uploadImage: string;
4332
4533
  editImage: string;
4333
4534
  imageDialogTitle: string;
4535
+ visibilityLabel: string;
4536
+ visibilityHint: string;
4537
+ };
4538
+ visibility: {
4539
+ normal: string;
4540
+ watchOnly: string;
4541
+ explicitView: string;
4334
4542
  };
4335
4543
  card: {
4336
4544
  openLink: string;
@@ -4564,89 +4772,15 @@ declare const CATALOGS: {
4564
4772
  };
4565
4773
  };
4566
4774
  sync: {
4567
- pageHint: string;
4568
- status: {
4569
- allUpToDate: string;
4570
- dueCount_one: string;
4571
- dueCount_other: string;
4572
- };
4573
- tip: {
4574
- oneWay: string;
4575
- };
4576
4775
  config: {
4577
4776
  remindLabel: string;
4578
- remindDescription: string;
4579
4777
  remindDays_one: string;
4580
4778
  remindDays_other: string;
4581
4779
  };
4582
- devices: {
4583
- addTitle: string;
4584
- addAutoRecord: string;
4585
- namePlaceholder: string;
4586
- notesPlaceholder: string;
4587
- nameHint: string;
4588
- notesHint: string;
4589
- add: string;
4590
- addPending: string;
4591
- empty: string;
4592
- loading: string;
4593
- neverSynced: string;
4594
- lastSyncedAgo_one: string;
4595
- lastSyncedAgo_other: string;
4596
- justNow: string;
4597
- minutesAgo_one: string;
4598
- minutesAgo_other: string;
4599
- hoursAgo_one: string;
4600
- hoursAgo_other: string;
4601
- upToDate: string;
4602
- overdue_one: string;
4603
- overdue_other: string;
4604
- neverBadge: string;
4605
- record: string;
4606
- recordNow: string;
4607
- deleteTitle: string;
4608
- deleteDescription: string;
4609
- delete: string;
4610
- deletePending: string;
4611
- editTitle: string;
4612
- edit: string;
4613
- save: string;
4614
- editPending: string;
4615
- liveHint: string;
4616
- };
4617
- fields: {
4618
- resources: string;
4619
- characters: string;
4620
- documents: string;
4621
- folders: string;
4622
- messages: string;
4623
- tags: string;
4624
- collections: string;
4625
- trash: string;
4626
- contentSize: string;
4627
- storage: string;
4628
- firstRecord: string;
4629
- };
4630
- toast: {
4631
- deviceAdded: string;
4632
- deviceAddFailed: string;
4633
- deviceUpdated: string;
4634
- deviceUpdateFailed: string;
4635
- deviceDeleted: string;
4636
- deviceDeleteFailed: string;
4637
- recorded: string;
4638
- recordFailed: string;
4639
- };
4640
4780
  banner: {
4641
4781
  noDevicesTitle: string;
4642
4782
  noDevicesDescription: string;
4643
4783
  configureLink: string;
4644
- neverSyncedTitle: string;
4645
- neverSyncedDescription: string;
4646
- overdueTitle_one: string;
4647
- overdueTitle_other: string;
4648
- overdueDescription: string;
4649
- recordLink: string;
4650
4784
  };
4651
4785
  };
4652
4786
  desktopShell: {
@@ -4692,8 +4826,246 @@ declare const CATALOGS: {
4692
4826
  missingBridge: string;
4693
4827
  };
4694
4828
  };
4829
+ protectionUx: {
4830
+ protectionTitle: string;
4831
+ sendRequiresBackup: string;
4832
+ setup: string;
4833
+ noBackup: string;
4834
+ setupHelp: string;
4835
+ start: string;
4836
+ openExisting: string;
4837
+ firstBackupHelp: string;
4838
+ existingHelp: string;
4839
+ importKeyFile: string;
4840
+ keyFileError: string;
4841
+ enableAndBackup: string;
4842
+ status: string;
4843
+ description: string;
4844
+ firstBackupRunning: string;
4845
+ backupRunning: string;
4846
+ firstBackupMissing: string;
4847
+ backupCompleted: string;
4848
+ locationHelp: string;
4849
+ frequency: string;
4850
+ frequencyHelp: string;
4851
+ frequencyHourly: string;
4852
+ frequency6Hours: string;
4853
+ frequency12Hours: string;
4854
+ frequencyDaily: string;
4855
+ frequencyWeekly: string;
4856
+ saveKey: string;
4857
+ localBackups: string;
4858
+ availableBackups: string;
4859
+ open: string;
4860
+ pointTools: string;
4861
+ checkHelp: string;
4862
+ policyHelp: string;
4863
+ preparingRestore: string;
4864
+ restoreSource: string;
4865
+ restoreKeepsHost: string;
4866
+ activity: string;
4867
+ keepReading: string;
4868
+ restoreWorking: string;
4869
+ taskFailed: string;
4870
+ errorDetails: string;
4871
+ chooseAnotherBackup: string;
4872
+ errorSpace: string;
4873
+ errorCertificate: string;
4874
+ errorPairing: string;
4875
+ errorNetwork: string;
4876
+ errorIncomplete: string;
4877
+ jobsHelp: string;
4878
+ };
4879
+ replicationUx: {
4880
+ unconfigured: string;
4881
+ send: string;
4882
+ receive: string;
4883
+ sendHelp: string;
4884
+ receiveHelp: string;
4885
+ useBackup: string;
4886
+ receivedBackup: string;
4887
+ receivedFrom: string;
4888
+ libraryUnchanged: string;
4889
+ waitingFirst: string;
4890
+ pasteInvitation: string;
4891
+ invalidInvitation: string;
4892
+ manualConnection: string;
4893
+ invitation: string;
4894
+ copyInvitation: string;
4895
+ copied: string;
4896
+ copyFailed: string;
4897
+ };
4898
+ backupHealth: {
4899
+ ok: string;
4900
+ okSub: string;
4901
+ syncedDevices_one: string;
4902
+ syncedDevices_other: string;
4903
+ noBackupsTitle: string;
4904
+ noBackupsSub: string;
4905
+ noBackupsAction: string;
4906
+ backupNeedsTitle: string;
4907
+ backupOffSub: string;
4908
+ neverBackedUpSub: string;
4909
+ backupNow: string;
4910
+ turnOnAutomatic: string;
4911
+ syncUnconfiguredTitle: string;
4912
+ syncUnconfiguredSub: string;
4913
+ syncUnconfiguredAction: string;
4914
+ syncDueTitle: string;
4915
+ syncDueSub: string;
4916
+ syncDueAction: string;
4917
+ receiveNow: string;
4918
+ receiverTitle: string;
4919
+ receiverSub: string;
4920
+ protectedTitle: string;
4921
+ protectedSub: string;
4922
+ };
4923
+ backupSetup: {
4924
+ title: string;
4925
+ intro: string;
4926
+ stepStart: string;
4927
+ startNew: string;
4928
+ startNewHint: string;
4929
+ startExisting: string;
4930
+ startExistingHint: string;
4931
+ createFirst: string;
4932
+ createFirstHelp: string;
4933
+ existingHelp: string;
4934
+ chooseKey: string;
4935
+ keyFileError: string;
4936
+ cancel: string;
4937
+ back: string;
4938
+ };
4695
4939
  };
4696
4940
  readonly zh: {
4941
+ protection: {
4942
+ drillDestination: string;
4943
+ lastRestore: string;
4944
+ restoredEditable: string;
4945
+ drill: string;
4946
+ fullDrill: string;
4947
+ drillHelp: string;
4948
+ restorePrompt: string;
4949
+ title: string;
4950
+ description: string;
4951
+ repository: string;
4952
+ folder: string;
4953
+ initialize: string;
4954
+ importKey: string;
4955
+ create: string;
4956
+ name: string;
4957
+ note: string;
4958
+ automatic: string;
4959
+ enabled: string;
4960
+ paused: string;
4961
+ empty: string;
4962
+ loading: string;
4963
+ restore: string;
4964
+ compare: string;
4965
+ metadata: string;
4966
+ check: string;
4967
+ checkFull: string;
4968
+ key: string;
4969
+ keyHelp: string;
4970
+ retention: string;
4971
+ keepAutomatic: string;
4972
+ previewCleanup: string;
4973
+ cleanup: string;
4974
+ reclaim: string;
4975
+ cleanupDescription: string;
4976
+ save: string;
4977
+ cancel: string;
4978
+ confirm: string;
4979
+ manual: string;
4980
+ auto: string;
4981
+ pinned: string;
4982
+ restoreTitle: string;
4983
+ restoreDescription: string;
4984
+ repair: string;
4985
+ repairTitle: string;
4986
+ repairDescription: string;
4987
+ differences: string;
4988
+ noDifferences: string;
4989
+ missing: string;
4990
+ changed: string;
4991
+ extra: string;
4992
+ archives: string;
4993
+ archivesHelp: string;
4994
+ jobs: string;
4995
+ retry: string;
4996
+ waitingFiles: string;
4997
+ maintenance: string;
4998
+ maintenanceHelp: string;
4999
+ recoveryKeySaved: string;
5000
+ lastCheck: string;
5001
+ never: string;
5002
+ noJobs: string;
5003
+ state: {
5004
+ queued: string;
5005
+ running: string;
5006
+ cancelling: string;
5007
+ succeeded: string;
5008
+ failed: string;
5009
+ cancelled: string;
5010
+ interrupted: string;
5011
+ };
5012
+ kind: {
5013
+ drill: string;
5014
+ backup: string;
5015
+ check: string;
5016
+ compare: string;
5017
+ repair: string;
5018
+ restore: string;
5019
+ retention: string;
5020
+ receive: string;
5021
+ archive: string;
5022
+ "file-write": string;
5023
+ };
5024
+ processedFiles_one: string;
5025
+ processedFiles_other: string;
5026
+ processedBytes: string;
5027
+ addedBytes: string;
5028
+ networkBytes: string;
5029
+ manageQueue: string;
5030
+ resubmitFile: string;
5031
+ };
5032
+ replication: {
5033
+ healthReceived: string;
5034
+ healthRecorded: string;
5035
+ healthAttention: string;
5036
+ healthUnconfigured: string;
5037
+ addressHelp: string;
5038
+ title: string;
5039
+ description: string;
5040
+ name: string;
5041
+ role: string;
5042
+ unconfigured: string;
5043
+ send: string;
5044
+ receive: string;
5045
+ connect: string;
5046
+ disconnect: string;
5047
+ invite: string;
5048
+ inviteHelp: string;
5049
+ url: string;
5050
+ code: string;
5051
+ fingerprint: string;
5052
+ receiveNow: string;
5053
+ paused: string;
5054
+ paired: string;
5055
+ revoke: string;
5056
+ received: string;
5057
+ never: string;
5058
+ connectHelp: string;
5059
+ source: string;
5060
+ devices: string;
5061
+ manualRecords: string;
5062
+ addRecord: string;
5063
+ details: string;
5064
+ copy: string;
5065
+ remove: string;
5066
+ unknown: string;
5067
+ noDevices: string;
5068
+ };
4697
5069
  common: {
4698
5070
  back: string;
4699
5071
  cancel: string;
@@ -4731,7 +5103,6 @@ declare const CATALOGS: {
4731
5103
  requestFailed: string;
4732
5104
  saved: string;
4733
5105
  saveFailed: string;
4734
- confirmByTypingPrompt: string;
4735
5106
  searchIncludeIntro: string;
4736
5107
  underline: string;
4737
5108
  colorPicker: {
@@ -4879,10 +5250,10 @@ declare const CATALOGS: {
4879
5250
  desktop: string;
4880
5251
  custom: string;
4881
5252
  privacy: string;
5253
+ archives: string;
4882
5254
  archive: string;
4883
5255
  plugins: string;
4884
5256
  marketplace: string;
4885
- sync: string;
4886
5257
  };
4887
5258
  section: {
4888
5259
  language: string;
@@ -4930,6 +5301,10 @@ declare const CATALOGS: {
4930
5301
  collection: string;
4931
5302
  };
4932
5303
  link: string;
5304
+ watchOnly: {
5305
+ title: string;
5306
+ description: string;
5307
+ };
4933
5308
  };
4934
5309
  account: {
4935
5310
  title: string;
@@ -5201,7 +5576,8 @@ declare const CATALOGS: {
5201
5576
  };
5202
5577
  plugins: {
5203
5578
  pageHint: string;
5204
- uploadZip: string;
5579
+ uploadPlugin: string;
5580
+ uploadValidatedServerSide: string;
5205
5581
  uploadPluginSuccess: string;
5206
5582
  uploading: string;
5207
5583
  rescan: string;
@@ -5513,19 +5889,12 @@ declare const CATALOGS: {
5513
5889
  setupFormAria: string;
5514
5890
  };
5515
5891
  dataHistory: {
5516
- title: string;
5517
- description: string;
5518
- status: {
5519
- currentWritable: string;
5520
- viewingArchive: string;
5521
- };
5892
+ pageHint: string;
5522
5893
  chip: {
5523
5894
  latest: string;
5524
5895
  readOnly: string;
5525
- auto: string;
5526
5896
  };
5527
5897
  archive: {
5528
- title: string;
5529
5898
  tagCurrent: string;
5530
5899
  tagActive: string;
5531
5900
  tagReadOnly: string;
@@ -5535,80 +5904,31 @@ declare const CATALOGS: {
5535
5904
  namePlaceholder: string;
5536
5905
  noteLabel: string;
5537
5906
  notePlaceholder: string;
5538
- switchHint: string;
5539
- activeHint: string;
5540
- };
5541
- backup: {
5542
- typeLabel: string;
5543
- autoTypeLabel: string;
5544
- autoBadge: string;
5545
- autoDeleteHint: string;
5546
- nameLabel: string;
5547
- nameEmpty: string;
5548
- restoreHint: string;
5549
- deleteHint: string;
5550
- archivedHint: string;
5551
5907
  };
5552
5908
  action: {
5553
- backupNow: string;
5554
- backingUp: string;
5555
5909
  archiveNow: string;
5556
5910
  archiving: string;
5557
- restore: string;
5558
- restoring: string;
5559
- delete: string;
5560
- deleting: string;
5911
+ edit: string;
5561
5912
  switchToVersion: string;
5562
5913
  switching: string;
5563
- download: string;
5564
- };
5565
- reloading: string;
5566
- autoSnapshot: {
5567
- enabled: string;
5568
- disabled: string;
5569
- last: string;
5570
5914
  };
5571
- detail: {
5572
- selectPrompt: string;
5573
- size: string;
5574
- versionNumber: string;
5575
- createdAt: string;
5576
- note: string;
5577
- contents: string;
5578
- contentsValue: string;
5579
- backupOnVersion: string;
5580
- archiveVersion: string;
5581
- };
5582
- note: {
5583
- empty: string;
5584
- placeholder: string;
5915
+ edit: {
5916
+ title: string;
5917
+ description: string;
5585
5918
  };
5919
+ reloading: string;
5586
5920
  confirm: {
5587
5921
  archiveTitle: string;
5588
5922
  archiveDescription: string;
5589
5923
  archivePhrase: string;
5590
- archiveAutoHint: string;
5591
- restoreTitle: string;
5592
- restoreDescription: string;
5593
- restorePhrase: string;
5594
- autoPhrase: string;
5595
- deleteBackupTitle: string;
5596
- deleteBackupDescription: string;
5597
- deleteBackupPhrase: string;
5598
5924
  switchTitle: string;
5599
5925
  switchDescription: string;
5600
5926
  };
5601
5927
  empty: {
5602
5928
  title: string;
5603
- description: string;
5604
5929
  };
5605
5930
  toast: {
5606
- backupCreated: string;
5607
- backupFailed: string;
5608
5931
  archiveFailed: string;
5609
- backupDeleted: string;
5610
- deleteFailed: string;
5611
- restoreFailed: string;
5612
5932
  switchFailed: string;
5613
5933
  metaSaved: string;
5614
5934
  metaSaveFailed: string;
@@ -6652,6 +6972,13 @@ declare const CATALOGS: {
6652
6972
  uploadImage: string;
6653
6973
  editImage: string;
6654
6974
  imageDialogTitle: string;
6975
+ visibilityLabel: string;
6976
+ visibilityHint: string;
6977
+ };
6978
+ visibility: {
6979
+ normal: string;
6980
+ watchOnly: string;
6981
+ explicitView: string;
6655
6982
  };
6656
6983
  card: {
6657
6984
  openLink: string;
@@ -6885,89 +7212,15 @@ declare const CATALOGS: {
6885
7212
  };
6886
7213
  };
6887
7214
  sync: {
6888
- pageHint: string;
6889
- status: {
6890
- allUpToDate: string;
6891
- dueCount_one: string;
6892
- dueCount_other: string;
6893
- };
6894
- tip: {
6895
- oneWay: string;
6896
- };
6897
7215
  config: {
6898
7216
  remindLabel: string;
6899
- remindDescription: string;
6900
7217
  remindDays_one: string;
6901
7218
  remindDays_other: string;
6902
7219
  };
6903
- devices: {
6904
- addTitle: string;
6905
- addAutoRecord: string;
6906
- namePlaceholder: string;
6907
- notesPlaceholder: string;
6908
- nameHint: string;
6909
- notesHint: string;
6910
- add: string;
6911
- addPending: string;
6912
- empty: string;
6913
- loading: string;
6914
- neverSynced: string;
6915
- lastSyncedAgo_one: string;
6916
- lastSyncedAgo_other: string;
6917
- justNow: string;
6918
- minutesAgo_one: string;
6919
- minutesAgo_other: string;
6920
- hoursAgo_one: string;
6921
- hoursAgo_other: string;
6922
- upToDate: string;
6923
- overdue_one: string;
6924
- overdue_other: string;
6925
- neverBadge: string;
6926
- record: string;
6927
- recordNow: string;
6928
- deleteTitle: string;
6929
- deleteDescription: string;
6930
- delete: string;
6931
- deletePending: string;
6932
- editTitle: string;
6933
- edit: string;
6934
- save: string;
6935
- editPending: string;
6936
- liveHint: string;
6937
- };
6938
- fields: {
6939
- resources: string;
6940
- characters: string;
6941
- documents: string;
6942
- folders: string;
6943
- messages: string;
6944
- tags: string;
6945
- collections: string;
6946
- trash: string;
6947
- contentSize: string;
6948
- storage: string;
6949
- firstRecord: string;
6950
- };
6951
- toast: {
6952
- deviceAdded: string;
6953
- deviceAddFailed: string;
6954
- deviceUpdated: string;
6955
- deviceUpdateFailed: string;
6956
- deviceDeleted: string;
6957
- deviceDeleteFailed: string;
6958
- recorded: string;
6959
- recordFailed: string;
6960
- };
6961
7220
  banner: {
6962
7221
  noDevicesTitle: string;
6963
7222
  noDevicesDescription: string;
6964
7223
  configureLink: string;
6965
- neverSyncedTitle: string;
6966
- neverSyncedDescription: string;
6967
- overdueTitle_one: string;
6968
- overdueTitle_other: string;
6969
- overdueDescription: string;
6970
- recordLink: string;
6971
7224
  };
6972
7225
  };
6973
7226
  desktopShell: {
@@ -7013,8 +7266,246 @@ declare const CATALOGS: {
7013
7266
  missingBridge: string;
7014
7267
  };
7015
7268
  };
7269
+ protectionUx: {
7270
+ protectionTitle: string;
7271
+ sendRequiresBackup: string;
7272
+ setup: string;
7273
+ noBackup: string;
7274
+ setupHelp: string;
7275
+ start: string;
7276
+ openExisting: string;
7277
+ firstBackupHelp: string;
7278
+ existingHelp: string;
7279
+ importKeyFile: string;
7280
+ keyFileError: string;
7281
+ enableAndBackup: string;
7282
+ status: string;
7283
+ description: string;
7284
+ firstBackupRunning: string;
7285
+ backupRunning: string;
7286
+ firstBackupMissing: string;
7287
+ backupCompleted: string;
7288
+ locationHelp: string;
7289
+ frequency: string;
7290
+ frequencyHelp: string;
7291
+ frequencyHourly: string;
7292
+ frequency6Hours: string;
7293
+ frequency12Hours: string;
7294
+ frequencyDaily: string;
7295
+ frequencyWeekly: string;
7296
+ saveKey: string;
7297
+ localBackups: string;
7298
+ availableBackups: string;
7299
+ open: string;
7300
+ pointTools: string;
7301
+ checkHelp: string;
7302
+ policyHelp: string;
7303
+ preparingRestore: string;
7304
+ restoreSource: string;
7305
+ restoreKeepsHost: string;
7306
+ activity: string;
7307
+ keepReading: string;
7308
+ restoreWorking: string;
7309
+ taskFailed: string;
7310
+ errorDetails: string;
7311
+ chooseAnotherBackup: string;
7312
+ errorSpace: string;
7313
+ errorCertificate: string;
7314
+ errorPairing: string;
7315
+ errorNetwork: string;
7316
+ errorIncomplete: string;
7317
+ jobsHelp: string;
7318
+ };
7319
+ replicationUx: {
7320
+ unconfigured: string;
7321
+ send: string;
7322
+ receive: string;
7323
+ sendHelp: string;
7324
+ receiveHelp: string;
7325
+ useBackup: string;
7326
+ receivedBackup: string;
7327
+ receivedFrom: string;
7328
+ libraryUnchanged: string;
7329
+ waitingFirst: string;
7330
+ pasteInvitation: string;
7331
+ invalidInvitation: string;
7332
+ manualConnection: string;
7333
+ invitation: string;
7334
+ copyInvitation: string;
7335
+ copied: string;
7336
+ copyFailed: string;
7337
+ };
7338
+ backupHealth: {
7339
+ ok: string;
7340
+ okSub: string;
7341
+ syncedDevices_one: string;
7342
+ syncedDevices_other: string;
7343
+ noBackupsTitle: string;
7344
+ noBackupsSub: string;
7345
+ noBackupsAction: string;
7346
+ backupNeedsTitle: string;
7347
+ backupOffSub: string;
7348
+ neverBackedUpSub: string;
7349
+ backupNow: string;
7350
+ turnOnAutomatic: string;
7351
+ syncUnconfiguredTitle: string;
7352
+ syncUnconfiguredSub: string;
7353
+ syncUnconfiguredAction: string;
7354
+ syncDueTitle: string;
7355
+ syncDueSub: string;
7356
+ syncDueAction: string;
7357
+ receiveNow: string;
7358
+ receiverTitle: string;
7359
+ receiverSub: string;
7360
+ protectedTitle: string;
7361
+ protectedSub: string;
7362
+ };
7363
+ backupSetup: {
7364
+ title: string;
7365
+ intro: string;
7366
+ stepStart: string;
7367
+ startNew: string;
7368
+ startNewHint: string;
7369
+ startExisting: string;
7370
+ startExistingHint: string;
7371
+ createFirst: string;
7372
+ createFirstHelp: string;
7373
+ existingHelp: string;
7374
+ chooseKey: string;
7375
+ keyFileError: string;
7376
+ cancel: string;
7377
+ back: string;
7378
+ };
7016
7379
  };
7017
7380
  readonly ja: {
7381
+ protection: {
7382
+ drillDestination: string;
7383
+ lastRestore: string;
7384
+ restoredEditable: string;
7385
+ drill: string;
7386
+ fullDrill: string;
7387
+ drillHelp: string;
7388
+ restorePrompt: string;
7389
+ title: string;
7390
+ description: string;
7391
+ repository: string;
7392
+ folder: string;
7393
+ initialize: string;
7394
+ importKey: string;
7395
+ create: string;
7396
+ name: string;
7397
+ note: string;
7398
+ automatic: string;
7399
+ enabled: string;
7400
+ paused: string;
7401
+ empty: string;
7402
+ loading: string;
7403
+ restore: string;
7404
+ compare: string;
7405
+ metadata: string;
7406
+ check: string;
7407
+ checkFull: string;
7408
+ key: string;
7409
+ keyHelp: string;
7410
+ retention: string;
7411
+ keepAutomatic: string;
7412
+ previewCleanup: string;
7413
+ cleanup: string;
7414
+ reclaim: string;
7415
+ cleanupDescription: string;
7416
+ save: string;
7417
+ cancel: string;
7418
+ confirm: string;
7419
+ manual: string;
7420
+ auto: string;
7421
+ pinned: string;
7422
+ restoreTitle: string;
7423
+ restoreDescription: string;
7424
+ repair: string;
7425
+ repairTitle: string;
7426
+ repairDescription: string;
7427
+ differences: string;
7428
+ noDifferences: string;
7429
+ missing: string;
7430
+ changed: string;
7431
+ extra: string;
7432
+ archives: string;
7433
+ archivesHelp: string;
7434
+ jobs: string;
7435
+ retry: string;
7436
+ waitingFiles: string;
7437
+ maintenance: string;
7438
+ maintenanceHelp: string;
7439
+ recoveryKeySaved: string;
7440
+ lastCheck: string;
7441
+ never: string;
7442
+ noJobs: string;
7443
+ state: {
7444
+ queued: string;
7445
+ running: string;
7446
+ cancelling: string;
7447
+ succeeded: string;
7448
+ failed: string;
7449
+ cancelled: string;
7450
+ interrupted: string;
7451
+ };
7452
+ kind: {
7453
+ drill: string;
7454
+ backup: string;
7455
+ check: string;
7456
+ compare: string;
7457
+ repair: string;
7458
+ restore: string;
7459
+ retention: string;
7460
+ receive: string;
7461
+ archive: string;
7462
+ "file-write": string;
7463
+ };
7464
+ processedFiles_one: string;
7465
+ processedFiles_other: string;
7466
+ processedBytes: string;
7467
+ addedBytes: string;
7468
+ networkBytes: string;
7469
+ manageQueue: string;
7470
+ resubmitFile: string;
7471
+ };
7472
+ replication: {
7473
+ healthReceived: string;
7474
+ healthRecorded: string;
7475
+ healthAttention: string;
7476
+ healthUnconfigured: string;
7477
+ addressHelp: string;
7478
+ title: string;
7479
+ description: string;
7480
+ name: string;
7481
+ role: string;
7482
+ unconfigured: string;
7483
+ send: string;
7484
+ receive: string;
7485
+ connect: string;
7486
+ disconnect: string;
7487
+ invite: string;
7488
+ inviteHelp: string;
7489
+ url: string;
7490
+ code: string;
7491
+ fingerprint: string;
7492
+ receiveNow: string;
7493
+ paused: string;
7494
+ paired: string;
7495
+ revoke: string;
7496
+ received: string;
7497
+ never: string;
7498
+ connectHelp: string;
7499
+ source: string;
7500
+ devices: string;
7501
+ manualRecords: string;
7502
+ addRecord: string;
7503
+ details: string;
7504
+ copy: string;
7505
+ remove: string;
7506
+ unknown: string;
7507
+ noDevices: string;
7508
+ };
7018
7509
  common: {
7019
7510
  back: string;
7020
7511
  cancel: string;
@@ -7052,7 +7543,6 @@ declare const CATALOGS: {
7052
7543
  requestFailed: string;
7053
7544
  saved: string;
7054
7545
  saveFailed: string;
7055
- confirmByTypingPrompt: string;
7056
7546
  searchIncludeIntro: string;
7057
7547
  underline: string;
7058
7548
  colorPicker: {
@@ -7200,10 +7690,10 @@ declare const CATALOGS: {
7200
7690
  desktop: string;
7201
7691
  custom: string;
7202
7692
  privacy: string;
7693
+ archives: string;
7203
7694
  archive: string;
7204
7695
  plugins: string;
7205
7696
  marketplace: string;
7206
- sync: string;
7207
7697
  };
7208
7698
  section: {
7209
7699
  language: string;
@@ -7251,6 +7741,10 @@ declare const CATALOGS: {
7251
7741
  collection: string;
7252
7742
  };
7253
7743
  link: string;
7744
+ watchOnly: {
7745
+ title: string;
7746
+ description: string;
7747
+ };
7254
7748
  };
7255
7749
  account: {
7256
7750
  title: string;
@@ -7522,7 +8016,8 @@ declare const CATALOGS: {
7522
8016
  };
7523
8017
  plugins: {
7524
8018
  pageHint: string;
7525
- uploadZip: string;
8019
+ uploadPlugin: string;
8020
+ uploadValidatedServerSide: string;
7526
8021
  uploadPluginSuccess: string;
7527
8022
  uploading: string;
7528
8023
  rescan: string;
@@ -7834,19 +8329,12 @@ declare const CATALOGS: {
7834
8329
  setupFormAria: string;
7835
8330
  };
7836
8331
  dataHistory: {
7837
- title: string;
7838
- description: string;
7839
- status: {
7840
- currentWritable: string;
7841
- viewingArchive: string;
7842
- };
8332
+ pageHint: string;
7843
8333
  chip: {
7844
8334
  latest: string;
7845
8335
  readOnly: string;
7846
- auto: string;
7847
8336
  };
7848
8337
  archive: {
7849
- title: string;
7850
8338
  tagCurrent: string;
7851
8339
  tagActive: string;
7852
8340
  tagReadOnly: string;
@@ -7856,80 +8344,31 @@ declare const CATALOGS: {
7856
8344
  namePlaceholder: string;
7857
8345
  noteLabel: string;
7858
8346
  notePlaceholder: string;
7859
- switchHint: string;
7860
- activeHint: string;
7861
- };
7862
- backup: {
7863
- typeLabel: string;
7864
- autoTypeLabel: string;
7865
- autoBadge: string;
7866
- autoDeleteHint: string;
7867
- nameLabel: string;
7868
- nameEmpty: string;
7869
- restoreHint: string;
7870
- deleteHint: string;
7871
- archivedHint: string;
7872
8347
  };
7873
8348
  action: {
7874
- backupNow: string;
7875
- backingUp: string;
7876
8349
  archiveNow: string;
7877
8350
  archiving: string;
7878
- restore: string;
7879
- restoring: string;
7880
- delete: string;
7881
- deleting: string;
8351
+ edit: string;
7882
8352
  switchToVersion: string;
7883
8353
  switching: string;
7884
- download: string;
7885
8354
  };
7886
- reloading: string;
7887
- autoSnapshot: {
7888
- enabled: string;
7889
- disabled: string;
7890
- last: string;
7891
- };
7892
- detail: {
7893
- selectPrompt: string;
7894
- size: string;
7895
- versionNumber: string;
7896
- createdAt: string;
7897
- note: string;
7898
- contents: string;
7899
- contentsValue: string;
7900
- backupOnVersion: string;
7901
- archiveVersion: string;
7902
- };
7903
- note: {
7904
- empty: string;
7905
- placeholder: string;
8355
+ edit: {
8356
+ title: string;
8357
+ description: string;
7906
8358
  };
8359
+ reloading: string;
7907
8360
  confirm: {
7908
8361
  archiveTitle: string;
7909
8362
  archiveDescription: string;
7910
8363
  archivePhrase: string;
7911
- archiveAutoHint: string;
7912
- restoreTitle: string;
7913
- restoreDescription: string;
7914
- restorePhrase: string;
7915
- autoPhrase: string;
7916
- deleteBackupTitle: string;
7917
- deleteBackupDescription: string;
7918
- deleteBackupPhrase: string;
7919
8364
  switchTitle: string;
7920
8365
  switchDescription: string;
7921
8366
  };
7922
8367
  empty: {
7923
8368
  title: string;
7924
- description: string;
7925
8369
  };
7926
8370
  toast: {
7927
- backupCreated: string;
7928
- backupFailed: string;
7929
8371
  archiveFailed: string;
7930
- backupDeleted: string;
7931
- deleteFailed: string;
7932
- restoreFailed: string;
7933
8372
  switchFailed: string;
7934
8373
  metaSaved: string;
7935
8374
  metaSaveFailed: string;
@@ -8973,6 +9412,13 @@ declare const CATALOGS: {
8973
9412
  uploadImage: string;
8974
9413
  editImage: string;
8975
9414
  imageDialogTitle: string;
9415
+ visibilityLabel: string;
9416
+ visibilityHint: string;
9417
+ };
9418
+ visibility: {
9419
+ normal: string;
9420
+ watchOnly: string;
9421
+ explicitView: string;
8976
9422
  };
8977
9423
  card: {
8978
9424
  openLink: string;
@@ -9206,89 +9652,15 @@ declare const CATALOGS: {
9206
9652
  };
9207
9653
  };
9208
9654
  sync: {
9209
- pageHint: string;
9210
- status: {
9211
- allUpToDate: string;
9212
- dueCount_one: string;
9213
- dueCount_other: string;
9214
- };
9215
- tip: {
9216
- oneWay: string;
9217
- };
9218
9655
  config: {
9219
9656
  remindLabel: string;
9220
- remindDescription: string;
9221
9657
  remindDays_one: string;
9222
9658
  remindDays_other: string;
9223
9659
  };
9224
- devices: {
9225
- addTitle: string;
9226
- addAutoRecord: string;
9227
- namePlaceholder: string;
9228
- notesPlaceholder: string;
9229
- nameHint: string;
9230
- notesHint: string;
9231
- add: string;
9232
- addPending: string;
9233
- empty: string;
9234
- loading: string;
9235
- neverSynced: string;
9236
- lastSyncedAgo_one: string;
9237
- lastSyncedAgo_other: string;
9238
- justNow: string;
9239
- minutesAgo_one: string;
9240
- minutesAgo_other: string;
9241
- hoursAgo_one: string;
9242
- hoursAgo_other: string;
9243
- upToDate: string;
9244
- overdue_one: string;
9245
- overdue_other: string;
9246
- neverBadge: string;
9247
- record: string;
9248
- recordNow: string;
9249
- deleteTitle: string;
9250
- deleteDescription: string;
9251
- delete: string;
9252
- deletePending: string;
9253
- editTitle: string;
9254
- edit: string;
9255
- save: string;
9256
- editPending: string;
9257
- liveHint: string;
9258
- };
9259
- fields: {
9260
- resources: string;
9261
- characters: string;
9262
- documents: string;
9263
- folders: string;
9264
- messages: string;
9265
- tags: string;
9266
- collections: string;
9267
- trash: string;
9268
- contentSize: string;
9269
- storage: string;
9270
- firstRecord: string;
9271
- };
9272
- toast: {
9273
- deviceAdded: string;
9274
- deviceAddFailed: string;
9275
- deviceUpdated: string;
9276
- deviceUpdateFailed: string;
9277
- deviceDeleted: string;
9278
- deviceDeleteFailed: string;
9279
- recorded: string;
9280
- recordFailed: string;
9281
- };
9282
9660
  banner: {
9283
9661
  noDevicesTitle: string;
9284
9662
  noDevicesDescription: string;
9285
9663
  configureLink: string;
9286
- neverSyncedTitle: string;
9287
- neverSyncedDescription: string;
9288
- overdueTitle_one: string;
9289
- overdueTitle_other: string;
9290
- overdueDescription: string;
9291
- recordLink: string;
9292
9664
  };
9293
9665
  };
9294
9666
  desktopShell: {
@@ -9334,8 +9706,246 @@ declare const CATALOGS: {
9334
9706
  missingBridge: string;
9335
9707
  };
9336
9708
  };
9709
+ protectionUx: {
9710
+ protectionTitle: string;
9711
+ sendRequiresBackup: string;
9712
+ setup: string;
9713
+ noBackup: string;
9714
+ setupHelp: string;
9715
+ start: string;
9716
+ openExisting: string;
9717
+ firstBackupHelp: string;
9718
+ existingHelp: string;
9719
+ importKeyFile: string;
9720
+ keyFileError: string;
9721
+ enableAndBackup: string;
9722
+ status: string;
9723
+ description: string;
9724
+ firstBackupRunning: string;
9725
+ backupRunning: string;
9726
+ firstBackupMissing: string;
9727
+ backupCompleted: string;
9728
+ locationHelp: string;
9729
+ frequency: string;
9730
+ frequencyHelp: string;
9731
+ frequencyHourly: string;
9732
+ frequency6Hours: string;
9733
+ frequency12Hours: string;
9734
+ frequencyDaily: string;
9735
+ frequencyWeekly: string;
9736
+ saveKey: string;
9737
+ localBackups: string;
9738
+ availableBackups: string;
9739
+ open: string;
9740
+ pointTools: string;
9741
+ checkHelp: string;
9742
+ policyHelp: string;
9743
+ preparingRestore: string;
9744
+ restoreSource: string;
9745
+ restoreKeepsHost: string;
9746
+ activity: string;
9747
+ keepReading: string;
9748
+ restoreWorking: string;
9749
+ taskFailed: string;
9750
+ errorDetails: string;
9751
+ chooseAnotherBackup: string;
9752
+ errorSpace: string;
9753
+ errorCertificate: string;
9754
+ errorPairing: string;
9755
+ errorNetwork: string;
9756
+ errorIncomplete: string;
9757
+ jobsHelp: string;
9758
+ };
9759
+ replicationUx: {
9760
+ unconfigured: string;
9761
+ send: string;
9762
+ receive: string;
9763
+ sendHelp: string;
9764
+ receiveHelp: string;
9765
+ useBackup: string;
9766
+ receivedBackup: string;
9767
+ receivedFrom: string;
9768
+ libraryUnchanged: string;
9769
+ waitingFirst: string;
9770
+ pasteInvitation: string;
9771
+ invalidInvitation: string;
9772
+ manualConnection: string;
9773
+ invitation: string;
9774
+ copyInvitation: string;
9775
+ copied: string;
9776
+ copyFailed: string;
9777
+ };
9778
+ backupHealth: {
9779
+ ok: string;
9780
+ okSub: string;
9781
+ syncedDevices_one: string;
9782
+ syncedDevices_other: string;
9783
+ noBackupsTitle: string;
9784
+ noBackupsSub: string;
9785
+ noBackupsAction: string;
9786
+ backupNeedsTitle: string;
9787
+ backupOffSub: string;
9788
+ neverBackedUpSub: string;
9789
+ backupNow: string;
9790
+ turnOnAutomatic: string;
9791
+ syncUnconfiguredTitle: string;
9792
+ syncUnconfiguredSub: string;
9793
+ syncUnconfiguredAction: string;
9794
+ syncDueTitle: string;
9795
+ syncDueSub: string;
9796
+ syncDueAction: string;
9797
+ receiveNow: string;
9798
+ receiverTitle: string;
9799
+ receiverSub: string;
9800
+ protectedTitle: string;
9801
+ protectedSub: string;
9802
+ };
9803
+ backupSetup: {
9804
+ title: string;
9805
+ intro: string;
9806
+ stepStart: string;
9807
+ startNew: string;
9808
+ startNewHint: string;
9809
+ startExisting: string;
9810
+ startExistingHint: string;
9811
+ createFirst: string;
9812
+ createFirstHelp: string;
9813
+ existingHelp: string;
9814
+ chooseKey: string;
9815
+ keyFileError: string;
9816
+ cancel: string;
9817
+ back: string;
9818
+ };
9337
9819
  };
9338
9820
  readonly de: {
9821
+ protection: {
9822
+ drillDestination: string;
9823
+ lastRestore: string;
9824
+ restoredEditable: string;
9825
+ drill: string;
9826
+ fullDrill: string;
9827
+ drillHelp: string;
9828
+ restorePrompt: string;
9829
+ title: string;
9830
+ description: string;
9831
+ repository: string;
9832
+ folder: string;
9833
+ initialize: string;
9834
+ importKey: string;
9835
+ create: string;
9836
+ name: string;
9837
+ note: string;
9838
+ automatic: string;
9839
+ enabled: string;
9840
+ paused: string;
9841
+ empty: string;
9842
+ loading: string;
9843
+ restore: string;
9844
+ compare: string;
9845
+ metadata: string;
9846
+ check: string;
9847
+ checkFull: string;
9848
+ key: string;
9849
+ keyHelp: string;
9850
+ retention: string;
9851
+ keepAutomatic: string;
9852
+ previewCleanup: string;
9853
+ cleanup: string;
9854
+ reclaim: string;
9855
+ cleanupDescription: string;
9856
+ save: string;
9857
+ cancel: string;
9858
+ confirm: string;
9859
+ manual: string;
9860
+ auto: string;
9861
+ pinned: string;
9862
+ restoreTitle: string;
9863
+ restoreDescription: string;
9864
+ repair: string;
9865
+ repairTitle: string;
9866
+ repairDescription: string;
9867
+ differences: string;
9868
+ noDifferences: string;
9869
+ missing: string;
9870
+ changed: string;
9871
+ extra: string;
9872
+ archives: string;
9873
+ archivesHelp: string;
9874
+ jobs: string;
9875
+ retry: string;
9876
+ waitingFiles: string;
9877
+ maintenance: string;
9878
+ maintenanceHelp: string;
9879
+ recoveryKeySaved: string;
9880
+ lastCheck: string;
9881
+ never: string;
9882
+ noJobs: string;
9883
+ state: {
9884
+ queued: string;
9885
+ running: string;
9886
+ cancelling: string;
9887
+ succeeded: string;
9888
+ failed: string;
9889
+ cancelled: string;
9890
+ interrupted: string;
9891
+ };
9892
+ kind: {
9893
+ drill: string;
9894
+ backup: string;
9895
+ check: string;
9896
+ compare: string;
9897
+ repair: string;
9898
+ restore: string;
9899
+ retention: string;
9900
+ receive: string;
9901
+ archive: string;
9902
+ "file-write": string;
9903
+ };
9904
+ processedFiles_one: string;
9905
+ processedFiles_other: string;
9906
+ processedBytes: string;
9907
+ addedBytes: string;
9908
+ networkBytes: string;
9909
+ manageQueue: string;
9910
+ resubmitFile: string;
9911
+ };
9912
+ replication: {
9913
+ healthReceived: string;
9914
+ healthRecorded: string;
9915
+ healthAttention: string;
9916
+ healthUnconfigured: string;
9917
+ addressHelp: string;
9918
+ title: string;
9919
+ description: string;
9920
+ name: string;
9921
+ role: string;
9922
+ unconfigured: string;
9923
+ send: string;
9924
+ receive: string;
9925
+ connect: string;
9926
+ disconnect: string;
9927
+ invite: string;
9928
+ inviteHelp: string;
9929
+ url: string;
9930
+ code: string;
9931
+ fingerprint: string;
9932
+ receiveNow: string;
9933
+ paused: string;
9934
+ paired: string;
9935
+ revoke: string;
9936
+ received: string;
9937
+ never: string;
9938
+ connectHelp: string;
9939
+ source: string;
9940
+ devices: string;
9941
+ manualRecords: string;
9942
+ addRecord: string;
9943
+ details: string;
9944
+ copy: string;
9945
+ remove: string;
9946
+ unknown: string;
9947
+ noDevices: string;
9948
+ };
9339
9949
  common: {
9340
9950
  back: string;
9341
9951
  cancel: string;
@@ -9373,7 +9983,6 @@ declare const CATALOGS: {
9373
9983
  requestFailed: string;
9374
9984
  saved: string;
9375
9985
  saveFailed: string;
9376
- confirmByTypingPrompt: string;
9377
9986
  searchIncludeIntro: string;
9378
9987
  underline: string;
9379
9988
  colorPicker: {
@@ -9521,10 +10130,10 @@ declare const CATALOGS: {
9521
10130
  desktop: string;
9522
10131
  custom: string;
9523
10132
  privacy: string;
10133
+ archives: string;
9524
10134
  archive: string;
9525
10135
  plugins: string;
9526
10136
  marketplace: string;
9527
- sync: string;
9528
10137
  };
9529
10138
  section: {
9530
10139
  language: string;
@@ -9572,6 +10181,10 @@ declare const CATALOGS: {
9572
10181
  collection: string;
9573
10182
  };
9574
10183
  link: string;
10184
+ watchOnly: {
10185
+ title: string;
10186
+ description: string;
10187
+ };
9575
10188
  };
9576
10189
  account: {
9577
10190
  title: string;
@@ -9843,7 +10456,8 @@ declare const CATALOGS: {
9843
10456
  };
9844
10457
  plugins: {
9845
10458
  pageHint: string;
9846
- uploadZip: string;
10459
+ uploadPlugin: string;
10460
+ uploadValidatedServerSide: string;
9847
10461
  uploadPluginSuccess: string;
9848
10462
  uploading: string;
9849
10463
  rescan: string;
@@ -10155,19 +10769,12 @@ declare const CATALOGS: {
10155
10769
  setupFormAria: string;
10156
10770
  };
10157
10771
  dataHistory: {
10158
- title: string;
10159
- description: string;
10160
- status: {
10161
- currentWritable: string;
10162
- viewingArchive: string;
10163
- };
10772
+ pageHint: string;
10164
10773
  chip: {
10165
10774
  latest: string;
10166
10775
  readOnly: string;
10167
- auto: string;
10168
10776
  };
10169
10777
  archive: {
10170
- title: string;
10171
10778
  tagCurrent: string;
10172
10779
  tagActive: string;
10173
10780
  tagReadOnly: string;
@@ -10177,80 +10784,31 @@ declare const CATALOGS: {
10177
10784
  namePlaceholder: string;
10178
10785
  noteLabel: string;
10179
10786
  notePlaceholder: string;
10180
- switchHint: string;
10181
- activeHint: string;
10182
- };
10183
- backup: {
10184
- typeLabel: string;
10185
- autoTypeLabel: string;
10186
- autoBadge: string;
10187
- autoDeleteHint: string;
10188
- nameLabel: string;
10189
- nameEmpty: string;
10190
- restoreHint: string;
10191
- deleteHint: string;
10192
- archivedHint: string;
10193
10787
  };
10194
10788
  action: {
10195
- backupNow: string;
10196
- backingUp: string;
10197
10789
  archiveNow: string;
10198
10790
  archiving: string;
10199
- restore: string;
10200
- restoring: string;
10201
- delete: string;
10202
- deleting: string;
10791
+ edit: string;
10203
10792
  switchToVersion: string;
10204
10793
  switching: string;
10205
- download: string;
10206
10794
  };
10207
- reloading: string;
10208
- autoSnapshot: {
10209
- enabled: string;
10210
- disabled: string;
10211
- last: string;
10212
- };
10213
- detail: {
10214
- selectPrompt: string;
10215
- size: string;
10216
- versionNumber: string;
10217
- createdAt: string;
10218
- note: string;
10219
- contents: string;
10220
- contentsValue: string;
10221
- backupOnVersion: string;
10222
- archiveVersion: string;
10223
- };
10224
- note: {
10225
- empty: string;
10226
- placeholder: string;
10795
+ edit: {
10796
+ title: string;
10797
+ description: string;
10227
10798
  };
10799
+ reloading: string;
10228
10800
  confirm: {
10229
10801
  archiveTitle: string;
10230
10802
  archiveDescription: string;
10231
10803
  archivePhrase: string;
10232
- archiveAutoHint: string;
10233
- restoreTitle: string;
10234
- restoreDescription: string;
10235
- restorePhrase: string;
10236
- autoPhrase: string;
10237
- deleteBackupTitle: string;
10238
- deleteBackupDescription: string;
10239
- deleteBackupPhrase: string;
10240
10804
  switchTitle: string;
10241
10805
  switchDescription: string;
10242
10806
  };
10243
10807
  empty: {
10244
10808
  title: string;
10245
- description: string;
10246
10809
  };
10247
10810
  toast: {
10248
- backupCreated: string;
10249
- backupFailed: string;
10250
10811
  archiveFailed: string;
10251
- backupDeleted: string;
10252
- deleteFailed: string;
10253
- restoreFailed: string;
10254
10812
  switchFailed: string;
10255
10813
  metaSaved: string;
10256
10814
  metaSaveFailed: string;
@@ -11294,6 +11852,13 @@ declare const CATALOGS: {
11294
11852
  uploadImage: string;
11295
11853
  editImage: string;
11296
11854
  imageDialogTitle: string;
11855
+ visibilityLabel: string;
11856
+ visibilityHint: string;
11857
+ };
11858
+ visibility: {
11859
+ normal: string;
11860
+ watchOnly: string;
11861
+ explicitView: string;
11297
11862
  };
11298
11863
  card: {
11299
11864
  openLink: string;
@@ -11527,89 +12092,15 @@ declare const CATALOGS: {
11527
12092
  };
11528
12093
  };
11529
12094
  sync: {
11530
- pageHint: string;
11531
- status: {
11532
- allUpToDate: string;
11533
- dueCount_one: string;
11534
- dueCount_other: string;
11535
- };
11536
- tip: {
11537
- oneWay: string;
11538
- };
11539
12095
  config: {
11540
12096
  remindLabel: string;
11541
- remindDescription: string;
11542
12097
  remindDays_one: string;
11543
12098
  remindDays_other: string;
11544
12099
  };
11545
- devices: {
11546
- addTitle: string;
11547
- addAutoRecord: string;
11548
- namePlaceholder: string;
11549
- notesPlaceholder: string;
11550
- nameHint: string;
11551
- notesHint: string;
11552
- add: string;
11553
- addPending: string;
11554
- empty: string;
11555
- loading: string;
11556
- neverSynced: string;
11557
- lastSyncedAgo_one: string;
11558
- lastSyncedAgo_other: string;
11559
- justNow: string;
11560
- minutesAgo_one: string;
11561
- minutesAgo_other: string;
11562
- hoursAgo_one: string;
11563
- hoursAgo_other: string;
11564
- upToDate: string;
11565
- overdue_one: string;
11566
- overdue_other: string;
11567
- neverBadge: string;
11568
- record: string;
11569
- recordNow: string;
11570
- deleteTitle: string;
11571
- deleteDescription: string;
11572
- delete: string;
11573
- deletePending: string;
11574
- editTitle: string;
11575
- edit: string;
11576
- save: string;
11577
- editPending: string;
11578
- liveHint: string;
11579
- };
11580
- fields: {
11581
- resources: string;
11582
- characters: string;
11583
- documents: string;
11584
- folders: string;
11585
- messages: string;
11586
- tags: string;
11587
- collections: string;
11588
- trash: string;
11589
- contentSize: string;
11590
- storage: string;
11591
- firstRecord: string;
11592
- };
11593
- toast: {
11594
- deviceAdded: string;
11595
- deviceAddFailed: string;
11596
- deviceUpdated: string;
11597
- deviceUpdateFailed: string;
11598
- deviceDeleted: string;
11599
- deviceDeleteFailed: string;
11600
- recorded: string;
11601
- recordFailed: string;
11602
- };
11603
12100
  banner: {
11604
12101
  noDevicesTitle: string;
11605
12102
  noDevicesDescription: string;
11606
12103
  configureLink: string;
11607
- neverSyncedTitle: string;
11608
- neverSyncedDescription: string;
11609
- overdueTitle_one: string;
11610
- overdueTitle_other: string;
11611
- overdueDescription: string;
11612
- recordLink: string;
11613
12104
  };
11614
12105
  };
11615
12106
  desktopShell: {
@@ -11655,8 +12146,246 @@ declare const CATALOGS: {
11655
12146
  missingBridge: string;
11656
12147
  };
11657
12148
  };
12149
+ protectionUx: {
12150
+ protectionTitle: string;
12151
+ sendRequiresBackup: string;
12152
+ setup: string;
12153
+ noBackup: string;
12154
+ setupHelp: string;
12155
+ start: string;
12156
+ openExisting: string;
12157
+ firstBackupHelp: string;
12158
+ existingHelp: string;
12159
+ importKeyFile: string;
12160
+ keyFileError: string;
12161
+ enableAndBackup: string;
12162
+ status: string;
12163
+ description: string;
12164
+ firstBackupRunning: string;
12165
+ backupRunning: string;
12166
+ firstBackupMissing: string;
12167
+ backupCompleted: string;
12168
+ locationHelp: string;
12169
+ frequency: string;
12170
+ frequencyHelp: string;
12171
+ frequencyHourly: string;
12172
+ frequency6Hours: string;
12173
+ frequency12Hours: string;
12174
+ frequencyDaily: string;
12175
+ frequencyWeekly: string;
12176
+ saveKey: string;
12177
+ localBackups: string;
12178
+ availableBackups: string;
12179
+ open: string;
12180
+ pointTools: string;
12181
+ checkHelp: string;
12182
+ policyHelp: string;
12183
+ preparingRestore: string;
12184
+ restoreSource: string;
12185
+ restoreKeepsHost: string;
12186
+ activity: string;
12187
+ keepReading: string;
12188
+ restoreWorking: string;
12189
+ taskFailed: string;
12190
+ errorDetails: string;
12191
+ chooseAnotherBackup: string;
12192
+ errorSpace: string;
12193
+ errorCertificate: string;
12194
+ errorPairing: string;
12195
+ errorNetwork: string;
12196
+ errorIncomplete: string;
12197
+ jobsHelp: string;
12198
+ };
12199
+ replicationUx: {
12200
+ unconfigured: string;
12201
+ send: string;
12202
+ receive: string;
12203
+ sendHelp: string;
12204
+ receiveHelp: string;
12205
+ useBackup: string;
12206
+ receivedBackup: string;
12207
+ receivedFrom: string;
12208
+ libraryUnchanged: string;
12209
+ waitingFirst: string;
12210
+ pasteInvitation: string;
12211
+ invalidInvitation: string;
12212
+ manualConnection: string;
12213
+ invitation: string;
12214
+ copyInvitation: string;
12215
+ copied: string;
12216
+ copyFailed: string;
12217
+ };
12218
+ backupHealth: {
12219
+ ok: string;
12220
+ okSub: string;
12221
+ syncedDevices_one: string;
12222
+ syncedDevices_other: string;
12223
+ noBackupsTitle: string;
12224
+ noBackupsSub: string;
12225
+ noBackupsAction: string;
12226
+ backupNeedsTitle: string;
12227
+ backupOffSub: string;
12228
+ neverBackedUpSub: string;
12229
+ backupNow: string;
12230
+ turnOnAutomatic: string;
12231
+ syncUnconfiguredTitle: string;
12232
+ syncUnconfiguredSub: string;
12233
+ syncUnconfiguredAction: string;
12234
+ syncDueTitle: string;
12235
+ syncDueSub: string;
12236
+ syncDueAction: string;
12237
+ receiveNow: string;
12238
+ receiverTitle: string;
12239
+ receiverSub: string;
12240
+ protectedTitle: string;
12241
+ protectedSub: string;
12242
+ };
12243
+ backupSetup: {
12244
+ title: string;
12245
+ intro: string;
12246
+ stepStart: string;
12247
+ startNew: string;
12248
+ startNewHint: string;
12249
+ startExisting: string;
12250
+ startExistingHint: string;
12251
+ createFirst: string;
12252
+ createFirstHelp: string;
12253
+ existingHelp: string;
12254
+ chooseKey: string;
12255
+ keyFileError: string;
12256
+ cancel: string;
12257
+ back: string;
12258
+ };
11658
12259
  };
11659
12260
  readonly es: {
12261
+ protection: {
12262
+ drillDestination: string;
12263
+ lastRestore: string;
12264
+ restoredEditable: string;
12265
+ drill: string;
12266
+ fullDrill: string;
12267
+ drillHelp: string;
12268
+ restorePrompt: string;
12269
+ title: string;
12270
+ description: string;
12271
+ repository: string;
12272
+ folder: string;
12273
+ initialize: string;
12274
+ importKey: string;
12275
+ create: string;
12276
+ name: string;
12277
+ note: string;
12278
+ automatic: string;
12279
+ enabled: string;
12280
+ paused: string;
12281
+ empty: string;
12282
+ loading: string;
12283
+ restore: string;
12284
+ compare: string;
12285
+ metadata: string;
12286
+ check: string;
12287
+ checkFull: string;
12288
+ key: string;
12289
+ keyHelp: string;
12290
+ retention: string;
12291
+ keepAutomatic: string;
12292
+ previewCleanup: string;
12293
+ cleanup: string;
12294
+ reclaim: string;
12295
+ cleanupDescription: string;
12296
+ save: string;
12297
+ cancel: string;
12298
+ confirm: string;
12299
+ manual: string;
12300
+ auto: string;
12301
+ pinned: string;
12302
+ restoreTitle: string;
12303
+ restoreDescription: string;
12304
+ repair: string;
12305
+ repairTitle: string;
12306
+ repairDescription: string;
12307
+ differences: string;
12308
+ noDifferences: string;
12309
+ missing: string;
12310
+ changed: string;
12311
+ extra: string;
12312
+ archives: string;
12313
+ archivesHelp: string;
12314
+ jobs: string;
12315
+ retry: string;
12316
+ waitingFiles: string;
12317
+ maintenance: string;
12318
+ maintenanceHelp: string;
12319
+ recoveryKeySaved: string;
12320
+ lastCheck: string;
12321
+ never: string;
12322
+ noJobs: string;
12323
+ state: {
12324
+ queued: string;
12325
+ running: string;
12326
+ cancelling: string;
12327
+ succeeded: string;
12328
+ failed: string;
12329
+ cancelled: string;
12330
+ interrupted: string;
12331
+ };
12332
+ kind: {
12333
+ drill: string;
12334
+ backup: string;
12335
+ check: string;
12336
+ compare: string;
12337
+ repair: string;
12338
+ restore: string;
12339
+ retention: string;
12340
+ receive: string;
12341
+ archive: string;
12342
+ "file-write": string;
12343
+ };
12344
+ processedFiles_one: string;
12345
+ processedFiles_other: string;
12346
+ processedBytes: string;
12347
+ addedBytes: string;
12348
+ networkBytes: string;
12349
+ manageQueue: string;
12350
+ resubmitFile: string;
12351
+ };
12352
+ replication: {
12353
+ healthReceived: string;
12354
+ healthRecorded: string;
12355
+ healthAttention: string;
12356
+ healthUnconfigured: string;
12357
+ addressHelp: string;
12358
+ title: string;
12359
+ description: string;
12360
+ name: string;
12361
+ role: string;
12362
+ unconfigured: string;
12363
+ send: string;
12364
+ receive: string;
12365
+ connect: string;
12366
+ disconnect: string;
12367
+ invite: string;
12368
+ inviteHelp: string;
12369
+ url: string;
12370
+ code: string;
12371
+ fingerprint: string;
12372
+ receiveNow: string;
12373
+ paused: string;
12374
+ paired: string;
12375
+ revoke: string;
12376
+ received: string;
12377
+ never: string;
12378
+ connectHelp: string;
12379
+ source: string;
12380
+ devices: string;
12381
+ manualRecords: string;
12382
+ addRecord: string;
12383
+ details: string;
12384
+ copy: string;
12385
+ remove: string;
12386
+ unknown: string;
12387
+ noDevices: string;
12388
+ };
11660
12389
  common: {
11661
12390
  back: string;
11662
12391
  cancel: string;
@@ -11694,7 +12423,6 @@ declare const CATALOGS: {
11694
12423
  requestFailed: string;
11695
12424
  saved: string;
11696
12425
  saveFailed: string;
11697
- confirmByTypingPrompt: string;
11698
12426
  searchIncludeIntro: string;
11699
12427
  underline: string;
11700
12428
  colorPicker: {
@@ -11842,10 +12570,10 @@ declare const CATALOGS: {
11842
12570
  desktop: string;
11843
12571
  custom: string;
11844
12572
  privacy: string;
12573
+ archives: string;
11845
12574
  archive: string;
11846
12575
  plugins: string;
11847
12576
  marketplace: string;
11848
- sync: string;
11849
12577
  };
11850
12578
  section: {
11851
12579
  language: string;
@@ -11893,6 +12621,10 @@ declare const CATALOGS: {
11893
12621
  collection: string;
11894
12622
  };
11895
12623
  link: string;
12624
+ watchOnly: {
12625
+ title: string;
12626
+ description: string;
12627
+ };
11896
12628
  };
11897
12629
  account: {
11898
12630
  title: string;
@@ -12164,7 +12896,8 @@ declare const CATALOGS: {
12164
12896
  };
12165
12897
  plugins: {
12166
12898
  pageHint: string;
12167
- uploadZip: string;
12899
+ uploadPlugin: string;
12900
+ uploadValidatedServerSide: string;
12168
12901
  uploadPluginSuccess: string;
12169
12902
  uploading: string;
12170
12903
  rescan: string;
@@ -12476,19 +13209,12 @@ declare const CATALOGS: {
12476
13209
  setupFormAria: string;
12477
13210
  };
12478
13211
  dataHistory: {
12479
- title: string;
12480
- description: string;
12481
- status: {
12482
- currentWritable: string;
12483
- viewingArchive: string;
12484
- };
13212
+ pageHint: string;
12485
13213
  chip: {
12486
13214
  latest: string;
12487
13215
  readOnly: string;
12488
- auto: string;
12489
13216
  };
12490
13217
  archive: {
12491
- title: string;
12492
13218
  tagCurrent: string;
12493
13219
  tagActive: string;
12494
13220
  tagReadOnly: string;
@@ -12498,80 +13224,31 @@ declare const CATALOGS: {
12498
13224
  namePlaceholder: string;
12499
13225
  noteLabel: string;
12500
13226
  notePlaceholder: string;
12501
- switchHint: string;
12502
- activeHint: string;
12503
- };
12504
- backup: {
12505
- typeLabel: string;
12506
- autoTypeLabel: string;
12507
- autoBadge: string;
12508
- autoDeleteHint: string;
12509
- nameLabel: string;
12510
- nameEmpty: string;
12511
- restoreHint: string;
12512
- deleteHint: string;
12513
- archivedHint: string;
12514
13227
  };
12515
13228
  action: {
12516
- backupNow: string;
12517
- backingUp: string;
12518
13229
  archiveNow: string;
12519
13230
  archiving: string;
12520
- restore: string;
12521
- restoring: string;
12522
- delete: string;
12523
- deleting: string;
13231
+ edit: string;
12524
13232
  switchToVersion: string;
12525
13233
  switching: string;
12526
- download: string;
12527
- };
12528
- reloading: string;
12529
- autoSnapshot: {
12530
- enabled: string;
12531
- disabled: string;
12532
- last: string;
12533
13234
  };
12534
- detail: {
12535
- selectPrompt: string;
12536
- size: string;
12537
- versionNumber: string;
12538
- createdAt: string;
12539
- note: string;
12540
- contents: string;
12541
- contentsValue: string;
12542
- backupOnVersion: string;
12543
- archiveVersion: string;
12544
- };
12545
- note: {
12546
- empty: string;
12547
- placeholder: string;
13235
+ edit: {
13236
+ title: string;
13237
+ description: string;
12548
13238
  };
13239
+ reloading: string;
12549
13240
  confirm: {
12550
13241
  archiveTitle: string;
12551
13242
  archiveDescription: string;
12552
13243
  archivePhrase: string;
12553
- archiveAutoHint: string;
12554
- restoreTitle: string;
12555
- restoreDescription: string;
12556
- restorePhrase: string;
12557
- autoPhrase: string;
12558
- deleteBackupTitle: string;
12559
- deleteBackupDescription: string;
12560
- deleteBackupPhrase: string;
12561
13244
  switchTitle: string;
12562
13245
  switchDescription: string;
12563
13246
  };
12564
13247
  empty: {
12565
13248
  title: string;
12566
- description: string;
12567
13249
  };
12568
13250
  toast: {
12569
- backupCreated: string;
12570
- backupFailed: string;
12571
13251
  archiveFailed: string;
12572
- backupDeleted: string;
12573
- deleteFailed: string;
12574
- restoreFailed: string;
12575
13252
  switchFailed: string;
12576
13253
  metaSaved: string;
12577
13254
  metaSaveFailed: string;
@@ -13615,6 +14292,13 @@ declare const CATALOGS: {
13615
14292
  uploadImage: string;
13616
14293
  editImage: string;
13617
14294
  imageDialogTitle: string;
14295
+ visibilityLabel: string;
14296
+ visibilityHint: string;
14297
+ };
14298
+ visibility: {
14299
+ normal: string;
14300
+ watchOnly: string;
14301
+ explicitView: string;
13618
14302
  };
13619
14303
  card: {
13620
14304
  openLink: string;
@@ -13848,89 +14532,15 @@ declare const CATALOGS: {
13848
14532
  };
13849
14533
  };
13850
14534
  sync: {
13851
- pageHint: string;
13852
- status: {
13853
- allUpToDate: string;
13854
- dueCount_one: string;
13855
- dueCount_other: string;
13856
- };
13857
- tip: {
13858
- oneWay: string;
13859
- };
13860
14535
  config: {
13861
14536
  remindLabel: string;
13862
- remindDescription: string;
13863
14537
  remindDays_one: string;
13864
14538
  remindDays_other: string;
13865
14539
  };
13866
- devices: {
13867
- addTitle: string;
13868
- addAutoRecord: string;
13869
- namePlaceholder: string;
13870
- notesPlaceholder: string;
13871
- nameHint: string;
13872
- notesHint: string;
13873
- add: string;
13874
- addPending: string;
13875
- empty: string;
13876
- loading: string;
13877
- neverSynced: string;
13878
- lastSyncedAgo_one: string;
13879
- lastSyncedAgo_other: string;
13880
- justNow: string;
13881
- minutesAgo_one: string;
13882
- minutesAgo_other: string;
13883
- hoursAgo_one: string;
13884
- hoursAgo_other: string;
13885
- upToDate: string;
13886
- overdue_one: string;
13887
- overdue_other: string;
13888
- neverBadge: string;
13889
- record: string;
13890
- recordNow: string;
13891
- deleteTitle: string;
13892
- deleteDescription: string;
13893
- delete: string;
13894
- deletePending: string;
13895
- editTitle: string;
13896
- edit: string;
13897
- save: string;
13898
- editPending: string;
13899
- liveHint: string;
13900
- };
13901
- fields: {
13902
- resources: string;
13903
- characters: string;
13904
- documents: string;
13905
- folders: string;
13906
- messages: string;
13907
- tags: string;
13908
- collections: string;
13909
- trash: string;
13910
- contentSize: string;
13911
- storage: string;
13912
- firstRecord: string;
13913
- };
13914
- toast: {
13915
- deviceAdded: string;
13916
- deviceAddFailed: string;
13917
- deviceUpdated: string;
13918
- deviceUpdateFailed: string;
13919
- deviceDeleted: string;
13920
- deviceDeleteFailed: string;
13921
- recorded: string;
13922
- recordFailed: string;
13923
- };
13924
14540
  banner: {
13925
14541
  noDevicesTitle: string;
13926
14542
  noDevicesDescription: string;
13927
14543
  configureLink: string;
13928
- neverSyncedTitle: string;
13929
- neverSyncedDescription: string;
13930
- overdueTitle_one: string;
13931
- overdueTitle_other: string;
13932
- overdueDescription: string;
13933
- recordLink: string;
13934
14544
  };
13935
14545
  };
13936
14546
  desktopShell: {
@@ -13976,6 +14586,116 @@ declare const CATALOGS: {
13976
14586
  missingBridge: string;
13977
14587
  };
13978
14588
  };
14589
+ protectionUx: {
14590
+ protectionTitle: string;
14591
+ sendRequiresBackup: string;
14592
+ setup: string;
14593
+ noBackup: string;
14594
+ setupHelp: string;
14595
+ start: string;
14596
+ openExisting: string;
14597
+ firstBackupHelp: string;
14598
+ existingHelp: string;
14599
+ importKeyFile: string;
14600
+ keyFileError: string;
14601
+ enableAndBackup: string;
14602
+ status: string;
14603
+ description: string;
14604
+ firstBackupRunning: string;
14605
+ backupRunning: string;
14606
+ firstBackupMissing: string;
14607
+ backupCompleted: string;
14608
+ locationHelp: string;
14609
+ frequency: string;
14610
+ frequencyHelp: string;
14611
+ frequencyHourly: string;
14612
+ frequency6Hours: string;
14613
+ frequency12Hours: string;
14614
+ frequencyDaily: string;
14615
+ frequencyWeekly: string;
14616
+ saveKey: string;
14617
+ localBackups: string;
14618
+ availableBackups: string;
14619
+ open: string;
14620
+ pointTools: string;
14621
+ checkHelp: string;
14622
+ policyHelp: string;
14623
+ preparingRestore: string;
14624
+ restoreSource: string;
14625
+ restoreKeepsHost: string;
14626
+ activity: string;
14627
+ keepReading: string;
14628
+ restoreWorking: string;
14629
+ taskFailed: string;
14630
+ errorDetails: string;
14631
+ chooseAnotherBackup: string;
14632
+ errorSpace: string;
14633
+ errorCertificate: string;
14634
+ errorPairing: string;
14635
+ errorNetwork: string;
14636
+ errorIncomplete: string;
14637
+ jobsHelp: string;
14638
+ };
14639
+ replicationUx: {
14640
+ unconfigured: string;
14641
+ send: string;
14642
+ receive: string;
14643
+ sendHelp: string;
14644
+ receiveHelp: string;
14645
+ useBackup: string;
14646
+ receivedBackup: string;
14647
+ receivedFrom: string;
14648
+ libraryUnchanged: string;
14649
+ waitingFirst: string;
14650
+ pasteInvitation: string;
14651
+ invalidInvitation: string;
14652
+ manualConnection: string;
14653
+ invitation: string;
14654
+ copyInvitation: string;
14655
+ copied: string;
14656
+ copyFailed: string;
14657
+ };
14658
+ backupHealth: {
14659
+ ok: string;
14660
+ okSub: string;
14661
+ syncedDevices_one: string;
14662
+ syncedDevices_other: string;
14663
+ noBackupsTitle: string;
14664
+ noBackupsSub: string;
14665
+ noBackupsAction: string;
14666
+ backupNeedsTitle: string;
14667
+ backupOffSub: string;
14668
+ neverBackedUpSub: string;
14669
+ backupNow: string;
14670
+ turnOnAutomatic: string;
14671
+ syncUnconfiguredTitle: string;
14672
+ syncUnconfiguredSub: string;
14673
+ syncUnconfiguredAction: string;
14674
+ syncDueTitle: string;
14675
+ syncDueSub: string;
14676
+ syncDueAction: string;
14677
+ receiveNow: string;
14678
+ receiverTitle: string;
14679
+ receiverSub: string;
14680
+ protectedTitle: string;
14681
+ protectedSub: string;
14682
+ };
14683
+ backupSetup: {
14684
+ title: string;
14685
+ intro: string;
14686
+ stepStart: string;
14687
+ startNew: string;
14688
+ startNewHint: string;
14689
+ startExisting: string;
14690
+ startExistingHint: string;
14691
+ createFirst: string;
14692
+ createFirstHelp: string;
14693
+ existingHelp: string;
14694
+ chooseKey: string;
14695
+ keyFileError: string;
14696
+ cancel: string;
14697
+ back: string;
14698
+ };
13979
14699
  };
13980
14700
  };
13981
14701
  /** Resolve the app catalog for the active language; pre-SPA (undefined) → English. */