Commit 9d42f70e authored by mfluharty's avatar mfluharty

Namespace strings for i18n

With s__('Reports|...')
parent 35c28032
...@@ -54,16 +54,20 @@ export const recentFailuresTextBuilder = (summary = {}) => { ...@@ -54,16 +54,20 @@ export const recentFailuresTextBuilder = (summary = {}) => {
if (failed < 2) { if (failed < 2) {
return sprintf( return sprintf(
__( s__(
'%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days', 'Reports|%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days',
), ),
{ recentlyFailed, failed }, { recentlyFailed, failed },
); );
} }
return sprintf( return sprintf(
n__( n__(
'%{recentlyFailed} out of %{failed} failed tests has failed more than once in the last 14 days', s__(
'%{recentlyFailed} out of %{failed} failed tests have failed more than once in the last 14 days', 'Reports|%{recentlyFailed} out of %{failed} failed tests has failed more than once in the last 14 days',
),
s__(
'Reports|%{recentlyFailed} out of %{failed} failed tests have failed more than once in the last 14 days',
),
recentlyFailed, recentlyFailed,
), ),
{ recentlyFailed, failed }, { recentlyFailed, failed },
......
...@@ -707,14 +707,6 @@ msgstr "" ...@@ -707,14 +707,6 @@ msgstr ""
msgid "%{primary} (%{secondary})" msgid "%{primary} (%{secondary})"
msgstr "" msgstr ""
msgid "%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days"
msgstr ""
msgid "%{recentlyFailed} out of %{failed} failed tests has failed more than once in the last 14 days"
msgid_plural "%{recentlyFailed} out of %{failed} failed tests have failed more than once in the last 14 days"
msgstr[0] ""
msgstr[1] ""
msgid "%{ref} cannot be added: %{error}" msgid "%{ref} cannot be added: %{error}"
msgstr "" msgstr ""
...@@ -22701,6 +22693,15 @@ msgstr "" ...@@ -22701,6 +22693,15 @@ msgstr ""
msgid "Reports|%{combinedString} and %{resolvedString}" msgid "Reports|%{combinedString} and %{resolvedString}"
msgstr "" msgstr ""
msgid "Reports|%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days"
msgstr ""
msgid "Reports|%{recentlyFailed} out of %{failed} failed tests has failed more than once in the last 14 days"
msgstr ""
msgid "Reports|%{recentlyFailed} out of %{failed} failed tests have failed more than once in the last 14 days"
msgstr ""
msgid "Reports|Accessibility scanning detected %d issue for the source branch only" msgid "Reports|Accessibility scanning detected %d issue for the source branch only"
msgid_plural "Reports|Accessibility scanning detected %d issues for the source branch only" msgid_plural "Reports|Accessibility scanning detected %d issues for the source branch only"
msgstr[0] "" msgstr[0] ""
......
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