Commit c29e5b6d authored by Frédéric Caplette's avatar Frédéric Caplette

Merge branch 'selhorn-lowercase-runner-install' into 'master'

Lowercased runner because it's referring to agent

See merge request gitlab-org/gitlab!78725
parents c200c4f8 90997815
...@@ -13,7 +13,7 @@ export default { ...@@ -13,7 +13,7 @@ export default {
}, },
modalId: 'runner-instructions-modal', modalId: 'runner-instructions-modal',
i18n: { i18n: {
buttonText: s__('Runners|Show Runner installation instructions'), buttonText: s__('Runners|Show runner installation instructions'),
}, },
data() { data() {
return { return {
......
- link = link_to _("Install GitLab Runner and ensure it's running."), 'https://docs.gitlab.com/runner/install/', target: '_blank', rel: 'noopener noreferrer' - link = link_to _("Install GitLab Runner and ensure it's running."), 'https://docs.gitlab.com/runner/install/', target: '_blank', rel: 'noopener noreferrer'
.gl-mb-3 .gl-mb-3
%h5= _("Set up a %{type} Runner for a project") % { type: type } %h5= _("Set up a %{type} runner for a project") % { type: type }
%ol %ol
%li %li
= link.html_safe = link.html_safe
......
...@@ -30918,10 +30918,10 @@ msgstr "" ...@@ -30918,10 +30918,10 @@ msgstr ""
msgid "Runners|Shared runners are available to every project in a GitLab instance. If you want a runner to build only specific projects, restrict the project in the table below. After you restrict a runner to a project, you cannot change it back to a shared runner." msgid "Runners|Shared runners are available to every project in a GitLab instance. If you want a runner to build only specific projects, restrict the project in the table below. After you restrict a runner to a project, you cannot change it back to a shared runner."
msgstr "" msgstr ""
msgid "Runners|Show Runner installation instructions" msgid "Runners|Show runner installation and registration instructions"
msgstr "" msgstr ""
msgid "Runners|Show runner installation and registration instructions" msgid "Runners|Show runner installation instructions"
msgstr "" msgstr ""
msgid "Runners|Something went wrong while fetching runner data." msgid "Runners|Something went wrong while fetching runner data."
...@@ -32752,7 +32752,7 @@ msgstr "" ...@@ -32752,7 +32752,7 @@ msgstr ""
msgid "Set up Jira Integration" msgid "Set up Jira Integration"
msgstr "" msgstr ""
msgid "Set up a %{type} Runner for a project" msgid "Set up a %{type} runner for a project"
msgstr "" msgstr ""
msgid "Set up a hardware device as a second factor to sign in." msgid "Set up a hardware device as a second factor to sign in."
......
...@@ -22,9 +22,9 @@ describe('RunnerInstructions component', () => { ...@@ -22,9 +22,9 @@ describe('RunnerInstructions component', () => {
wrapper.destroy(); wrapper.destroy();
}); });
it('should show the "Show Runner installation instructions" button', () => { it('should show the "Show runner installation instructions" button', () => {
expect(findModalButton().exists()).toBe(true); expect(findModalButton().exists()).toBe(true);
expect(findModalButton().text()).toBe('Show Runner installation instructions'); expect(findModalButton().text()).toBe('Show runner installation instructions');
}); });
it('should not render the modal once mounted', () => { it('should not render the modal once mounted', () => {
......
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