Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9d42f70e
Commit
9d42f70e
authored
Nov 12, 2020
by
mfluharty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Namespace strings for i18n
With s__('Reports|...')
parent
35c28032
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
12 deletions
+17
-12
app/assets/javascripts/reports/store/utils.js
app/assets/javascripts/reports/store/utils.js
+8
-4
locale/gitlab.pot
locale/gitlab.pot
+9
-8
No files found.
app/assets/javascripts/reports/store/utils.js
View file @
9d42f70e
...
...
@@ -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
},
...
...
locale/gitlab.pot
View file @
9d42f70e
...
...
@@ -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] ""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment