aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-11 15:20:30 -0800
committerfriendica <info@friendica.com>2013-11-11 15:20:30 -0800
commit4a3191cd1909dbfde861a113ba121e94b577a4cd (patch)
tree5d148fa44ce1e860952ee452724bfd4cd1f475ee /js
parent6ab8a6a17dcf96949ce9cd066990eb6d713b64e2 (diff)
downloadvolse-hubzilla-4a3191cd1909dbfde861a113ba121e94b577a4cd.tar.gz
volse-hubzilla-4a3191cd1909dbfde861a113ba121e94b577a4cd.tar.bz2
volse-hubzilla-4a3191cd1909dbfde861a113ba121e94b577a4cd.zip
localise js ui strings for e2ee
Diffstat (limited to 'js')
-rw-r--r--js/crypto.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/crypto.js b/js/crypto.js
index 9e8a43f55..e9ab6961b 100644
--- a/js/crypto.js
+++ b/js/crypto.js
@@ -35,7 +35,7 @@ function red_encrypt(alg, elem,text) {
// key and hint need to be localised
- var enc_key = prompt('key');
+ var enc_key = prompt(aStr['passphrase']);
// If you don't provide a key you get rot13, which doesn't need a key
// but consequently isn't secure.
@@ -50,7 +50,7 @@ function red_encrypt(alg, elem,text) {
// This is the prompt we're going to use when the receiver tries to open it.
// Maybe "Grandma's maiden name" or "our secret place" or something.
- var enc_hint = prompt('hint');
+ var enc_hint = prompt(aStr['passhint']);
enc_text = CryptoJS.AES.encrypt(text,enc_key);
@@ -85,7 +85,7 @@ function red_decrypt(alg,hint,text,elem) {
enc_text = str_rot13(text);
if(alg == 'aes256') {
- var enc_key = prompt(hint);
+ var enc_key = prompt((hint.length) ? hint : aStr['passphrase']);
enc_text = CryptoJS.AES.decrypt(text,enc_key);
}