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:
Diffstat (limited to 'app/assets/javascripts/onboarding_issues/index.js')
-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,
),
};