Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Dardelet <guillaumegorp@gmail.com>2017-08-11 02:29:04 +0300
committerbrantje <brantje@gmail.com>2017-08-13 11:07:48 +0300
commitb5bebaa62863a704bae2fbaf5808c2fd30ef0279 (patch)
tree27030576be81e15b0784bfb6369c317c1861b557
parent9a96cc11a3611f01124b23a64687c64f83bd444c (diff)
Add translation for save button text
-rw-r--r--js/ui/password_picker/password_picker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/password_picker/password_picker.js b/js/ui/password_picker/password_picker.js
index 77155ea..5bd9192 100644
--- a/js/ui/password_picker/password_picker.js
+++ b/js/ui/password_picker/password_picker.js
@@ -71,7 +71,7 @@ $(document).ready(function () {
$('#savepw-save').click(function (e) {
e.preventDefault();
- $(this).text('Saving...');
+ $(this).text(API.i18n.getMessage("saving"));
$(this).attr('disabled', true);
API.runtime.sendMessage(API.runtime.id, {
method: "injectCreateCredential",