Commit 63854246 authored by Michel Engelen's avatar Michel Engelen Committed by Michel Engelen

replaced string `discussion` wit `thread` in noteable-discussion component

parent 791bf1cb
...@@ -174,22 +174,22 @@ export default { ...@@ -174,22 +174,22 @@ export default {
active: isActive, active: isActive,
} = this.discussion; } = this.discussion;
let text = s__('MergeRequests|started a discussion'); let text = s__('MergeRequests|started a thread');
if (isForCommit) { if (isForCommit) {
text = s__( text = s__(
'MergeRequests|started a discussion on commit %{linkStart}%{commitId}%{linkEnd}', 'MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}',
); );
} else if (isDiffDiscussion && commitId) { } else if (isDiffDiscussion && commitId) {
text = isActive text = isActive
? s__('MergeRequests|started a discussion on commit %{linkStart}%{commitId}%{linkEnd}') ? s__('MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}')
: s__( : s__(
'MergeRequests|started a discussion on an outdated change in commit %{linkStart}%{commitId}%{linkEnd}', 'MergeRequests|started a thread on an outdated change in commit %{linkStart}%{commitId}%{linkEnd}',
); );
} else if (isDiffDiscussion) { } else if (isDiffDiscussion) {
text = isActive text = isActive
? s__('MergeRequests|started a discussion on %{linkStart}the diff%{linkEnd}') ? s__('MergeRequests|started a thread on %{linkStart}the diff%{linkEnd}')
: s__( : s__(
'MergeRequests|started a discussion on %{linkStart}an old version of the diff%{linkEnd}', 'MergeRequests|started a thread on %{linkStart}an old version of the diff%{linkEnd}',
); );
} }
......
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