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 = {}) => {
if (failed < 2) {
return sprintf(
__(
'%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days',
s__(
'Reports|%{recentlyFailed} out of %{failed} failed test has failed more than once in the last 14 days',
),
{ recentlyFailed, failed },
);
}
return sprintf(
n__(
'%{recentlyFailed} out of %{failed} failed tests has failed more than once in the last 14 days',
'%{recentlyFailed} out of %{failed} failed tests have failed more than once in the last 14 days',
s__(
'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, failed },
......
......@@ -707,14 +707,6 @@ msgstr ""
msgid "%{primary} (%{secondary})"
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}"
msgstr ""
......@@ -22701,6 +22693,15 @@ msgstr ""
msgid "Reports|%{combinedString} and %{resolvedString}"
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_plural "Reports|Accessibility scanning detected %d issues for the source branch only"
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