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:
authorKamil Trzciński <ayufan@ayufan.eu>2018-05-07 16:53:38 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2018-05-07 16:53:38 +0300
commit0c57782c8e568f360837c0633d8e98fc2ccec396 (patch)
treee0a61ed0ad689d295d72addac66c324c77eed4d8 /app/views/shared/runners
parent131ca31b23863226e57e0e3dd2ea78f91573f631 (diff)
Add internalization
Diffstat (limited to 'app/views/shared/runners')
-rw-r--r--app/views/shared/runners/_runner_description.html.haml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/shared/runners/_runner_description.html.haml b/app/views/shared/runners/_runner_description.html.haml
index 24d5f7fe761..1d59c2f7078 100644
--- a/app/views/shared/runners/_runner_description.html.haml
+++ b/app/views/shared/runners/_runner_description.html.haml
@@ -1,16 +1,16 @@
.light.prepend-top-default
%p
- A 'Runner' is a process which runs a job.
- You can setup as many Runners as you need.
+ = _("A 'Runner' is a process which runs a job. You can setup as many Runners as you need.")
%br
- Runners can be placed on separate users, servers, and even on your local machine.
+ = _('Runners can be placed on separate users, servers, and even on your local machine.')
- %p Each Runner can be in one of the following states:
+ %p
+ = _('Each Runner can be in one of the following states:')
%div
%ul
%li
%span.label.label-success active
- \- Runner is active and can process any new jobs
+ = _('- Runner is active and can process any new jobs')
%li
%span.label.label-danger paused
- \- Runner is paused and will not receive any new jobs
+ = _('- Runner is paused and will not receive any new jobs')