mirror of
https://github.com/meshtastic/web.git
synced 2025-12-23 15:51:28 -05:00
fix(i18n): Correct 'disconnected' typo in connections.json (#943)
* fix(i18n): Correct 'disconnected' typo in connections.json * fix(i18n): Correct typo 'checkConnetion' to 'checkConnection' * Fix(i18n): Correct typo in connection test description --------- Co-authored-by: philon- <philon-@users.noreply.github.com>
This commit is contained in:
@@ -18,10 +18,10 @@
|
||||
"toasts": {
|
||||
"connected": "Connected",
|
||||
"nowConnected": "{{name}} is now connected",
|
||||
"nowDisconnected": "{{name}} are now disconnecte",
|
||||
"nowDisconnected": "{{name}} is now disconnected",
|
||||
"disconnected": "Disconnected",
|
||||
"failed": "Failed to connect",
|
||||
"checkConnetion": "Check your device or settings and try again",
|
||||
"checkConnection": "Check your device or settings and try again",
|
||||
"defaultSet": "Default set",
|
||||
"defaultConnection": "Default connection is now {{nameisconnected}}",
|
||||
"deleted": "Deleted",
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
"description": "Please enter a valid HTTP or HTTPS URL."
|
||||
},
|
||||
"connectionTest": {
|
||||
"description": "Test the connetion before saving to verify the device is reachable.",
|
||||
"description": "Test the connection before saving to verify the device is reachable.",
|
||||
"button": {
|
||||
"loading": "Testing...",
|
||||
"label": "Test connection"
|
||||
|
||||
@@ -151,7 +151,7 @@ export const Connections = () => {
|
||||
name: c.name,
|
||||
interpolation: { escapeValue: false },
|
||||
})
|
||||
: t("toasts.checkConnetion"),
|
||||
: t("toasts.checkConnection"),
|
||||
});
|
||||
if (ok) {
|
||||
navigate({ to: "/" });
|
||||
|
||||
Reference in New Issue
Block a user