Add space following question mark

This commit is contained in:
JC Brand 2018-11-22 09:09:08 +01:00
parent b91f488491
commit cd63afcaad
2 changed files with 2 additions and 2 deletions

2
dist/converse.js vendored
View File

@ -56091,7 +56091,7 @@ _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_0__["default"].plugins
api = _converse.api;
ev.preventDefault();
if (confirm(__("Are you sure you want to generate new OMEMO keys?" + "This will remove your old keys and all previously encrypted messages will no longer be ecryptable on this device."))) {
if (confirm(__("Are you sure you want to generate new OMEMO keys? " + "This will remove your old keys and all previously encrypted messages will no longer be ecryptable on this device."))) {
api.omemo.bundle.generate();
}
}

View File

@ -129,7 +129,7 @@ converse.plugins.add('converse-omemo', {
{ __, api } = _converse;
ev.preventDefault();
if (confirm(__(
"Are you sure you want to generate new OMEMO keys?" +
"Are you sure you want to generate new OMEMO keys? " +
"This will remove your old keys and all previously encrypted messages will no longer be ecryptable on this device.")
)) {
api.omemo.bundle.generate();