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

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-08-28 12:58:39 +0300
committerAleksander Machniak <alec@alec.pl>2022-08-28 12:58:39 +0300
commita62f046ad112e42c8e33980e1e962c700dce6533 (patch)
tree68ab5aabece34fd539fdd66e35fde9d3c3bd7cb3
parentfd4fb61d8cd31353988c5d8f139c1b1aceb39b80 (diff)
Remove redundant gettext() call
-rw-r--r--plugins/enigma/enigma.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/enigma/enigma.js b/plugins/enigma/enigma.js
index 9a909dbc2..647b22ba5 100644
--- a/plugins/enigma/enigma.js
+++ b/plugins/enigma/enigma.js
@@ -114,7 +114,7 @@ rcube_webmail.prototype.enigma_key_import = function()
win.rcmail.enigma_import();
};
- this.enigma_import_dialog = this.simple_dialog(dialog, this.gettext('enigma.importkeys'), import_func, {
+ this.enigma_import_dialog = this.simple_dialog(dialog, 'enigma.importkeys', import_func, {
button: 'import',
width: 500,
height: 180
@@ -130,7 +130,7 @@ rcube_webmail.prototype.enigma_key_import_search = function()
win.rcmail.enigma_import_search();
};
- this.enigma_import_dialog = this.simple_dialog(dialog, this.gettext('enigma.keyimportsearchlabel'), search_func, {
+ this.enigma_import_dialog = this.simple_dialog(dialog, 'enigma.keyimportsearchlabel', search_func, {
button: 'search',
width: 500,
height: 150