replaced `discussion` with `thread` in comment button

This commit is contained in:
Michel Engelen 2019-07-02 09:43:03 +02:00
parent 5ee6e620ab
commit fa6347753e
1 changed files with 4 additions and 4 deletions

View File

@ -32,15 +32,15 @@ const CommentAndResolveBtn = Vue.extend({
buttonText: function() {
if (this.isDiscussionResolved) {
if (this.textareaIsEmpty) {
return __('Unresolve discussion');
return __('Unresolve thread');
} else {
return __('Comment & unresolve discussion');
return __('Comment & unresolve thread');
}
} else {
if (this.textareaIsEmpty) {
return __('Resolve discussion');
return __('Resolve thread');
} else {
return __('Comment & resolve discussion');
return __('Comment & resolve thread');
}
}
},