Commit fa634775 authored by Michel Engelen's avatar Michel Engelen

replaced `discussion` with `thread` in comment button

parent 5ee6e620
...@@ -32,15 +32,15 @@ const CommentAndResolveBtn = Vue.extend({ ...@@ -32,15 +32,15 @@ const CommentAndResolveBtn = Vue.extend({
buttonText: function() { buttonText: function() {
if (this.isDiscussionResolved) { if (this.isDiscussionResolved) {
if (this.textareaIsEmpty) { if (this.textareaIsEmpty) {
return __('Unresolve discussion'); return __('Unresolve thread');
} else { } else {
return __('Comment & unresolve discussion'); return __('Comment & unresolve thread');
} }
} else { } else {
if (this.textareaIsEmpty) { if (this.textareaIsEmpty) {
return __('Resolve discussion'); return __('Resolve thread');
} else { } else {
return __('Comment & resolve discussion'); return __('Comment & resolve thread');
} }
} }
}, },
......
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