diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-03-24 15:52:08 -0300 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-03-24 15:52:08 -0300 |
commit | 001efcb7434328d339e50fcfc5193ddb5eb31bd6 (patch) | |
tree | f4663aefa9f71e5b9168780cc978a289953975ef /web-ui/app/js/mail_list_actions/ui | |
parent | c9525311cddd1221e87e99ad04ac660338d54ba5 (diff) |
[#830] Translate email handling tags
with @anikarni
Diffstat (limited to 'web-ui/app/js/mail_list_actions/ui')
-rw-r--r-- | web-ui/app/js/mail_list_actions/ui/compose_trigger.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/web-ui/app/js/mail_list_actions/ui/compose_trigger.js b/web-ui/app/js/mail_list_actions/ui/compose_trigger.js index ec79cb26..f0a96e79 100644 --- a/web-ui/app/js/mail_list_actions/ui/compose_trigger.js +++ b/web-ui/app/js/mail_list_actions/ui/compose_trigger.js @@ -18,10 +18,11 @@ define( [ 'flight/lib/component', 'views/templates', - 'page/events' + 'page/events', + 'views/i18n' ], - function(defineComponent, templates, events) { + function(defineComponent, templates, events, i18n) { 'use strict'; return defineComponent(composeTrigger); @@ -39,11 +40,11 @@ define( }; this.showEmailSuccess = function () { - this.trigger(document, events.ui.userAlerts.displayMessage, {message: 'Your message was sent!', class: 'success'}); + this.trigger(document, events.ui.userAlerts.displayMessage, {message: i18n.t('mail-sent'), class: 'success'}); }; this.showEmailError = function (ev, data) { - this.trigger(document, events.ui.userAlerts.displayMessage, {message: 'Error, message not sent: ' + data.responseJSON.message, class: 'error'}); + this.trigger(document, events.ui.userAlerts.displayMessage, {message: i18n.t('mail-not-sent') + ' ' + data.responseJSON.message, class: 'error'}); }; this.after('initialize', function () { |