Commit dac321a7 authored by Tim Zallmann's avatar Tim Zallmann

Merge branch 'ee-js-i18n-reports' into 'master'

Internationalisation of reports directory - EE

See merge request gitlab-org/gitlab-ee!11855
parents 91868dbf a029e438
import { sprintf, n__, s__ } from '~/locale'; import { sprintf, n__, s__, __ } from '~/locale';
import { import {
STATUS_FAILED, STATUS_FAILED,
STATUS_SUCCESS, STATUS_SUCCESS,
...@@ -38,12 +38,12 @@ const textBuilder = results => { ...@@ -38,12 +38,12 @@ const textBuilder = results => {
export const summaryTextBuilder = (name = '', results = {}) => { export const summaryTextBuilder = (name = '', results = {}) => {
const resultsString = textBuilder(results); const resultsString = textBuilder(results);
return `${name} contained ${resultsString}`; return sprintf(__('%{name} contained %{resultsString}'), { name, resultsString });
}; };
export const reportTextBuilder = (name = '', results = {}) => { export const reportTextBuilder = (name = '', results = {}) => {
const resultsString = textBuilder(results); const resultsString = textBuilder(results);
return `${name} found ${resultsString}`; return sprintf(__('%{name} found %{resultsString}'), { name, resultsString });
}; };
export const statusIcon = status => { export const statusIcon = status => {
......
...@@ -223,6 +223,12 @@ msgstr "" ...@@ -223,6 +223,12 @@ msgstr ""
msgid "%{mrText}, this issue will be closed automatically." msgid "%{mrText}, this issue will be closed automatically."
msgstr "" msgstr ""
msgid "%{name} contained %{resultsString}"
msgstr ""
msgid "%{name} found %{resultsString}"
msgstr ""
msgid "%{name}'s avatar" msgid "%{name}'s avatar"
msgstr "" msgstr ""
......
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