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:
Jeremy Gallant
2025-11-10 02:38:18 +01:00
committed by GitHub
parent 2e03b4a413
commit 0c8fcec23d
3 changed files with 4 additions and 4 deletions

View File

@@ -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",

View File

@@ -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"

View File

@@ -151,7 +151,7 @@ export const Connections = () => {
name: c.name,
interpolation: { escapeValue: false },
})
: t("toasts.checkConnetion"),
: t("toasts.checkConnection"),
});
if (ok) {
navigate({ to: "/" });