Commit 87bcc101 authored by Katrin Leinweber's avatar Katrin Leinweber Committed by Lukas Eipert

Fix a string externalisation for i18n

parent 1bef439e
...@@ -6,6 +6,7 @@ import issueWarning from '../../vue_shared/components/issue/issue_warning.vue'; ...@@ -6,6 +6,7 @@ import issueWarning from '../../vue_shared/components/issue/issue_warning.vue';
import markdownField from '../../vue_shared/components/markdown/field.vue'; import markdownField from '../../vue_shared/components/markdown/field.vue';
import issuableStateMixin from '../mixins/issuable_state'; import issuableStateMixin from '../mixins/issuable_state';
import resolvable from '../mixins/resolvable'; import resolvable from '../mixins/resolvable';
import { __ } from '~/locale';
import noteFormMixin from 'ee/batch_comments/mixins/note_form'; import noteFormMixin from 'ee/batch_comments/mixins/note_form';
export default { export default {
...@@ -34,7 +35,7 @@ export default { ...@@ -34,7 +35,7 @@ export default {
saveButtonTitle: { saveButtonTitle: {
type: String, type: String,
required: false, required: false,
default: 'Save comment', default: __('Save comment'),
}, },
discussion: { discussion: {
type: Object, type: Object,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment