summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Engelen <michel@nomorejs.net>2019-07-02 09:43:03 +0200
committerMichel Engelen <michel@nomorejs.net>2019-07-02 09:43:03 +0200
commitfa6347753e36378a8bef9ef825010998c0d9c88b (patch)
tree1d404118075ed0decfd8b6f8ace285841abe9473
parent5ee6e620ab2b84d326a3b4c558cac8352b8b7771 (diff)
downloadgitlab-ce-fa6347753e36378a8bef9ef825010998c0d9c88b.tar.gz
replaced `discussion` with `thread` in comment button
-rw-r--r--app/assets/javascripts/diff_notes/components/comment_resolve_btn.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js b/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js
index f66e07ba31a..7817b41514d 100644
--- a/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js
+++ b/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js
@@ -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');
}
}
},