Commit fbd03b90 authored by Samantha Ming's avatar Samantha Ming

Plural form always for paid tiers

parent 0e3758bb
= form.label :assignee_id, issuable.assignees.size > 1 ? _('Assignee').pluralize : _('Assignee'), class: "col-form-label #{has_due_date ? "col-md-2 col-lg-4" : "col-sm-2"}"
= form.label :assignee_id, issuable.allows_multiple_assignees? ? _('Assignees') : _('Assignee'), class: "col-form-label #{has_due_date ? "col-md-2 col-lg-4" : "col-sm-2"}"
.col-sm-10{ class: ("col-md-8" if has_due_date) }
.issuable-form-select-holder.selectbox
- issuable.assignees.each do |assignee|
......
= form.label :reviewer_id, issuable.reviewers.size > 1 ? _('Reviewer').pluralize : _('Reviewer'), class: "col-form-label #{has_due_date ? "col-md-2 col-lg-4" : "col-sm-2"}"
= form.label :reviewer_id, issuable.allows_multiple_reviewers? ? _('Reviewers') : _('Reviewer'), class: "col-form-label #{has_due_date ? "col-md-2 col-lg-4" : "col-sm-2"}"
.col-sm-10{ class: ("col-md-8" if has_due_date) }
.issuable-form-select-holder.selectbox
- issuable.reviewers.each do |reviewer|
......
......@@ -23405,6 +23405,9 @@ msgstr[1] ""
msgid "Reviewer(s)"
msgstr ""
msgid "Reviewers"
msgstr ""
msgid "Reviewing"
msgstr ""
......
......@@ -387,4 +387,4 @@ RSpec.describe "Issues > User edits issue", :js do
end
end
end
end
end
\ No newline at end of file
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