From 08d6303b0f5fa43831edaa60f84b4fb9e1a8b14d Mon Sep 17 00:00:00 2001 From: mgandres <mandres@gitlab.com> Date: Tue, 29 Nov 2022 03:35:29 +0800 Subject: [PATCH] Fix translation in CI Variables settings --- app/views/ci/variables/_content.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ci/variables/_content.html.haml b/app/views/ci/variables/_content.html.haml index 97d96a50860e..29f4f6d580d6 100644 --- a/app/views/ci/variables/_content.html.haml +++ b/app/views/ci/variables/_content.html.haml @@ -1,4 +1,4 @@ -= format(_('CiVariables|Variables store information, like passwords and secret keys, that you can use in job scripts. Each %{entity} can define a maximum of %{limit} variables.'), entity: entity, limit: variable_limit).html_safe += format(s_('CiVariables|Variables store information, like passwords and secret keys, that you can use in job scripts. Each %{entity} can define a maximum of %{limit} variables.'), entity: entity, limit: variable_limit).html_safe = link_to s_('Learn more.'), help_page_path('ci/variables/index'), target: '_blank', rel: 'noopener noreferrer' %p = _('Variables can be:') -- GitLab