foreman_remote_execution 9.0.1 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +14 -0
- data/.tx/config +3 -1
- data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/template_invocation.js +10 -1
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/job_invocations_controller.rb +30 -1
- data/app/controllers/ui_job_wizard_controller.rb +3 -1
- data/app/helpers/remote_execution_helper.rb +1 -1
- data/app/lib/actions/remote_execution/run_host_job.rb +1 -1
- data/app/lib/actions/remote_execution/run_hosts_job.rb +28 -2
- data/app/models/remote_execution_feature.rb +11 -8
- data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
- data/app/views/job_invocations/_form.html.erb +1 -1
- data/app/views/job_invocations/show.html.erb +1 -1
- data/app/views/job_invocations/welcome.html.erb +1 -1
- data/app/views/templates/script/run_command.erb +1 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20210816100932_rex_setting_category_to_dsl.rb +1 -1
- data/db/migrate/20220426145007_add_unique_feature_label_index.rb +14 -0
- data/lib/foreman_remote_execution/engine.rb +9 -9
- data/lib/foreman_remote_execution/tasks/explain_proxy_selection.rake +12 -3
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/Makefile +6 -3
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +67 -19
- data/locale/en/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en/foreman_remote_execution.po +56 -8
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +58 -10
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +71 -23
- data/locale/foreman_remote_execution.pot +216 -141
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +104 -56
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +72 -24
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +63 -15
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +68 -20
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +63 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +71 -23
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +63 -15
- data/package.json +6 -6
- data/webpack/JobWizard/Footer.js +104 -0
- data/webpack/JobWizard/JobWizard.js +105 -32
- data/webpack/JobWizard/JobWizard.scss +6 -17
- data/webpack/JobWizard/JobWizardConstants.js +1 -1
- data/webpack/JobWizard/JobWizardPageRerun.js +2 -0
- data/webpack/JobWizard/StartsBeforeErrorAlert.js +17 -0
- data/webpack/JobWizard/__tests__/__snapshots__/integration.test.js.snap +8 -0
- data/webpack/JobWizard/__tests__/fixtures.js +13 -1
- data/webpack/JobWizard/__tests__/integration.test.js +15 -0
- data/webpack/JobWizard/__tests__/validation.test.js +36 -0
- data/webpack/JobWizard/autofill.js +1 -0
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +29 -10
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/__snapshots__/AdvancedFields.test.js.snap +8 -0
- data/webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js +5 -0
- data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +28 -14
- data/webpack/JobWizard/steps/HostsAndInputs/__tests__/HostsAndInputs.test.js +41 -4
- data/webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js +16 -10
- data/webpack/JobWizard/steps/HostsAndInputs/index.js +51 -3
- data/webpack/JobWizard/steps/ReviewDetails/ReviewDetails.test.js +117 -0
- data/webpack/JobWizard/steps/ReviewDetails/helpers.js +43 -0
- data/webpack/JobWizard/steps/ReviewDetails/index.js +169 -18
- data/webpack/JobWizard/steps/Schedule/QueryType.js +1 -1
- data/webpack/JobWizard/steps/Schedule/RepeatHour.js +0 -1
- data/webpack/JobWizard/steps/Schedule/RepeatWeek.js +1 -1
- data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +52 -18
- data/webpack/JobWizard/steps/form/DateTimePicker.js +1 -2
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +0 -1
- data/webpack/JobWizard/steps/form/SelectField.js +0 -1
- data/webpack/JobWizard/submit.js +14 -3
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +4 -4
- data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +2 -2
- data/webpack/react_app/components/RecentJobsCard/constants.js +2 -2
- data/webpack/react_app/components/RegistrationExtension/RexPull.js +0 -2
- metadata +23 -6
@@ -5,7 +5,7 @@
|
|
5
5
|
# Translators:
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_remote_execution
|
8
|
+
"Project-Id-Version: foreman_remote_execution 9.0.1\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2016-02-15 13:54+0000\n"
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
@@ -27,6 +27,9 @@ msgstr "%s atrás"
|
|
27
27
|
msgid "%s job has been invoked"
|
28
28
|
msgstr "%s trabalho foi invocado"
|
29
29
|
|
30
|
+
msgid "%s more"
|
31
|
+
msgstr ""
|
32
|
+
|
30
33
|
msgid "%{description} on %{host}"
|
31
34
|
msgstr "%{description} em %{host}"
|
32
35
|
|
@@ -36,9 +39,6 @@ msgstr ""
|
|
36
39
|
msgid "'Starts before' date must in the future"
|
37
40
|
msgstr ""
|
38
41
|
|
39
|
-
msgid ", and %s more"
|
40
|
-
msgstr ", e %s mais"
|
41
|
-
|
42
42
|
msgid "...and %s more"
|
43
43
|
msgstr "...e %s mais"
|
44
44
|
|
@@ -86,6 +86,9 @@ msgstr "Ação com subplanos "
|
|
86
86
|
msgid "Actions"
|
87
87
|
msgstr "Ações"
|
88
88
|
|
89
|
+
msgid "Active Filters:"
|
90
|
+
msgstr ""
|
91
|
+
|
89
92
|
msgid "Add Foreign Input Set"
|
90
93
|
msgstr "Adicionar Conjunto de Entradas Externas"
|
91
94
|
|
@@ -95,6 +98,9 @@ msgstr "Campos avançados"
|
|
95
98
|
msgid "After"
|
96
99
|
msgstr ""
|
97
100
|
|
101
|
+
msgid "After %s occurences"
|
102
|
+
msgstr ""
|
103
|
+
|
98
104
|
msgid "All fields are required."
|
99
105
|
msgstr "Todos os campos são obrigatórios."
|
100
106
|
|
@@ -152,8 +158,8 @@ msgstr "Não é possível especificar tanto bookmark_id quanto search_query"
|
|
152
158
|
msgid "Categories list failed with:"
|
153
159
|
msgstr "A lista de categorias falhou:"
|
154
160
|
|
155
|
-
msgid "Category and
|
156
|
-
msgstr "
|
161
|
+
msgid "Category and template"
|
162
|
+
msgstr ""
|
157
163
|
|
158
164
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
159
165
|
msgstr "Escolha um template de trabalho pré-selecionado no formulário de invocação de trabalho"
|
@@ -164,8 +170,8 @@ msgstr "Dependência circular detectada em conjunto de entradas externas '%{temp
|
|
164
170
|
msgid "Cleanup working directories"
|
165
171
|
msgstr "Limpeza dos diretórios de trabalho"
|
166
172
|
|
167
|
-
msgid "Clear filters"
|
168
|
-
msgstr "
|
173
|
+
msgid "Clear all filters"
|
174
|
+
msgstr ""
|
169
175
|
|
170
176
|
msgid "Clear input"
|
171
177
|
msgstr ""
|
@@ -210,7 +216,7 @@ msgid "Could not use any template used in the job invocation"
|
|
210
216
|
msgstr "Não foi possível usar nenhum modelo utilizado na invocação de trabalho "
|
211
217
|
|
212
218
|
msgid "Create"
|
213
|
-
msgstr ""
|
219
|
+
msgstr "Criar"
|
214
220
|
|
215
221
|
msgid "Create Report"
|
216
222
|
msgstr "Criar relatório"
|
@@ -330,7 +336,7 @@ msgid "Edit job description template"
|
|
330
336
|
msgstr "Editar modelo de descrição de cargo"
|
331
337
|
|
332
338
|
msgid "Effective User"
|
333
|
-
msgstr ""
|
339
|
+
msgstr "Usuário efetivo"
|
334
340
|
|
335
341
|
msgid "Effective User Method"
|
336
342
|
msgstr "Método de usuário efetivo"
|
@@ -374,6 +380,18 @@ msgstr "Erros:"
|
|
374
380
|
msgid "Evaluated at:"
|
375
381
|
msgstr "Avaliado(a) em:"
|
376
382
|
|
383
|
+
msgid "Every day at %s"
|
384
|
+
msgstr ""
|
385
|
+
|
386
|
+
msgid "Every hour at minute %s"
|
387
|
+
msgstr ""
|
388
|
+
|
389
|
+
msgid "Every month on %s at %s"
|
390
|
+
msgstr ""
|
391
|
+
|
392
|
+
msgid "Every week on %s at %s"
|
393
|
+
msgstr ""
|
394
|
+
|
377
395
|
msgid "Execute the job later, at a scheduled time."
|
378
396
|
msgstr ""
|
379
397
|
|
@@ -687,7 +705,7 @@ msgid "Name"
|
|
687
705
|
msgstr "Nome"
|
688
706
|
|
689
707
|
msgid "Never"
|
690
|
-
msgstr ""
|
708
|
+
msgstr "Nunca"
|
691
709
|
|
692
710
|
msgid "New Job Template"
|
693
711
|
msgstr "Novo Modelo de Trabalho "
|
@@ -720,7 +738,7 @@ msgid "Now"
|
|
720
738
|
msgstr ""
|
721
739
|
|
722
740
|
msgid "On"
|
723
|
-
msgstr ""
|
741
|
+
msgstr "Ligado"
|
724
742
|
|
725
743
|
msgid "Only one of feature or job_template_id can be specified"
|
726
744
|
msgstr "Apenas um dos recursos ou job_template_id pode ser especificado"
|
@@ -734,6 +752,9 @@ msgstr "Organização"
|
|
734
752
|
msgid "Override the description format from the template for this invocation only"
|
735
753
|
msgstr "Substituir o formato de descrição do template somente para esta invocação"
|
736
754
|
|
755
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
756
|
+
msgstr ""
|
757
|
+
|
737
758
|
msgid "Override the timeout interval from the template for this invocation only"
|
738
759
|
msgstr "Substituir o intervalo de tempo limite do limite apenas para esta invocação"
|
739
760
|
|
@@ -761,9 +782,24 @@ msgstr "Realizar uma única execução de Puppet"
|
|
761
782
|
msgid "Perform no more executions after this time"
|
762
783
|
msgstr "Não desempenhar execuções depois deste período"
|
763
784
|
|
785
|
+
msgid "Please enter a search query"
|
786
|
+
msgstr ""
|
787
|
+
|
788
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
789
|
+
msgstr ""
|
790
|
+
|
764
791
|
msgid "Please refine your search."
|
765
792
|
msgstr "Por favor, refine sua busca."
|
766
793
|
|
794
|
+
msgid "Please select at least one host"
|
795
|
+
msgstr ""
|
796
|
+
|
797
|
+
msgid "Please select at least one host collection"
|
798
|
+
msgstr ""
|
799
|
+
|
800
|
+
msgid "Please select at least one host group"
|
801
|
+
msgstr ""
|
802
|
+
|
767
803
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
768
804
|
msgstr "Porta a ser usada para comunicação SSH. Porta padrão 22. Você pode substituir por host configurando um parâmetro chamado remote_execution_ssh_port."
|
769
805
|
|
@@ -864,7 +900,7 @@ msgid "Repeat amount can only be a positive number"
|
|
864
900
|
msgstr "A quantia repetida só pode ser um número positivo"
|
865
901
|
|
866
902
|
msgid "Repeats"
|
867
|
-
msgstr ""
|
903
|
+
msgstr "Repetições "
|
868
904
|
|
869
905
|
msgid "Rerun"
|
870
906
|
msgstr "Executar novamente"
|
@@ -885,7 +921,7 @@ msgid "Rerun the job"
|
|
885
921
|
msgstr "Executar novamente o trabalho"
|
886
922
|
|
887
923
|
msgid "Reset to default"
|
888
|
-
msgstr ""
|
924
|
+
msgstr "Reconfigurar como padrão"
|
889
925
|
|
890
926
|
msgid "Resolves to"
|
891
927
|
msgstr "Resolve para"
|
@@ -905,6 +941,12 @@ msgstr "Executar Trabalho"
|
|
905
941
|
msgid "Run Puppet Once"
|
906
942
|
msgstr "Executar Puppet"
|
907
943
|
|
944
|
+
msgid "Run Script"
|
945
|
+
msgstr ""
|
946
|
+
|
947
|
+
msgid "Run a script"
|
948
|
+
msgstr ""
|
949
|
+
|
908
950
|
msgid "Run at most N tasks at a time"
|
909
951
|
msgstr "Executar no máximo N tarefas de cada vez "
|
910
952
|
|
@@ -1053,6 +1095,9 @@ msgid "Started"
|
|
1053
1095
|
msgstr "Iniciado em"
|
1054
1096
|
|
1055
1097
|
msgid "Starts"
|
1098
|
+
msgstr "Inicia"
|
1099
|
+
|
1100
|
+
msgid "Starts Before"
|
1056
1101
|
msgstr ""
|
1057
1102
|
|
1058
1103
|
msgid "Starts at"
|
@@ -1238,8 +1283,8 @@ msgstr "Tipo"
|
|
1238
1283
|
msgid "Type has impact on when is the query evaluated to hosts."
|
1239
1284
|
msgstr "O tipo tem impacto sobre quando a consulta é avaliada para os anfitriões."
|
1240
1285
|
|
1241
|
-
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's
|
1242
|
-
msgstr "
|
1286
|
+
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>"
|
1287
|
+
msgstr ""
|
1243
1288
|
|
1244
1289
|
msgid "Type of execution"
|
1245
1290
|
msgstr ""
|
@@ -1394,8 +1439,8 @@ msgstr "erro durante renderização: %s"
|
|
1394
1439
|
msgid "evaluates just after you submit this form"
|
1395
1440
|
msgstr "avalia logo após o envio deste formulário"
|
1396
1441
|
|
1397
|
-
msgid "evaluates just before the execution is started, so if it's
|
1398
|
-
msgstr "
|
1442
|
+
msgid "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it"
|
1443
|
+
msgstr ""
|
1399
1444
|
|
1400
1445
|
msgid "failed"
|
1401
1446
|
msgstr "falha"
|
@@ -1434,7 +1479,7 @@ msgid "is month (range: 1-12)"
|
|
1434
1479
|
msgstr "é o mês (intervalo: 1-12)"
|
1435
1480
|
|
1436
1481
|
msgid "no"
|
1437
|
-
msgstr ""
|
1482
|
+
msgstr "não"
|
1438
1483
|
|
1439
1484
|
msgid "occurences"
|
1440
1485
|
msgstr ""
|
@@ -1478,5 +1523,8 @@ msgstr "usando "
|
|
1478
1523
|
msgid "using Smart Proxy"
|
1479
1524
|
msgstr "usando o Smart Proxy"
|
1480
1525
|
|
1481
|
-
msgid "
|
1526
|
+
msgid "view host names"
|
1482
1527
|
msgstr ""
|
1528
|
+
|
1529
|
+
msgid "yes"
|
1530
|
+
msgstr "sim"
|
Binary file
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# Yulia <yulia.poyarkova@redhat.com>, 2016
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: foreman_remote_execution
|
9
|
+
"Project-Id-Version: foreman_remote_execution 9.0.1\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
11
|
"PO-Revision-Date: 2016-02-15 13:54+0000\n"
|
12
12
|
"Last-Translator: Yulia <yulia.poyarkova@redhat.com>, 2016\n"
|
@@ -29,6 +29,9 @@ msgstr "%s назад"
|
|
29
29
|
msgid "%s job has been invoked"
|
30
30
|
msgstr ""
|
31
31
|
|
32
|
+
msgid "%s more"
|
33
|
+
msgstr ""
|
34
|
+
|
32
35
|
msgid "%{description} on %{host}"
|
33
36
|
msgstr "%{description} на %{host}"
|
34
37
|
|
@@ -38,9 +41,6 @@ msgstr ""
|
|
38
41
|
msgid "'Starts before' date must in the future"
|
39
42
|
msgstr ""
|
40
43
|
|
41
|
-
msgid ", and %s more"
|
42
|
-
msgstr ""
|
43
|
-
|
44
44
|
msgid "...and %s more"
|
45
45
|
msgstr ""
|
46
46
|
|
@@ -88,6 +88,9 @@ msgstr "Действия с подпланами"
|
|
88
88
|
msgid "Actions"
|
89
89
|
msgstr "Действия"
|
90
90
|
|
91
|
+
msgid "Active Filters:"
|
92
|
+
msgstr ""
|
93
|
+
|
91
94
|
msgid "Add Foreign Input Set"
|
92
95
|
msgstr "Добавить шаблон"
|
93
96
|
|
@@ -97,6 +100,9 @@ msgstr ""
|
|
97
100
|
msgid "After"
|
98
101
|
msgstr ""
|
99
102
|
|
103
|
+
msgid "After %s occurences"
|
104
|
+
msgstr ""
|
105
|
+
|
100
106
|
msgid "All fields are required."
|
101
107
|
msgstr ""
|
102
108
|
|
@@ -154,7 +160,7 @@ msgstr "bookmark_id и search_query не могут использоваться
|
|
154
160
|
msgid "Categories list failed with:"
|
155
161
|
msgstr ""
|
156
162
|
|
157
|
-
msgid "Category and
|
163
|
+
msgid "Category and template"
|
158
164
|
msgstr ""
|
159
165
|
|
160
166
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
@@ -166,7 +172,7 @@ msgstr "При добавлении входных параметров из «%
|
|
166
172
|
msgid "Cleanup working directories"
|
167
173
|
msgstr ""
|
168
174
|
|
169
|
-
msgid "Clear filters"
|
175
|
+
msgid "Clear all filters"
|
170
176
|
msgstr ""
|
171
177
|
|
172
178
|
msgid "Clear input"
|
@@ -212,7 +218,7 @@ msgid "Could not use any template used in the job invocation"
|
|
212
218
|
msgstr "Не удалось применить ни один из шаблонов, настроенных для этого вызова задания"
|
213
219
|
|
214
220
|
msgid "Create"
|
215
|
-
msgstr ""
|
221
|
+
msgstr "Создать"
|
216
222
|
|
217
223
|
msgid "Create Report"
|
218
224
|
msgstr ""
|
@@ -376,6 +382,18 @@ msgstr ""
|
|
376
382
|
msgid "Evaluated at:"
|
377
383
|
msgstr "Обработано:"
|
378
384
|
|
385
|
+
msgid "Every day at %s"
|
386
|
+
msgstr ""
|
387
|
+
|
388
|
+
msgid "Every hour at minute %s"
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Every month on %s at %s"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
msgid "Every week on %s at %s"
|
395
|
+
msgstr ""
|
396
|
+
|
379
397
|
msgid "Execute the job later, at a scheduled time."
|
380
398
|
msgstr ""
|
381
399
|
|
@@ -689,7 +707,7 @@ msgid "Name"
|
|
689
707
|
msgstr "Название"
|
690
708
|
|
691
709
|
msgid "Never"
|
692
|
-
msgstr ""
|
710
|
+
msgstr "Никогда"
|
693
711
|
|
694
712
|
msgid "New Job Template"
|
695
713
|
msgstr "Создать шаблон задания"
|
@@ -722,7 +740,7 @@ msgid "Now"
|
|
722
740
|
msgstr ""
|
723
741
|
|
724
742
|
msgid "On"
|
725
|
-
msgstr ""
|
743
|
+
msgstr "Настроить"
|
726
744
|
|
727
745
|
msgid "Only one of feature or job_template_id can be specified"
|
728
746
|
msgstr ""
|
@@ -736,6 +754,9 @@ msgstr "Организация"
|
|
736
754
|
msgid "Override the description format from the template for this invocation only"
|
737
755
|
msgstr "Переопределить формат описания из шаблона только на время этого вызова"
|
738
756
|
|
757
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
758
|
+
msgstr ""
|
759
|
+
|
739
760
|
msgid "Override the timeout interval from the template for this invocation only"
|
740
761
|
msgstr ""
|
741
762
|
|
@@ -763,9 +784,24 @@ msgstr ""
|
|
763
784
|
msgid "Perform no more executions after this time"
|
764
785
|
msgstr "Остановить после указанного числа повторений"
|
765
786
|
|
787
|
+
msgid "Please enter a search query"
|
788
|
+
msgstr ""
|
789
|
+
|
790
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
791
|
+
msgstr ""
|
792
|
+
|
766
793
|
msgid "Please refine your search."
|
767
794
|
msgstr ""
|
768
795
|
|
796
|
+
msgid "Please select at least one host"
|
797
|
+
msgstr ""
|
798
|
+
|
799
|
+
msgid "Please select at least one host collection"
|
800
|
+
msgstr ""
|
801
|
+
|
802
|
+
msgid "Please select at least one host group"
|
803
|
+
msgstr ""
|
804
|
+
|
769
805
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
770
806
|
msgstr ""
|
771
807
|
|
@@ -866,7 +902,7 @@ msgid "Repeat amount can only be a positive number"
|
|
866
902
|
msgstr ""
|
867
903
|
|
868
904
|
msgid "Repeats"
|
869
|
-
msgstr ""
|
905
|
+
msgstr "Повторяется"
|
870
906
|
|
871
907
|
msgid "Rerun"
|
872
908
|
msgstr "Повторить"
|
@@ -887,7 +923,7 @@ msgid "Rerun the job"
|
|
887
923
|
msgstr "Повторно выполнить задание"
|
888
924
|
|
889
925
|
msgid "Reset to default"
|
890
|
-
msgstr ""
|
926
|
+
msgstr "Восстановить исходные"
|
891
927
|
|
892
928
|
msgid "Resolves to"
|
893
929
|
msgstr "Применимо к "
|
@@ -907,6 +943,12 @@ msgstr "Выполнить задание"
|
|
907
943
|
msgid "Run Puppet Once"
|
908
944
|
msgstr ""
|
909
945
|
|
946
|
+
msgid "Run Script"
|
947
|
+
msgstr ""
|
948
|
+
|
949
|
+
msgid "Run a script"
|
950
|
+
msgstr ""
|
951
|
+
|
910
952
|
msgid "Run at most N tasks at a time"
|
911
953
|
msgstr "Максимальное количество параллельно выполняемых задач"
|
912
954
|
|
@@ -1055,6 +1097,9 @@ msgid "Started"
|
|
1055
1097
|
msgstr ""
|
1056
1098
|
|
1057
1099
|
msgid "Starts"
|
1100
|
+
msgstr "Начало"
|
1101
|
+
|
1102
|
+
msgid "Starts Before"
|
1058
1103
|
msgstr ""
|
1059
1104
|
|
1060
1105
|
msgid "Starts at"
|
@@ -1241,7 +1286,7 @@ msgstr "Тип"
|
|
1241
1286
|
msgid "Type has impact on when is the query evaluated to hosts."
|
1242
1287
|
msgstr ""
|
1243
1288
|
|
1244
|
-
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's
|
1289
|
+
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>"
|
1245
1290
|
msgstr ""
|
1246
1291
|
|
1247
1292
|
msgid "Type of execution"
|
@@ -1397,7 +1442,7 @@ msgstr "ошибка при обработке шаблонов: %s"
|
|
1397
1442
|
msgid "evaluates just after you submit this form"
|
1398
1443
|
msgstr ""
|
1399
1444
|
|
1400
|
-
msgid "evaluates just before the execution is started, so if it's
|
1445
|
+
msgid "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it"
|
1401
1446
|
msgstr ""
|
1402
1447
|
|
1403
1448
|
msgid "failed"
|
@@ -1437,7 +1482,7 @@ msgid "is month (range: 1-12)"
|
|
1437
1482
|
msgstr "— месяц (1–12)"
|
1438
1483
|
|
1439
1484
|
msgid "no"
|
1440
|
-
msgstr ""
|
1485
|
+
msgstr "нет"
|
1441
1486
|
|
1442
1487
|
msgid "occurences"
|
1443
1488
|
msgstr ""
|
@@ -1481,5 +1526,8 @@ msgstr ""
|
|
1481
1526
|
msgid "using Smart Proxy"
|
1482
1527
|
msgstr ""
|
1483
1528
|
|
1484
|
-
msgid "
|
1529
|
+
msgid "view host names"
|
1485
1530
|
msgstr ""
|
1531
|
+
|
1532
|
+
msgid "yes"
|
1533
|
+
msgstr "да"
|
Binary file
|