Commit cd63afca authored by JC Brand's avatar JC Brand

Add space following question mark

parent b91f4884
...@@ -56091,7 +56091,7 @@ _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_0__["default"].plugins ...@@ -56091,7 +56091,7 @@ _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_0__["default"].plugins
api = _converse.api; api = _converse.api;
ev.preventDefault(); 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(); api.omemo.bundle.generate();
} }
} }
...@@ -129,7 +129,7 @@ converse.plugins.add('converse-omemo', { ...@@ -129,7 +129,7 @@ converse.plugins.add('converse-omemo', {
{ __, api } = _converse; { __, api } = _converse;
ev.preventDefault(); ev.preventDefault();
if (confirm(__( 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.") "This will remove your old keys and all previously encrypted messages will no longer be ecryptable on this device.")
)) { )) {
api.omemo.bundle.generate(); api.omemo.bundle.generate();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment