diff options
| -rw-r--r-- | gui/locales/messages.pot | 5 | ||||
| -rw-r--r-- | gui/src/renderer/components/SecuredLabel.tsx | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/gui/locales/messages.pot b/gui/locales/messages.pot index 84f8b8d24e..390eb72abf 100644 --- a/gui/locales/messages.pot +++ b/gui/locales/messages.pot @@ -165,7 +165,7 @@ msgstr "" msgid "UDP" msgstr "" -msgid "UNSECURE CONNECTION" +msgid "UNSECURED CONNECTION" msgstr "" msgctxt "accessibility" @@ -1391,9 +1391,6 @@ msgstr "" msgid "Too many WireGuard keys registered to account" msgstr "" -msgid "UNSECURED CONNECTION" -msgstr "" - msgid "Unsecured" msgstr "" diff --git a/gui/src/renderer/components/SecuredLabel.tsx b/gui/src/renderer/components/SecuredLabel.tsx index a69a29c250..4e53ae8ec6 100644 --- a/gui/src/renderer/components/SecuredLabel.tsx +++ b/gui/src/renderer/components/SecuredLabel.tsx @@ -51,7 +51,7 @@ function getLabelText(displayStyle: SecuredDisplayStyle) { return messages.gettext('CREATING SECURE CONNECTION'); case SecuredDisplayStyle.unsecured: - return messages.gettext('UNSECURE CONNECTION'); + return messages.gettext('UNSECURED CONNECTION'); case SecuredDisplayStyle.unsecuring: return ''; |
