summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/renderer/components')
-rw-r--r--gui/src/renderer/components/ExpiredAccountErrorView.tsx2
-rw-r--r--gui/src/renderer/components/SecuredLabel.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/components/ExpiredAccountErrorView.tsx b/gui/src/renderer/components/ExpiredAccountErrorView.tsx
index c9e816da9c..a01993787b 100644
--- a/gui/src/renderer/components/ExpiredAccountErrorView.tsx
+++ b/gui/src/renderer/components/ExpiredAccountErrorView.tsx
@@ -155,7 +155,7 @@ export default class ExpiredAccountErrorView extends React.Component<
case RecoveryAction.disconnect:
return messages.pgettext(
'connect-view',
- 'To add more, you will need to disconnect and access the Internet with an unsecured connection.',
+ 'To add more, you will need to disconnect and access the Internet with an unsecure connection.',
);
}
}
diff --git a/gui/src/renderer/components/SecuredLabel.tsx b/gui/src/renderer/components/SecuredLabel.tsx
index 08eda0afca..2d80991ed3 100644
--- a/gui/src/renderer/components/SecuredLabel.tsx
+++ b/gui/src/renderer/components/SecuredLabel.tsx
@@ -48,7 +48,7 @@ function getLabelText(displayStyle: SecuredDisplayStyle) {
return messages.gettext('CREATING SECURE CONNECTION');
case SecuredDisplayStyle.unsecured:
- return messages.gettext('UNSECURED CONNECTION');
+ return messages.gettext('UNSECURE CONNECTION');
case SecuredDisplayStyle.failedToSecure:
return messages.gettext('FAILED TO SECURE CONNECTION');