Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-19 00:09:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-19 00:09:57 +0300
commitbfce95a4c5e9d71ed523f48f3fb901d2b7af60f7 (patch)
tree6bada22ff3863edec03f928f8edcf19c6e7107f1 /app/assets/javascripts/onboarding_issues
parent85f7fa54f404f28b0f351c2be0f7a6e9d74fe65f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/onboarding_issues')
-rw-r--r--app/assets/javascripts/onboarding_issues/index.js18
1 files changed, 13 insertions, 5 deletions
diff --git a/app/assets/javascripts/onboarding_issues/index.js b/app/assets/javascripts/onboarding_issues/index.js
index 5a6f952ffdf..27f2f7f0e9d 100644
--- a/app/assets/javascripts/onboarding_issues/index.js
+++ b/app/assets/javascripts/onboarding_issues/index.js
@@ -1,6 +1,6 @@
import $ from 'jquery';
import { parseBoolean, getCookie, setCookie, removeCookie } from '~/lib/utils/common_utils';
-import { __ } from '~/locale';
+import { __, sprintf } from '~/locale';
import Tracking from '~/tracking';
const COOKIE_NAME = 'onboarding_issues_settings';
@@ -94,8 +94,12 @@ export const showLearnGitLabProjectPopover = () => {
if (!el) return;
const options = {
- content: __(
- 'Go to <strong>Issues</strong> > <strong>Boards</strong> to access your personalized learning issue board.',
+ content: sprintf(
+ __(
+ 'Go to %{strongStart}Issues%{strongEnd} &gt; %{strongStart}Boards%{strongEnd} to access your personalized learning issue board.',
+ ),
+ { strongStart: '<strong>', strongEnd: '</strong>' },
+ false,
),
};
@@ -111,8 +115,12 @@ export const showLearnGitLabIssuesPopover = () => {
if (!el) return;
const options = {
- content: __(
- 'Go to <strong>Issues</strong> > <strong>Boards</strong> to access your personalized learning issue board.',
+ content: sprintf(
+ __(
+ 'Go to %{strongStart}Issues%{strongEnd} &gt; %{strongStart}Boards%{strongEnd} to access your personalized learning issue board.',
+ ),
+ { strongStart: '<strong>', strongEnd: '</strong>' },
+ false,
),
};