Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 22 additions & 8 deletions apps/web/public/i18n/locales/en/dialog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,29 @@
"title": "Clear All Messages"
},
"import": {
"description": "Import a Channel Set from a Meshtastic URL. <br />Valid Meshtasic URLs start with \"<italic>https://meshtastic.org/e/...</italic>\"",
"description": "Import a Channel Set from a Meshtastic URL. <br />Valid Meshtastic URLs start with \"<italic>https://meshtastic.org/e/...</italic>\"",
"error": {
"invalidUrl": "Invalid Meshtastic URL"
"invalidUrl": "Invalid Meshtastic URL",
"applyFailed": {
"title": "Channel import failed",
"description": "The device did not accept the channel changes. Please try again."
}
},
"channelPrefix": "Channel ",
"primary": "Primary ",
"doNotImport": "No not import",
"channelName": "Name",
"channelSlot": "Slot",
"channelSetUrl": "Channel Set/QR Code URL",
"useLoraConfig": "Import LoRa Config",
"presetDescription": "The current LoRa Config will be replaced.",
"title": "Import Channels"
"title": "Import Channels",
"mode": "Channel import mode",
"replaceDescription": "Replace changes the selected channel slots and applies LoRa settings when included.",
"addDescription": "Add uses free secondary slots and preserves the current channels and LoRa settings.",
"addOnly": "This share can only add channels.",
"pendingChanges": "Save or discard pending settings changes before importing channels.",
"loraWillApply": "LoRa settings from this share will be applied.",
"loraWillNotApply": "LoRa settings will not be changed.",
"duplicateNames": "Channel names already exist: {{names}}. Resolve the conflict before adding.",
"capacity": "Not enough free secondary channel slots: {{available}} available for {{needed}} channels."
},
"locationResponse": {
"title": "Location: {{identifier}}",
Expand Down Expand Up @@ -160,9 +170,13 @@
"qr": {
"addChannels": "Add Channels",
"replaceChannels": "Replace Channels",
"description": "The current LoRa configuration will also be shared.",
"sharableUrl": "Sharable URL",
"title": "Generate QR Code"
"title": "Generate QR Code",
"mode": "Channel share mode",
"replaceDescription": "Replace shares the selected channels and LoRa settings.",
"addDescription": "Add shares selected channels only and preserves the receiver's existing channels and LoRa settings.",
"share": "Share",
"shareText": "Meshtastic channel share"
},
"reboot": {
"title": "Reboot device",
Expand Down
1 change: 0 additions & 1 deletion apps/web/src/components/Dialog/DialogManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const DialogManager = () => {
onOpenChange={(open) => {
setDialogOpen("import", open);
}}
loraConfig={config.lora}
/>
<ShutdownDialog
open={dialog.shutdown}
Expand Down
Loading
Loading