summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/send_button.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/mail_view/ui/send_button.js')
-rw-r--r--web-ui/app/js/mail_view/ui/send_button.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/js/mail_view/ui/send_button.js b/web-ui/app/js/mail_view/ui/send_button.js
index c4cf86dc..581a244a 100644
--- a/web-ui/app/js/mail_view/ui/send_button.js
+++ b/web-ui/app/js/mail_view/ui/send_button.js
@@ -89,7 +89,7 @@ define([
}.bind(this)));
this.disableButton();
- this.$node.text(viewHelper.i18n('sending-mail'));
+ this.$node.text(viewHelper.i18n.t('sending-mail'));
this.attr.sendingInProgress = true;
@@ -99,7 +99,7 @@ define([
this.resetButton = function () {
this.attr.sendingInProgress = false;
this.attr.uploading = false;
- this.$node.html(viewHelper.i18n('send-button'));
+ this.$node.html(viewHelper.i18n.t('send-button'));
this.enableButton();
};