Skip to content

Commit 0c8fcec

Browse files
authored
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- <[email protected]>
1 parent 2e03b4a commit 0c8fcec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/web/public/i18n/locales/en/connections.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"toasts": {
1919
"connected": "Connected",
2020
"nowConnected": "{{name}} is now connected",
21-
"nowDisconnected": "{{name}} are now disconnecte",
21+
"nowDisconnected": "{{name}} is now disconnected",
2222
"disconnected": "Disconnected",
2323
"failed": "Failed to connect",
24-
"checkConnetion": "Check your device or settings and try again",
24+
"checkConnection": "Check your device or settings and try again",
2525
"defaultSet": "Default set",
2626
"defaultConnection": "Default connection is now {{nameisconnected}}",
2727
"deleted": "Deleted",

packages/web/public/i18n/locales/en/dialog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"description": "Please enter a valid HTTP or HTTPS URL."
8585
},
8686
"connectionTest": {
87-
"description": "Test the connetion before saving to verify the device is reachable.",
87+
"description": "Test the connection before saving to verify the device is reachable.",
8888
"button": {
8989
"loading": "Testing...",
9090
"label": "Test connection"

packages/web/src/pages/Connections/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export const Connections = () => {
151151
name: c.name,
152152
interpolation: { escapeValue: false },
153153
})
154-
: t("toasts.checkConnetion"),
154+
: t("toasts.checkConnection"),
155155
});
156156
if (ok) {
157157
navigate({ to: "/" });

0 commit comments

Comments
 (0)