summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/batch_comments
diff options
context:
space:
mode:
authorBrandon Labuschagne <blabuschagne@gitlab.com>2019-05-07 14:11:36 +0200
committerBrandon Labuschagne <blabuschagne@gitlab.com>2019-05-21 11:36:36 +0200
commitd61c72a08de74e95005fcf875e134b927c7a616b (patch)
treeb4fdc9ed497f6cccf7c49433e00ed01befbfb7d4 /app/assets/javascripts/batch_comments
parent5ae293e33c4d6c8187543778717474a7aaccee1c (diff)
downloadgitlab-ce-d61c72a08de74e95005fcf875e134b927c7a616b.tar.gz
I18N of batch_comments directoryjs-18n-batch-comments
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. This commit only targets Vanilla JS files. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
Diffstat (limited to 'app/assets/javascripts/batch_comments')
-rw-r--r--app/assets/javascripts/batch_comments/mixins/resolved_status.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/batch_comments/mixins/resolved_status.js b/app/assets/javascripts/batch_comments/mixins/resolved_status.js
index 96ee9f62ba4..3bbbaa86b51 100644
--- a/app/assets/javascripts/batch_comments/mixins/resolved_status.js
+++ b/app/assets/javascripts/batch_comments/mixins/resolved_status.js
@@ -1,10 +1,12 @@
+import { sprintf, __ } from '~/locale';
+
export default {
computed: {
resolveButtonTitle() {
- let title = 'Mark comment as resolved';
+ let title = __('Mark comment as resolved');
if (this.resolvedBy) {
- title = `Resolved by ${this.resolvedBy.name}`;
+ title = sprintf(__('Resolved by %{name}'), { name: this.resolvedBy.name });
}
return title;