diff options
author | Jacques Erasmus <jerasmus@gitlab.com> | 2019-04-03 16:15:15 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2019-04-03 16:15:15 +0000 |
commit | 6e61a6a73dadc758bedefb528601494469d8eac9 (patch) | |
tree | 9bab67fc0f3b64b0dd3618af487460f40ebb5987 /app/assets/javascripts/notifications_dropdown.js | |
parent | b39209f34a915aed9690510b64e454c5a307135d (diff) | |
download | gitlab-ce-6e61a6a73dadc758bedefb528601494469d8eac9.tar.gz |
Localize the notifications dropdown string
Localized the notifications dropdown string
Diffstat (limited to 'app/assets/javascripts/notifications_dropdown.js')
-rw-r--r-- | app/assets/javascripts/notifications_dropdown.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/notifications_dropdown.js b/app/assets/javascripts/notifications_dropdown.js index 6aed2492084..08545dcea46 100644 --- a/app/assets/javascripts/notifications_dropdown.js +++ b/app/assets/javascripts/notifications_dropdown.js @@ -1,5 +1,6 @@ import $ from 'jquery'; import Flash from './flash'; +import { __ } from '~/locale'; export default function notificationsDropdown() { $(document).on('click', '.update-notification', function updateNotificationCallback(e) { @@ -27,7 +28,7 @@ export default function notificationsDropdown() { .closest('.js-notification-dropdown') .replaceWith(data.html); } else { - Flash('Failed to save new settings', 'alert'); + Flash(__('Failed to save new settings'), 'alert'); } }); } |