diff --git a/src/async-components/views/dialogs/keybackup/CreateKeyBackupDialog.js b/src/async-components/views/dialogs/keybackup/CreateKeyBackupDialog.js
index 4fb5df214b..2c54344a30 100644
--- a/src/async-components/views/dialogs/keybackup/CreateKeyBackupDialog.js
+++ b/src/async-components/views/dialogs/keybackup/CreateKeyBackupDialog.js
@@ -252,9 +252,7 @@ export default React.createClass({
for (let i = 0; i < this.state.zxcvbnResult.feedback.suggestions.length; ++i) {
suggestions.push(
{this.state.zxcvbnResult.feedback.suggestions[i]}
);
}
- const suggestionBlock = suggestions.length > 0 ?
- {suggestions}
-
: null;
+ const suggestionBlock = {suggestions.length > 0 ? suggestions : _t("Keep going...")}
;
helpText =
{this.state.zxcvbnResult.feedback.warning}
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index cfd5168152..caa51a1349 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -1380,6 +1380,7 @@
"File to import": "File to import",
"Import": "Import",
"Great! This passphrase looks strong enough.": "Great! This passphrase looks strong enough.",
+ "Keep going...": "Keep going...",
"Secure your encrypted message history with a Recovery Passphrase.": "Secure your encrypted message history with a Recovery Passphrase.",
"You'll need it if you log out or lose access to this device.": "You'll need it if you log out or lose access to this device.",
"Enter a passphrase...": "Enter a passphrase...",