DEV: Always use %{count} in pluralized strings

This commit is contained in:
Gerhard Schlager
2019-05-20 23:26:22 +02:00
parent ca2ba22a48
commit 0afcad148a
5 changed files with 157 additions and 134 deletions

View File

@@ -39,13 +39,13 @@ en:
multiple:
help:
at_least_min_options:
one: "Choose at least <strong>1</strong> option"
one: "Choose at least <strong>%{count}</strong> option"
other: "Choose at least <strong>%{count}</strong> options"
up_to_max_options:
one: "Choose up to <strong>1</strong> option"
one: "Choose up to <strong>%{count}</strong> option"
other: "Choose up to <strong>%{count}</strong> options"
x_options:
one: "Choose <strong>1</strong> option"
one: "Choose <strong>%{count}</strong> option"
other: "Choose <strong>%{count}</strong> options"
between_min_and_max_options: "Choose between <strong>%{min}</strong> and <strong>%{max}</strong> options"

View File

@@ -31,10 +31,10 @@ en:
named_poll_must_have_at_least_2_options: "Poll named <strong>%{name}</strong> must have at least 2 options."
default_poll_must_have_less_options:
one: "Poll must have less than 1 option."
one: "Poll must have less than %{count} option."
other: "Poll must have less than %{count} options."
named_poll_must_have_less_options:
one: "Poll named <strong>%{name}</strong> must have less than 1 option."
one: "Poll named <strong>%{name}</strong> must have less than %{count} option."
other: "Poll named <strong>%{name}</strong> must have less than %{count} options."
default_poll_must_have_different_options: "Poll must have different options."