Commit 897e5eed authored by Michel Engelen's avatar Michel Engelen Committed by Michel Engelen

changed string `discussion` to `thread` in reply form

parent 28d4a065
...@@ -20,13 +20,13 @@ export default { ...@@ -20,13 +20,13 @@ export default {
resolveButtonTitle() { resolveButtonTitle() {
if (this.updatedNoteBody) { if (this.updatedNoteBody) {
if (this.discussionResolved) { if (this.discussionResolved) {
return __('Comment & unresolve discussion'); return __('Comment & unresolve thread');
} }
return __('Comment & resolve discussion'); return __('Comment & resolve thread');
} }
return this.discussionResolved ? __('Unresolve discussion') : __('Resolve discussion'); return this.discussionResolved ? __('Unresolve thread') : __('Resolve thread');
}, },
}, },
methods: { methods: {
......
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