foreman_ansible 7.0.4 → 8.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/ansible_playbooks_controller.rb +66 -0
- data/app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb +5 -1
- data/app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb +3 -1
- data/app/graphql/presenters/ansible_role_presenter.rb +4 -0
- data/app/graphql/types/ansible_role.rb +1 -0
- data/app/graphql/types/inherited_ansible_role.rb +4 -0
- data/app/helpers/foreman_ansible/hosts_helper.rb +19 -0
- data/app/jobs/sync_playbooks.rb +25 -0
- data/app/lib/proxy_api/ansible.rb +13 -0
- data/app/services/foreman_ansible/import_playbooks_error_notification.rb +38 -0
- data/app/services/foreman_ansible/import_playbooks_success_notification.rb +33 -0
- data/app/services/foreman_ansible/playbooks_importer.rb +73 -0
- data/app/services/foreman_ansible/proxy_api.rb +3 -4
- data/app/services/foreman_ansible/variables_importer.rb +9 -9
- data/app/views/ansible_roles/index.html.erb +2 -0
- data/app/views/api/v2/ansible_playbooks/sync.json.rabl +5 -0
- data/app/views/api/v2/hostgroups/ansible_roles.json.rabl +9 -1
- data/app/views/api/v2/hosts/ansible_roles.json.rabl +9 -1
- data/app/views/foreman_ansible/job_templates/ansible_roles_-_install_from_git.erb +4 -1
- data/app/views/foreman_ansible/job_templates/ansible_windows_updates.erb +160 -0
- data/config/routes.rb +10 -3
- data/db/migrate/20200421201839_update_ansible_inv_template_name.rb +1 -5
- data/db/seeds.d/90_notification_blueprints.rb +14 -0
- data/lib/foreman_ansible/engine.rb +0 -1
- data/lib/foreman_ansible/register.rb +9 -3
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/action_names.rb +4 -3
- data/locale/ca/foreman_ansible.edit.po +1162 -0
- data/locale/ca/foreman_ansible.po +360 -45
- data/{webpack/components/withPagination.js → locale/ca/foreman_ansible.po.time_stamp} +0 -0
- data/locale/cs_CZ/foreman_ansible.edit.po +1207 -0
- data/locale/cs_CZ/foreman_ansible.po +372 -57
- data/locale/cs_CZ/foreman_ansible.po.time_stamp +0 -0
- data/locale/de/foreman_ansible.edit.po +1148 -0
- data/locale/de/foreman_ansible.po +355 -40
- data/locale/de/foreman_ansible.po.time_stamp +0 -0
- data/locale/en/foreman_ansible.edit.po +1146 -0
- data/locale/en/foreman_ansible.po +355 -40
- data/locale/en/foreman_ansible.po.time_stamp +0 -0
- data/locale/en_GB/foreman_ansible.edit.po +1155 -0
- data/locale/en_GB/foreman_ansible.po +357 -42
- data/locale/en_GB/foreman_ansible.po.time_stamp +0 -0
- data/locale/es/foreman_ansible.edit.po +1148 -0
- data/locale/es/foreman_ansible.po +355 -40
- data/locale/es/foreman_ansible.po.time_stamp +0 -0
- data/locale/foreman_ansible.pot +767 -263
- data/locale/fr/foreman_ansible.edit.po +1148 -0
- data/locale/fr/foreman_ansible.po +355 -40
- data/locale/fr/foreman_ansible.po.time_stamp +0 -0
- data/locale/gl/foreman_ansible.edit.po +1156 -0
- data/locale/gl/foreman_ansible.po +358 -43
- data/locale/gl/foreman_ansible.po.time_stamp +0 -0
- data/locale/it/foreman_ansible.edit.po +1148 -0
- data/locale/it/foreman_ansible.po +355 -40
- data/locale/it/foreman_ansible.po.time_stamp +0 -0
- data/locale/ja/foreman_ansible.edit.po +1148 -0
- data/locale/ja/foreman_ansible.po +355 -40
- data/locale/ja/foreman_ansible.po.time_stamp +0 -0
- data/locale/ko/foreman_ansible.edit.po +1148 -0
- data/locale/ko/foreman_ansible.po +355 -40
- data/locale/ko/foreman_ansible.po.time_stamp +0 -0
- data/locale/nl_NL/foreman_ansible.edit.po +1168 -0
- data/locale/nl_NL/foreman_ansible.po +359 -44
- data/locale/nl_NL/foreman_ansible.po.time_stamp +0 -0
- data/locale/pl/foreman_ansible.edit.po +1180 -0
- data/locale/pl/foreman_ansible.po +363 -48
- data/locale/pl/foreman_ansible.po.time_stamp +0 -0
- data/locale/pt_BR/foreman_ansible.edit.po +1148 -0
- data/locale/pt_BR/foreman_ansible.po +355 -40
- data/locale/pt_BR/foreman_ansible.po.time_stamp +0 -0
- data/locale/ru/foreman_ansible.edit.po +1149 -0
- data/locale/ru/foreman_ansible.po +355 -40
- data/locale/ru/foreman_ansible.po.time_stamp +0 -0
- data/locale/sv_SE/foreman_ansible.edit.po +1180 -0
- data/locale/sv_SE/foreman_ansible.po +363 -48
- data/locale/sv_SE/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_ansible.edit.po +1148 -0
- data/locale/zh_CN/foreman_ansible.po +355 -40
- data/locale/zh_CN/foreman_ansible.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_ansible.edit.po +1148 -0
- data/locale/zh_TW/foreman_ansible.po +355 -40
- data/locale/zh_TW/foreman_ansible.po.time_stamp +0 -0
- data/test/fixtures/playbooks_example_output.json +1 -0
- data/test/fixtures/sample_playbooks.json +10 -0
- data/test/functional/api/v2/ansible_playbooks_controller_test.rb +65 -0
- data/test/functional/hosts_controller_test.rb +2 -2
- data/test/graphql/queries/host_ansible_roles_query_test.rb +61 -0
- data/test/unit/import_playbooks_test.rb +51 -0
- data/test/unit/lib/proxy_api/ansible_test.rb +6 -0
- data/webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js +58 -75
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js +44 -58
- data/webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js.orig +151 -0
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js +43 -56
- data/webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js +1 -1
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesForm.js +26 -24
- data/webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js +3 -2
- data/webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js +39 -43
- data/webpack/components/AnsibleHostDetail/components/RolesTab/__test__/RolesTab.fixtures.js +30 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariables.js +27 -38
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js +2 -1
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesConstants.js +1 -0
- data/webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesSelectors.js +6 -0
- data/webpack/components/AnsibleRolesAndVariables/index.js +7 -1
- data/webpack/components/AnsibleRolesSwitcher/__tests__/AnsibleRolesSwitcher.test.js +0 -2
- data/webpack/components/AnsibleRolesSwitcher/components/AnsibleRole.js +3 -12
- data/webpack/components/AnsibleRolesSwitcher/components/AvailableRolesList.js +2 -2
- data/webpack/components/AnsibleRolesSwitcher/components/OrderedRolesTooltip.js +11 -12
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AnsibleRole.test.js.snap +6 -20
- data/webpack/components/AnsibleRolesSwitcher/components/__snapshots__/AvailableRolesList.test.js.snap +9 -6
- data/webpack/components/withLoading.js +7 -12
- data/webpack/graphql/queries/allAnsibleRoles.gql +3 -0
- data/webpack/graphql/queries/hostAnsibleRoles.gql +3 -0
- data/webpack/helpers/pageParamsHelper.js +3 -3
- metadata +87 -34
- data/app/helpers/foreman_ansible/hosts_helper_extensions.rb +0 -30
- data/webpack/helpers/paginationHelper.js +0 -9
data/locale/foreman_ansible.pot
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_ansible 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2022-05-03 08:41+0200\n"
|
12
|
+
"PO-Revision-Date: 2022-05-03 08:41+0200\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -18,16 +18,12 @@ msgstr ""
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20
20
|
|
21
|
-
#: ../app/controllers/ansible_roles_controller.rb:
|
22
|
-
msgid "
|
21
|
+
#: ../app/controllers/ansible_roles_controller.rb:54
|
22
|
+
msgid "No added or removed roles nor variables."
|
23
23
|
msgstr ""
|
24
24
|
|
25
|
-
#: ../app/controllers/ansible_roles_controller.rb:
|
26
|
-
msgid "No
|
27
|
-
msgstr ""
|
28
|
-
|
29
|
-
#: ../app/controllers/ansible_roles_controller.rb:51
|
30
|
-
msgid "No changes in roles detected on %s."
|
25
|
+
#: ../app/controllers/ansible_roles_controller.rb:55
|
26
|
+
msgid "No added or removed roles nor variables detected on %s."
|
31
27
|
msgstr ""
|
32
28
|
|
33
29
|
#: ../app/controllers/ansible_variables_controller.rb:39
|
@@ -88,47 +84,85 @@ msgstr ""
|
|
88
84
|
msgid "Destroy an override value"
|
89
85
|
msgstr ""
|
90
86
|
|
91
|
-
#: ../app/controllers/api/v2/
|
87
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:17
|
88
|
+
msgid "Sync Ansible playbooks"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:18
|
92
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:52
|
93
|
+
msgid "Smart Proxy to sync from"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:19
|
97
|
+
msgid "Ansible playbooks names to be synced"
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:24
|
101
|
+
msgid "Fetch Ansible playbooks available to be synced"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:25
|
105
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:72
|
106
|
+
msgid "Smart Proxy to fetch from"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
#: ../app/controllers/api/v2/ansible_playbooks_controller.rb:49
|
110
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:92
|
111
|
+
msgid "Smart proxy id is required"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:19
|
92
115
|
msgid "Show role"
|
93
116
|
msgstr ""
|
94
117
|
|
95
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
118
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:23
|
96
119
|
msgid "List Ansible roles"
|
97
120
|
msgstr ""
|
98
121
|
|
99
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
122
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:30
|
100
123
|
msgid "Deletes Ansible role"
|
101
124
|
msgstr ""
|
102
125
|
|
103
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
104
|
-
msgid "Import Ansible roles"
|
126
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:36
|
127
|
+
msgid "DEPRECATED: Import Ansible roles"
|
105
128
|
msgstr ""
|
106
129
|
|
107
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
108
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
130
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:37
|
131
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:64
|
109
132
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:74
|
110
|
-
#: ../app/controllers/api/v2/ansible_variables_controller.rb:
|
133
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:85
|
111
134
|
msgid "Smart Proxy to import from"
|
112
135
|
msgstr ""
|
113
136
|
|
114
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
115
|
-
msgid "Ansible role names to
|
137
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:38
|
138
|
+
msgid "Ansible role names to be imported"
|
116
139
|
msgstr ""
|
117
140
|
|
118
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
119
|
-
|
141
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:40
|
142
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:66
|
143
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:76
|
144
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:87
|
145
|
+
msgid "Use sync instead, to sync roles from Smart Proxy with Ansible feature enabled"
|
120
146
|
msgstr ""
|
121
147
|
|
122
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
123
|
-
msgid "
|
148
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:51
|
149
|
+
msgid "Sync Ansible roles"
|
124
150
|
msgstr ""
|
125
151
|
|
126
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
127
|
-
msgid "
|
152
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:53
|
153
|
+
msgid "Ansible role names to be synced"
|
128
154
|
msgstr ""
|
129
155
|
|
130
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:
|
131
|
-
msgid "
|
156
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:59
|
157
|
+
msgid "No changes detected in specified Ansible Roles and their variables"
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:63
|
161
|
+
msgid "DEPRECATED: Obsolete Ansible roles"
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:71
|
165
|
+
msgid "Fetch Ansible roles available to be synced"
|
132
166
|
msgstr ""
|
133
167
|
|
134
168
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:19
|
@@ -205,14 +239,14 @@ msgstr ""
|
|
205
239
|
|
206
240
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:72
|
207
241
|
msgid ""
|
208
|
-
"Import Ansible variables. This will only import variables for
|
209
|
-
" roles, it will not import any new roles"
|
242
|
+
"DEPRECATED: Import Ansible variables. This will only import variables for alre"
|
243
|
+
"ady existing roles, it will not import any new roles"
|
210
244
|
msgstr ""
|
211
245
|
|
212
|
-
#: ../app/controllers/api/v2/ansible_variables_controller.rb:
|
246
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:83
|
213
247
|
msgid ""
|
214
|
-
"Obsolete Ansible variables. This will only obsolete variables for
|
215
|
-
"
|
248
|
+
"DEPRECATED: Obsolete Ansible variables. This will only obsolete variables for "
|
249
|
+
"already existing roles, it will not delete any old roles"
|
216
250
|
msgstr ""
|
217
251
|
|
218
252
|
#:
|
@@ -236,12 +270,12 @@ msgid "List all Ansible roles for a hostgroup"
|
|
236
270
|
msgstr ""
|
237
271
|
|
238
272
|
#:
|
239
|
-
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:
|
273
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:57
|
240
274
|
msgid "Assigns Ansible roles to a hostgroup"
|
241
275
|
msgstr ""
|
242
276
|
|
243
277
|
#:
|
244
|
-
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:
|
278
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:60
|
245
279
|
msgid "Ansible roles to assign to a hostgroup"
|
246
280
|
msgstr ""
|
247
281
|
|
@@ -267,11 +301,11 @@ msgstr ""
|
|
267
301
|
msgid "List all Ansible roles for a host"
|
268
302
|
msgstr ""
|
269
303
|
|
270
|
-
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:
|
304
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:58
|
271
305
|
msgid "Assigns Ansible roles to a host"
|
272
306
|
msgstr ""
|
273
307
|
|
274
|
-
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:
|
308
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:61
|
275
309
|
msgid "Ansible roles to assign to a host"
|
276
310
|
msgstr ""
|
277
311
|
|
@@ -288,140 +322,111 @@ msgstr ""
|
|
288
322
|
msgid "Could not run Ansible roles for %{host}"
|
289
323
|
msgstr ""
|
290
324
|
|
291
|
-
#: ../app/
|
292
|
-
msgid "
|
293
|
-
msgstr ""
|
294
|
-
|
295
|
-
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:23
|
296
|
-
msgid "Ansible Role"
|
297
|
-
msgstr ""
|
298
|
-
|
299
|
-
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:29
|
300
|
-
msgid "Import"
|
301
|
-
msgstr ""
|
302
|
-
|
303
|
-
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:35
|
304
|
-
msgid "%s ago"
|
305
|
-
msgstr ""
|
306
|
-
|
307
|
-
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
|
308
|
-
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:3
|
309
|
-
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
|
310
|
-
msgid "Run all Ansible roles"
|
325
|
+
#: ../app/graphql/mutations/ansible_variable_overrides/delete.rb:17
|
326
|
+
msgid "Host not found by id: %s"
|
311
327
|
msgstr ""
|
312
328
|
|
313
|
-
#: ../app/
|
314
|
-
msgid "
|
329
|
+
#: ../app/graphql/mutations/ansible_variable_overrides/delete.rb:18
|
330
|
+
msgid "Ansible Variable not found by id: %s"
|
315
331
|
msgstr ""
|
316
332
|
|
317
|
-
#: ../app/
|
318
|
-
msgid "
|
333
|
+
#: ../app/helpers/foreman_ansible/ansible_reports_helper.rb:57
|
334
|
+
msgid "No additional data"
|
319
335
|
msgstr ""
|
320
336
|
|
321
|
-
#: ../app/
|
322
|
-
msgid "
|
337
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:5
|
338
|
+
msgid "Add"
|
323
339
|
msgstr ""
|
324
340
|
|
325
|
-
#: ../app/
|
326
|
-
msgid ""
|
327
|
-
"Use this to supply a path to an SSH Private Key that Ansible will use in lieu "
|
328
|
-
"of a password Override with \"ansible_ssh_private_key_file\" host parameter"
|
341
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:5
|
342
|
+
msgid "Remove"
|
329
343
|
msgstr ""
|
330
344
|
|
331
|
-
#: ../app/
|
332
|
-
msgid "
|
345
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:5
|
346
|
+
msgid "Update"
|
333
347
|
msgstr ""
|
334
348
|
|
335
|
-
#: ../app/
|
336
|
-
msgid ""
|
337
|
-
"Use this connection type by default when running Ansible playbooks. You can ov"
|
338
|
-
"erride this on hosts by adding a parameter \"ansible_connection\""
|
349
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:6
|
350
|
+
msgid "Import Role"
|
339
351
|
msgstr ""
|
340
352
|
|
341
|
-
#: ../app/
|
342
|
-
msgid "
|
353
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:6
|
354
|
+
msgid "Remove Role"
|
343
355
|
msgstr ""
|
344
356
|
|
345
|
-
#: ../app/
|
346
|
-
msgid ""
|
347
|
-
"Enable/disable WinRM server certificate validation when running Ansible playbo"
|
348
|
-
"oks. You can override this on hosts by adding a parameter \"ansible_winrm_serve"
|
349
|
-
"r_cert_validation\""
|
357
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_data_preparations.rb:6
|
358
|
+
msgid "Update Role Variables"
|
350
359
|
msgstr ""
|
351
360
|
|
352
|
-
#: ../app/
|
353
|
-
msgid "
|
361
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:8
|
362
|
+
msgid "Import from %s"
|
354
363
|
msgstr ""
|
355
364
|
|
356
|
-
#: ../app/
|
357
|
-
msgid ""
|
358
|
-
"Foreman will add this level of verbosity for additional debugging output when "
|
359
|
-
"running Ansible playbooks."
|
365
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:23
|
366
|
+
msgid "Ansible Role"
|
360
367
|
msgstr ""
|
361
368
|
|
362
|
-
#: ../app/
|
363
|
-
msgid "
|
369
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:29
|
370
|
+
msgid "Import"
|
364
371
|
msgstr ""
|
365
372
|
|
366
|
-
#: ../app/
|
367
|
-
msgid "
|
373
|
+
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:35
|
374
|
+
msgid "%s ago"
|
368
375
|
msgstr ""
|
369
376
|
|
370
|
-
#: ../app/
|
371
|
-
|
377
|
+
#: ../app/helpers/foreman_ansible/hosts_helper.rb:9
|
378
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:3
|
379
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
|
380
|
+
msgid "Run all Ansible roles"
|
372
381
|
msgstr ""
|
373
382
|
|
374
|
-
#: ../app/
|
375
|
-
msgid "
|
383
|
+
#: ../app/jobs/sync_roles_and_variables.rb:18
|
384
|
+
msgid "Import roles And Variables"
|
376
385
|
msgstr ""
|
377
386
|
|
378
|
-
#: ../app/
|
379
|
-
msgid "
|
387
|
+
#: ../app/lib/actions/foreman_ansible/helpers/play_roles_description.rb:13
|
388
|
+
msgid "Foreman"
|
380
389
|
msgstr ""
|
381
390
|
|
382
|
-
#: ../app/
|
383
|
-
msgid "
|
391
|
+
#: ../app/lib/proxy_api/ansible.rb:27
|
392
|
+
msgid "Unable to get roles from Ansible"
|
384
393
|
msgstr ""
|
385
394
|
|
386
|
-
#: ../app/
|
387
|
-
msgid ""
|
388
|
-
"Timeout (in seconds) to set when Foreman will trigger a play Ansible roles tas"
|
389
|
-
"k after a host is fully provisioned. Set this to the maximum time you expect a"
|
390
|
-
" host to take until it is ready after a reboot."
|
395
|
+
#: ../app/lib/proxy_api/ansible.rb:34 ../app/lib/proxy_api/ansible.rb:41
|
396
|
+
msgid "Unable to get roles/variables from Ansible"
|
391
397
|
msgstr ""
|
392
398
|
|
393
|
-
#: ../app/
|
394
|
-
msgid "
|
399
|
+
#: ../app/lib/proxy_api/ansible.rb:47
|
400
|
+
msgid "Unable to get playbook's names from Ansible"
|
395
401
|
msgstr ""
|
396
402
|
|
397
|
-
#: ../app/
|
398
|
-
msgid "
|
403
|
+
#: ../app/lib/proxy_api/ansible.rb:54
|
404
|
+
msgid "Unable to get playbooks from Ansible"
|
399
405
|
msgstr ""
|
400
406
|
|
401
|
-
#: ../app/models/
|
402
|
-
msgid "
|
407
|
+
#: ../app/models/foreman_ansible/ansible_provider.rb:68
|
408
|
+
msgid "Tags"
|
403
409
|
msgstr ""
|
404
410
|
|
405
|
-
#: ../app/models/
|
406
|
-
msgid ""
|
407
|
-
"Disable host configuration status turning to out of sync for %{cfgmgmt} after "
|
408
|
-
"report does not arrive within configured interval"
|
411
|
+
#: ../app/models/foreman_ansible/ansible_provider.rb:75
|
412
|
+
msgid "Include/Exclude Tags"
|
409
413
|
msgstr ""
|
410
414
|
|
411
|
-
#: ../app/models/
|
412
|
-
msgid "
|
415
|
+
#: ../app/models/foreman_ansible/ansible_provider.rb:87
|
416
|
+
msgid "Ansible provider specific inputs"
|
413
417
|
msgstr ""
|
414
418
|
|
415
|
-
#: ../app/models/
|
416
|
-
msgid "
|
419
|
+
#: ../app/models/foreman_ansible/ansible_provider.rb:92
|
420
|
+
msgid "A comma separated list of tags to use for Ansible run"
|
417
421
|
msgstr ""
|
418
422
|
|
419
|
-
#: ../app/models/
|
420
|
-
msgid "
|
423
|
+
#: ../app/models/foreman_ansible/ansible_provider.rb:97
|
424
|
+
msgid "Include\\Exclude tags for Ansible run"
|
421
425
|
msgstr ""
|
422
426
|
|
423
|
-
#: ../app/
|
424
|
-
|
427
|
+
#: ../app/services/foreman_ansible/import_playbooks_error_notification.rb:35
|
428
|
+
#: ../app/services/foreman_ansible/import_playbooks_success_notification.rb:30
|
429
|
+
msgid "Task Details"
|
425
430
|
msgstr ""
|
426
431
|
|
427
432
|
#: ../app/services/foreman_ansible/insights_notification_builder.rb:49
|
@@ -441,88 +446,6 @@ msgstr ""
|
|
441
446
|
msgid "Changed Ansible roles"
|
442
447
|
msgstr ""
|
443
448
|
|
444
|
-
#: ../app/views/ansible_roles/import.html.erb:3
|
445
|
-
#: ../app/views/ansible_variables/import.html.erb:3
|
446
|
-
msgid "Select the changes you want to realize in Foreman"
|
447
|
-
msgstr ""
|
448
|
-
|
449
|
-
#: ../app/views/ansible_roles/import.html.erb:5
|
450
|
-
#: ../app/views/ansible_variables/import.html.erb:5
|
451
|
-
msgid "Toggle"
|
452
|
-
msgstr ""
|
453
|
-
|
454
|
-
#: ../app/views/ansible_roles/import.html.erb:6
|
455
|
-
#: ../app/views/ansible_variables/import.html.erb:6
|
456
|
-
msgid "New"
|
457
|
-
msgstr ""
|
458
|
-
|
459
|
-
#: ../app/views/ansible_roles/import.html.erb:8
|
460
|
-
#: ../app/views/ansible_variables/import.html.erb:8
|
461
|
-
msgid "Check/Uncheck new"
|
462
|
-
msgstr ""
|
463
|
-
|
464
|
-
#: ../app/views/ansible_roles/import.html.erb:9
|
465
|
-
#: ../app/views/ansible_variables/import.html.erb:9
|
466
|
-
msgid "Obsolete"
|
467
|
-
msgstr ""
|
468
|
-
|
469
|
-
#: ../app/views/ansible_roles/import.html.erb:11
|
470
|
-
#: ../app/views/ansible_variables/import.html.erb:11
|
471
|
-
msgid "Check/Uncheck obsolete"
|
472
|
-
msgstr ""
|
473
|
-
|
474
|
-
#: ../app/views/ansible_roles/import.html.erb:19
|
475
|
-
#: ../app/views/ansible_variables/import.html.erb:22
|
476
|
-
msgid "Check/Uncheck all"
|
477
|
-
msgstr ""
|
478
|
-
|
479
|
-
#: ../app/views/ansible_roles/import.html.erb:21
|
480
|
-
#: ../app/views/ansible_variables/import.html.erb:24
|
481
|
-
msgid "Name"
|
482
|
-
msgstr ""
|
483
|
-
|
484
|
-
#: ../app/views/ansible_roles/import.html.erb:22
|
485
|
-
#: ../app/views/ansible_variables/import.html.erb:26
|
486
|
-
msgid "Hosts count"
|
487
|
-
msgstr ""
|
488
|
-
|
489
|
-
#: ../app/views/ansible_roles/import.html.erb:23
|
490
|
-
#: ../app/views/ansible_variables/import.html.erb:27
|
491
|
-
msgid "Hostgroups count"
|
492
|
-
msgstr ""
|
493
|
-
|
494
|
-
#: ../app/views/ansible_roles/import.html.erb:24
|
495
|
-
#: ../app/views/ansible_variables/import.html.erb:28
|
496
|
-
msgid "Operation"
|
497
|
-
msgstr ""
|
498
|
-
|
499
|
-
#: ../app/views/ansible_roles/import.html.erb:35
|
500
|
-
#: ../app/views/ansible_variables/import.html.erb:39
|
501
|
-
msgid "Check/Uncheck all %s changes"
|
502
|
-
msgstr ""
|
503
|
-
|
504
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
505
|
-
#: ../app/views/ansible_variables/import.html.erb:45
|
506
|
-
msgid "Add"
|
507
|
-
msgstr ""
|
508
|
-
|
509
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
510
|
-
#: ../app/views/ansible_variables/import.html.erb:45
|
511
|
-
msgid "Remove"
|
512
|
-
msgstr ""
|
513
|
-
|
514
|
-
#: ../app/views/ansible_roles/import.html.erb:48
|
515
|
-
#: ../app/views/ansible_variables/import.html.erb:53
|
516
|
-
msgid "Cancel"
|
517
|
-
msgstr ""
|
518
|
-
|
519
|
-
#: ../app/views/ansible_roles/import.html.erb:49
|
520
|
-
#: ../app/views/ansible_variables/import.html.erb:12
|
521
|
-
#: ../app/views/ansible_variables/import.html.erb:45
|
522
|
-
#: ../app/views/ansible_variables/import.html.erb:54
|
523
|
-
msgid "Update"
|
524
|
-
msgstr ""
|
525
|
-
|
526
449
|
#: ../app/views/ansible_roles/index.html.erb:1
|
527
450
|
#: ../app/views/ansible_roles/welcome.html.erb:1
|
528
451
|
#: ../app/views/ansible_roles/welcome.html.erb:6
|
@@ -543,27 +466,31 @@ msgid "Hosts"
|
|
543
466
|
msgstr ""
|
544
467
|
|
545
468
|
#: ../app/views/ansible_roles/index.html.erb:12
|
546
|
-
|
469
|
+
#: ../app/views/ansible_roles/index.html.erb:29
|
470
|
+
#: ../lib/foreman_ansible/register.rb:220
|
471
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js:18
|
472
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js:30
|
473
|
+
#: ../webpack/components/AnsibleHostDetail/constants.js:6
|
474
|
+
msgid "Variables"
|
547
475
|
msgstr ""
|
548
476
|
|
549
477
|
#: ../app/views/ansible_roles/index.html.erb:13
|
550
|
-
|
551
|
-
msgid "Actions"
|
478
|
+
msgid "Imported at"
|
552
479
|
msgstr ""
|
553
480
|
|
554
|
-
#: ../app/views/ansible_roles/index.html.erb:
|
555
|
-
#: ../
|
556
|
-
msgid "
|
481
|
+
#: ../app/views/ansible_roles/index.html.erb:14
|
482
|
+
#: ../app/views/ansible_variables/index.html.erb:15
|
483
|
+
msgid "Actions"
|
557
484
|
msgstr ""
|
558
485
|
|
559
|
-
#: ../app/views/ansible_roles/index.html.erb:
|
560
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
486
|
+
#: ../app/views/ansible_roles/index.html.erb:35
|
487
|
+
#: ../app/views/ansible_variables/index.html.erb:40
|
561
488
|
msgid "Delete %s?"
|
562
489
|
msgstr ""
|
563
490
|
|
564
491
|
#: ../app/views/ansible_roles/welcome.html.erb:7
|
565
492
|
msgid ""
|
566
|
-
"No
|
493
|
+
"No Ansible Roles were found in Foreman. If you want to assign roles to your ho"
|
567
494
|
"sts,\n"
|
568
495
|
" you have to import them first."
|
569
496
|
msgstr ""
|
@@ -676,39 +603,28 @@ msgstr ""
|
|
676
603
|
msgid "Edit Ansible Variable"
|
677
604
|
msgstr ""
|
678
605
|
|
679
|
-
#: ../app/views/ansible_variables/
|
680
|
-
msgid "Changed Ansible variables"
|
681
|
-
msgstr ""
|
682
|
-
|
683
|
-
#: ../app/views/ansible_variables/import.html.erb:14
|
684
|
-
msgid "Check/Uncheck update"
|
685
|
-
msgstr ""
|
686
|
-
|
687
|
-
#: ../app/views/ansible_variables/import.html.erb:25
|
688
|
-
msgid "Ansible role"
|
689
|
-
msgstr ""
|
690
|
-
|
691
|
-
#: ../app/views/ansible_variables/index.html.erb:5
|
606
|
+
#: ../app/views/ansible_variables/index.html.erb:4
|
692
607
|
msgid "New Ansible Variable"
|
693
608
|
msgstr ""
|
694
609
|
|
695
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
610
|
+
#: ../app/views/ansible_variables/index.html.erb:11
|
696
611
|
msgid "Variable|Name"
|
697
612
|
msgstr ""
|
698
613
|
|
699
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
614
|
+
#: ../app/views/ansible_variables/index.html.erb:12
|
700
615
|
msgid "Variable|Role"
|
701
616
|
msgstr ""
|
702
617
|
|
703
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
618
|
+
#: ../app/views/ansible_variables/index.html.erb:13
|
619
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:61
|
704
620
|
msgid "Type"
|
705
621
|
msgstr ""
|
706
622
|
|
707
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
623
|
+
#: ../app/views/ansible_variables/index.html.erb:14
|
708
624
|
msgid "Imported?"
|
709
625
|
msgstr ""
|
710
626
|
|
711
|
-
#: ../app/views/ansible_variables/index.html.erb:
|
627
|
+
#: ../app/views/ansible_variables/index.html.erb:22
|
712
628
|
msgid "Overriden"
|
713
629
|
msgstr ""
|
714
630
|
|
@@ -723,36 +639,46 @@ msgid "Run all Ansible roles on hosts belonging to this host group"
|
|
723
639
|
msgstr ""
|
724
640
|
|
725
641
|
#:
|
726
|
-
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:
|
642
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:8
|
643
|
+
msgid "Configure Ansible Job"
|
644
|
+
msgstr ""
|
645
|
+
|
646
|
+
#:
|
647
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:11
|
727
648
|
msgid "Nest"
|
728
649
|
msgstr ""
|
729
650
|
|
730
651
|
#:
|
731
|
-
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:
|
652
|
+
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:12
|
732
653
|
msgid "Clone"
|
733
654
|
msgstr ""
|
734
655
|
|
735
|
-
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:
|
736
|
-
msgid "
|
656
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:5
|
657
|
+
msgid "Ansible check mode"
|
658
|
+
msgstr ""
|
659
|
+
|
660
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:6
|
661
|
+
msgid "Notice that ansible roles run in check mode."
|
737
662
|
msgstr ""
|
738
663
|
|
739
|
-
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:
|
740
|
-
msgid "
|
664
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:12
|
665
|
+
msgid "Level"
|
741
666
|
msgstr ""
|
742
667
|
|
743
|
-
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:
|
744
|
-
msgid "
|
668
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:13
|
669
|
+
msgid "Task"
|
745
670
|
msgstr ""
|
746
671
|
|
747
|
-
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:
|
672
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:14
|
748
673
|
msgid "Message"
|
749
674
|
msgstr ""
|
750
675
|
|
751
|
-
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:
|
676
|
+
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:39
|
752
677
|
msgid "Nothing to show"
|
753
678
|
msgstr ""
|
754
679
|
|
755
680
|
#: ../db/seeds.d/90_notification_blueprints.rb:5
|
681
|
+
#: ../webpack/components/AnsibleHostDetail/constants.js:8
|
756
682
|
msgid "Jobs"
|
757
683
|
msgstr ""
|
758
684
|
|
@@ -760,52 +686,630 @@ msgstr ""
|
|
760
686
|
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
761
687
|
msgstr ""
|
762
688
|
|
763
|
-
#: ../
|
689
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:18
|
690
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:25
|
691
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:30
|
692
|
+
#: ../lib/foreman_ansible/register.rb:216
|
693
|
+
#: ../webpack/components/AnsibleHostDetail/constants.js:5
|
764
694
|
msgid "Roles"
|
765
695
|
msgstr ""
|
766
696
|
|
767
|
-
#: ../
|
768
|
-
msgid "
|
697
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:20
|
698
|
+
msgid "Import roles and variables has finished successfully"
|
769
699
|
msgstr ""
|
770
700
|
|
771
|
-
#: ../
|
772
|
-
|
701
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:36
|
702
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:43
|
703
|
+
msgid "Playbooks"
|
773
704
|
msgstr ""
|
774
705
|
|
775
|
-
#: ../
|
776
|
-
msgid "
|
706
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:38
|
707
|
+
msgid "Import playbooks has finished successfully"
|
777
708
|
msgstr ""
|
778
709
|
|
779
|
-
#: ../lib/foreman_ansible/
|
780
|
-
msgid "
|
710
|
+
#: ../lib/foreman_ansible/register.rb:7 ../lib/foreman_ansible/register.rb:214
|
711
|
+
msgid "Ansible"
|
781
712
|
msgstr ""
|
782
713
|
|
783
|
-
#: ../lib/foreman_ansible/
|
784
|
-
msgid "
|
714
|
+
#: ../lib/foreman_ansible/register.rb:10
|
715
|
+
msgid ""
|
716
|
+
"Use this to supply a path to an SSH Private Key that Ansible will use in lieu "
|
717
|
+
"of a password Override with \"ansible_ssh_private_key_file\" host parameter"
|
785
718
|
msgstr ""
|
786
719
|
|
787
|
-
#: ../lib/foreman_ansible/
|
788
|
-
msgid "
|
720
|
+
#: ../lib/foreman_ansible/register.rb:15
|
721
|
+
msgid "Private Key Path"
|
722
|
+
msgstr ""
|
723
|
+
|
724
|
+
#: ../lib/foreman_ansible/register.rb:18
|
725
|
+
msgid ""
|
726
|
+
"Use this connection type by default when running Ansible playbooks. You can ov"
|
727
|
+
"erride this on hosts by adding a parameter \"ansible_connection\""
|
789
728
|
msgstr ""
|
790
729
|
|
791
|
-
#: ../lib/
|
792
|
-
msgid "
|
730
|
+
#: ../lib/foreman_ansible/register.rb:22
|
731
|
+
msgid "Connection type"
|
793
732
|
msgstr ""
|
794
733
|
|
795
|
-
#:
|
796
|
-
msgid "
|
734
|
+
#: ../lib/foreman_ansible/register.rb:25
|
735
|
+
msgid ""
|
736
|
+
"Enable/disable WinRM server certificate validation when running Ansible playbo"
|
737
|
+
"oks. You can override this on hosts by adding a parameter \"ansible_winrm_serve"
|
738
|
+
"r_cert_validation\""
|
797
739
|
msgstr ""
|
798
740
|
|
799
|
-
#:
|
800
|
-
msgid "
|
741
|
+
#: ../lib/foreman_ansible/register.rb:30
|
742
|
+
msgid "WinRM cert Validation"
|
801
743
|
msgstr ""
|
802
744
|
|
803
|
-
#:
|
804
|
-
msgid "
|
745
|
+
#: ../lib/foreman_ansible/register.rb:33
|
746
|
+
msgid ""
|
747
|
+
"Foreman will add this level of verbosity for additional debugging output when "
|
748
|
+
"running Ansible playbooks."
|
805
749
|
msgstr ""
|
806
750
|
|
807
|
-
#:
|
808
|
-
msgid "
|
751
|
+
#: ../lib/foreman_ansible/register.rb:36
|
752
|
+
msgid "Default verbosity level"
|
753
|
+
msgstr ""
|
754
|
+
|
755
|
+
#: ../lib/foreman_ansible/register.rb:39
|
756
|
+
msgid "Disabled"
|
757
|
+
msgstr ""
|
758
|
+
|
759
|
+
#: ../lib/foreman_ansible/register.rb:40
|
760
|
+
msgid "Level 1 (-v)"
|
761
|
+
msgstr ""
|
762
|
+
|
763
|
+
#: ../lib/foreman_ansible/register.rb:41
|
764
|
+
msgid "Level 2 (-vv)"
|
765
|
+
msgstr ""
|
766
|
+
|
767
|
+
#: ../lib/foreman_ansible/register.rb:42
|
768
|
+
msgid "Level 3 (-vvv)"
|
769
|
+
msgstr ""
|
770
|
+
|
771
|
+
#: ../lib/foreman_ansible/register.rb:43
|
772
|
+
msgid "Level 4 (-vvvv)"
|
773
|
+
msgstr ""
|
774
|
+
|
775
|
+
#: ../lib/foreman_ansible/register.rb:47
|
776
|
+
msgid ""
|
777
|
+
"Timeout (in seconds) to set when Foreman will trigger a play Ansible roles tas"
|
778
|
+
"k after a host is fully provisioned. Set this to the maximum time you expect a"
|
779
|
+
" host to take until it is ready after a reboot."
|
780
|
+
msgstr ""
|
781
|
+
|
782
|
+
#: ../lib/foreman_ansible/register.rb:52
|
783
|
+
msgid "Post-provision timeout"
|
784
|
+
msgstr ""
|
785
|
+
|
786
|
+
#: ../lib/foreman_ansible/register.rb:55
|
787
|
+
msgid "Timeout (in minutes) when hosts should have reported."
|
788
|
+
msgstr ""
|
789
|
+
|
790
|
+
#: ../lib/foreman_ansible/register.rb:57
|
791
|
+
msgid "Ansible report timeout"
|
792
|
+
msgstr ""
|
793
|
+
|
794
|
+
#: ../lib/foreman_ansible/register.rb:60
|
795
|
+
msgid ""
|
796
|
+
"Disable host configuration status turning to out of sync for %{cfgmgmt} after "
|
797
|
+
"report does not arrive within configured interval"
|
798
|
+
msgstr ""
|
799
|
+
|
800
|
+
#: ../lib/foreman_ansible/register.rb:64
|
801
|
+
msgid "%{cfgmgmt} out of sync disabled"
|
802
|
+
msgstr ""
|
803
|
+
|
804
|
+
#: ../lib/foreman_ansible/register.rb:67
|
805
|
+
msgid "Foreman will use this template to schedule the report with Ansible inventory"
|
806
|
+
msgstr ""
|
807
|
+
|
808
|
+
#: ../lib/foreman_ansible/register.rb:70
|
809
|
+
msgid "Default Ansible inventory report template"
|
810
|
+
msgstr ""
|
811
|
+
|
812
|
+
#: ../lib/foreman_ansible/register.rb:73
|
813
|
+
msgid ""
|
814
|
+
"Those roles will be excluded when importing roles from smart proxy, The expect"
|
815
|
+
"ed input is comma separated values and you can use * wildcard metacharactersFo"
|
816
|
+
"r example: foo*, *b*,*bar"
|
817
|
+
msgstr ""
|
818
|
+
|
819
|
+
#: ../lib/foreman_ansible/register.rb:77
|
820
|
+
msgid "Ansible roles to ignore"
|
821
|
+
msgstr ""
|
822
|
+
|
823
|
+
#: ../lib/foreman_ansible/register.rb:80
|
824
|
+
msgid ""
|
825
|
+
"Number of tasks which should be sent to the smart proxy in one request, if for"
|
826
|
+
"eman_tasks_proxy_batch_trigger is enabled. If set, overrides foreman_tasks_pro"
|
827
|
+
"xy_batch_size setting for Ansible jobs."
|
828
|
+
msgstr ""
|
829
|
+
|
830
|
+
#: ../lib/foreman_ansible/register.rb:84
|
831
|
+
msgid "Proxy tasks batch size for Ansible"
|
832
|
+
msgstr ""
|
833
|
+
|
834
|
+
#: ../lib/foreman_ansible/remote_execution.rb:20
|
835
|
+
msgid "Run Ansible roles"
|
836
|
+
msgstr ""
|
837
|
+
|
838
|
+
#: ../lib/foreman_ansible/remote_execution.rb:21
|
839
|
+
msgid "Runs an Ansible playbook which contains all the roles defined for a host"
|
840
|
+
msgstr ""
|
841
|
+
|
842
|
+
#: ../lib/foreman_ansible/remote_execution.rb:27
|
843
|
+
msgid "Ansible: Run Insights maintenance plan"
|
844
|
+
msgstr ""
|
845
|
+
|
846
|
+
#: ../lib/foreman_ansible/remote_execution.rb:28
|
847
|
+
msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
848
|
+
msgstr ""
|
849
|
+
|
850
|
+
#: ../lib/foreman_ansible/remote_execution.rb:35
|
851
|
+
msgid "Run playbook"
|
852
|
+
msgstr ""
|
853
|
+
|
854
|
+
#: ../lib/foreman_ansible/remote_execution.rb:36
|
855
|
+
msgid "Run an Ansible playbook against given hosts"
|
856
|
+
msgstr ""
|
857
|
+
|
858
|
+
#: ../lib/foreman_ansible/remote_execution.rb:41
|
859
|
+
msgid "Enable web console"
|
860
|
+
msgstr ""
|
861
|
+
|
862
|
+
#: ../lib/foreman_ansible/remote_execution.rb:42
|
863
|
+
msgid "Run an Ansible playbook to enable web console on given hosts"
|
864
|
+
msgstr ""
|
865
|
+
|
866
|
+
#: ../lib/foreman_ansible/remote_execution.rb:47
|
867
|
+
msgid "Upgrade Capsules on given hosts"
|
868
|
+
msgstr ""
|
869
|
+
|
870
|
+
#: ../lib/foreman_ansible/remote_execution.rb:48
|
871
|
+
msgid "Upgrade Capsules on given Capsule server hosts"
|
872
|
+
msgstr ""
|
873
|
+
|
874
|
+
#:
|
875
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:59
|
876
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js:18
|
877
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js:30
|
878
|
+
msgid "Name"
|
879
|
+
msgstr ""
|
880
|
+
|
881
|
+
#:
|
882
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:60
|
883
|
+
msgid "Ansible role"
|
884
|
+
msgstr ""
|
885
|
+
|
886
|
+
#:
|
887
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:62
|
888
|
+
msgid "Value"
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
#:
|
892
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:63
|
893
|
+
msgid "Source attribute"
|
894
|
+
msgstr ""
|
895
|
+
|
896
|
+
#:
|
897
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:114
|
898
|
+
msgid "Delete"
|
899
|
+
msgstr ""
|
900
|
+
|
901
|
+
#:
|
902
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:118
|
903
|
+
msgid "Delete Ansible variable override"
|
904
|
+
msgstr ""
|
905
|
+
|
906
|
+
#:
|
907
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTable.js:122
|
908
|
+
msgid "Are you sure you want to delete override for %s?"
|
909
|
+
msgstr ""
|
910
|
+
|
911
|
+
#:
|
912
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:13
|
913
|
+
msgid "Default value"
|
914
|
+
msgstr ""
|
915
|
+
|
916
|
+
#:
|
917
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:48
|
918
|
+
msgid "Ansible variable override was successfully deleted."
|
919
|
+
msgstr ""
|
920
|
+
|
921
|
+
#:
|
922
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:62
|
923
|
+
msgid "There was a following error when deleting Ansible variable override: %s"
|
924
|
+
msgstr ""
|
925
|
+
|
926
|
+
#:
|
927
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:81
|
928
|
+
msgid "Invalid, expected to match a regex: %s"
|
929
|
+
msgstr ""
|
930
|
+
|
931
|
+
#:
|
932
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:93
|
933
|
+
msgid "Invalid, expected one of: %s"
|
934
|
+
msgstr ""
|
935
|
+
|
936
|
+
#:
|
937
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/AnsibleVariableOverridesTableHelper.js:99
|
938
|
+
msgid "is required"
|
939
|
+
msgstr ""
|
940
|
+
|
941
|
+
#:
|
942
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableActionHelper.js:6
|
943
|
+
msgid "There was a following error when changing Ansible variable override: %s"
|
944
|
+
msgstr ""
|
945
|
+
|
946
|
+
#:
|
947
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableActionHelper.js:38
|
948
|
+
msgid "Ansible variable override successfully changed."
|
949
|
+
msgstr ""
|
950
|
+
|
951
|
+
#:
|
952
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableValue.js:35
|
953
|
+
msgid "true"
|
954
|
+
msgstr ""
|
955
|
+
|
956
|
+
#:
|
957
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableValue.js:36
|
958
|
+
msgid "false"
|
959
|
+
msgstr ""
|
960
|
+
|
961
|
+
#:
|
962
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/index.js:45
|
963
|
+
msgid "No Ansible variables found for Host"
|
964
|
+
msgstr ""
|
965
|
+
|
966
|
+
#:
|
967
|
+
#: ../webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/index.js:46
|
968
|
+
msgid "Only variables marked to Override are shown here."
|
969
|
+
msgstr ""
|
970
|
+
|
971
|
+
#:
|
972
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/JobsTabHelper.js:57
|
973
|
+
msgid "There was a following error when deleting Ansible config job: %s"
|
974
|
+
msgstr ""
|
975
|
+
|
976
|
+
#:
|
977
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/JobsTabHelper.js:75
|
978
|
+
msgid "Ansible job was successfully canceled."
|
979
|
+
msgstr ""
|
980
|
+
|
981
|
+
#:
|
982
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/JobsTabHelper.js:120
|
983
|
+
msgid "(from host group)"
|
984
|
+
msgstr ""
|
985
|
+
|
986
|
+
#:
|
987
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:8
|
988
|
+
msgid "hourly"
|
989
|
+
msgstr ""
|
990
|
+
|
991
|
+
#:
|
992
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:9
|
993
|
+
msgid "daily"
|
994
|
+
msgstr ""
|
995
|
+
|
996
|
+
#:
|
997
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:10
|
998
|
+
msgid "weekly"
|
999
|
+
msgstr ""
|
1000
|
+
|
1001
|
+
#:
|
1002
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:11
|
1003
|
+
msgid "monthly"
|
1004
|
+
msgstr ""
|
1005
|
+
|
1006
|
+
#:
|
1007
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:16
|
1008
|
+
msgid "Must not be in the past"
|
1009
|
+
msgstr ""
|
1010
|
+
|
1011
|
+
#:
|
1012
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:22
|
1013
|
+
msgid "can't be blank"
|
1014
|
+
msgstr ""
|
1015
|
+
|
1016
|
+
#:
|
1017
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:72
|
1018
|
+
msgid "There was a following error when creating Ansible job: %s"
|
1019
|
+
msgstr ""
|
1020
|
+
|
1021
|
+
#:
|
1022
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobHelper.js:92
|
1023
|
+
msgid "Ansible job was successfully created."
|
1024
|
+
msgstr ""
|
1025
|
+
|
1026
|
+
#:
|
1027
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobModal.js:65
|
1028
|
+
msgid "Submit"
|
1029
|
+
msgstr ""
|
1030
|
+
|
1031
|
+
#:
|
1032
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/NewRecurringJobModal.js:74
|
1033
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:51
|
1034
|
+
msgid "Cancel"
|
1035
|
+
msgstr ""
|
1036
|
+
|
1037
|
+
#:
|
1038
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:23
|
1039
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:31
|
1040
|
+
msgid "Description"
|
1041
|
+
msgstr ""
|
1042
|
+
|
1043
|
+
#:
|
1044
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:24
|
1045
|
+
msgid "Result"
|
1046
|
+
msgstr ""
|
1047
|
+
|
1048
|
+
#:
|
1049
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:25
|
1050
|
+
msgid "State"
|
1051
|
+
msgstr ""
|
1052
|
+
|
1053
|
+
#:
|
1054
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:26
|
1055
|
+
msgid "Executed at"
|
1056
|
+
msgstr ""
|
1057
|
+
|
1058
|
+
#:
|
1059
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:27
|
1060
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:31
|
1061
|
+
msgid "Schedule"
|
1062
|
+
msgstr ""
|
1063
|
+
|
1064
|
+
#:
|
1065
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/PreviousJobsTable.js:32
|
1066
|
+
msgid "Previously executed jobs"
|
1067
|
+
msgstr ""
|
1068
|
+
|
1069
|
+
#:
|
1070
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:31
|
1071
|
+
msgid "Next Run"
|
1072
|
+
msgstr ""
|
1073
|
+
|
1074
|
+
#:
|
1075
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:39
|
1076
|
+
msgid "Cancel Ansible config job"
|
1077
|
+
msgstr ""
|
1078
|
+
|
1079
|
+
#:
|
1080
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:40
|
1081
|
+
msgid "Are you sure you want to cancel Ansible config job?"
|
1082
|
+
msgstr ""
|
1083
|
+
|
1084
|
+
#:
|
1085
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/RecurringJobsTable.js:62
|
1086
|
+
msgid "Scheduled recurring jobs"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1089
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/index.js:37
|
1090
|
+
msgid "Schedule recurring job"
|
1091
|
+
msgstr ""
|
1092
|
+
|
1093
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/index.js:52
|
1094
|
+
msgid "No config job for Ansible roles scheduled"
|
1095
|
+
msgstr ""
|
1096
|
+
|
1097
|
+
#: ../webpack/components/AnsibleHostDetail/components/JobsTab/index.js:68
|
1098
|
+
msgid "No previous job executions found"
|
1099
|
+
msgstr ""
|
1100
|
+
|
1101
|
+
#:
|
1102
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js:18
|
1103
|
+
msgid "Source"
|
1104
|
+
msgstr ""
|
1105
|
+
|
1106
|
+
#:
|
1107
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js:52
|
1108
|
+
msgid "Inherited from Hostgroup"
|
1109
|
+
msgstr ""
|
1110
|
+
|
1111
|
+
#:
|
1112
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/AllRolesTable.js:53
|
1113
|
+
msgid "Directly assigned to Host"
|
1114
|
+
msgstr ""
|
1115
|
+
|
1116
|
+
#:
|
1117
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js:23
|
1118
|
+
msgid "All assigned Ansible roles"
|
1119
|
+
msgstr ""
|
1120
|
+
|
1121
|
+
#:
|
1122
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js:25
|
1123
|
+
msgid ""
|
1124
|
+
"This list consists of host assigned roles and group assigned roles. Group assi"
|
1125
|
+
"gned roles will always be executed prior to host assigned roles"
|
1126
|
+
msgstr ""
|
1127
|
+
|
1128
|
+
#:
|
1129
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/AllRolesModal/index.js:61
|
1130
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/index.js:49
|
1131
|
+
msgid "No Ansible roles assigned"
|
1132
|
+
msgstr ""
|
1133
|
+
|
1134
|
+
#:
|
1135
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesForm.js:56
|
1136
|
+
msgid "Confirm"
|
1137
|
+
msgstr ""
|
1138
|
+
|
1139
|
+
#:
|
1140
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesModalHelper.js:18
|
1141
|
+
msgid "There was a following error when assigning Ansible Roles: %s"
|
1142
|
+
msgstr ""
|
1143
|
+
|
1144
|
+
#:
|
1145
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/EditRolesModalHelper.js:33
|
1146
|
+
msgid "Ansible Roles were successfully assigned."
|
1147
|
+
msgstr ""
|
1148
|
+
|
1149
|
+
#:
|
1150
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js:27
|
1151
|
+
msgid "Edit Ansible Roles"
|
1152
|
+
msgstr ""
|
1153
|
+
|
1154
|
+
#:
|
1155
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js:29
|
1156
|
+
msgid ""
|
1157
|
+
"Add, remove or reorder host assigned Ansible roles. This host has also group a"
|
1158
|
+
"ssigned roles that are not displayed here and will always be executed prior to"
|
1159
|
+
" host assigned roles"
|
1160
|
+
msgstr ""
|
1161
|
+
|
1162
|
+
#:
|
1163
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/EditRolesModal/index.js:36
|
1164
|
+
msgid "Close"
|
1165
|
+
msgstr ""
|
1166
|
+
|
1167
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js:36
|
1168
|
+
msgid "Edit Ansible roles"
|
1169
|
+
msgstr ""
|
1170
|
+
|
1171
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js:47
|
1172
|
+
msgid "Ansible roles assigned directly to host"
|
1173
|
+
msgstr ""
|
1174
|
+
|
1175
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/RolesTable.js:49
|
1176
|
+
msgid "view all assigned roles"
|
1177
|
+
msgstr ""
|
1178
|
+
|
1179
|
+
#: ../webpack/components/AnsibleHostDetail/components/RolesTab/index.js:36
|
1180
|
+
msgid "Assign Ansible roles"
|
1181
|
+
msgstr ""
|
1182
|
+
|
1183
|
+
#: ../webpack/components/AnsibleHostDetail/constants.js:7
|
1184
|
+
msgid "Inventory"
|
1185
|
+
msgstr ""
|
1186
|
+
|
1187
|
+
#:
|
1188
|
+
#: ../webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js:26
|
1189
|
+
msgid "Import roles and variables started: "
|
1190
|
+
msgstr ""
|
1191
|
+
|
1192
|
+
#:
|
1193
|
+
#: ../webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js:32
|
1194
|
+
msgid "view the task in progress"
|
1195
|
+
msgstr ""
|
1196
|
+
|
1197
|
+
#:
|
1198
|
+
#: ../webpack/components/AnsibleRolesAndVariables/AnsibleRolesAndVariablesActions.js:37
|
1199
|
+
msgid "Failed to import roles and variables "
|
1200
|
+
msgstr ""
|
1201
|
+
|
1202
|
+
#: ../webpack/components/AnsibleRolesSwitcher/AnsibleRolesSwitcher.js:73
|
1203
|
+
msgid "Available Ansible Roles"
|
1204
|
+
msgstr ""
|
1205
|
+
|
1206
|
+
#: ../webpack/components/AnsibleRolesSwitcher/AnsibleRolesSwitcher.js:89
|
1207
|
+
msgid "Assigned Ansible Roles"
|
1208
|
+
msgstr ""
|
1209
|
+
|
1210
|
+
#:
|
1211
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/AnsiblePermissionDenied.js:8
|
1212
|
+
msgid "You are not authorized to perform this action."
|
1213
|
+
msgstr ""
|
1214
|
+
|
1215
|
+
#:
|
1216
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/AnsiblePermissionDenied.js:10
|
1217
|
+
msgid ""
|
1218
|
+
"Please request one of the required permissions listed below from a Foreman adm"
|
1219
|
+
"inistrator:"
|
1220
|
+
msgstr ""
|
1221
|
+
|
1222
|
+
#:
|
1223
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/AnsiblePermissionDenied.js:27
|
1224
|
+
msgid "Permission Denied"
|
1225
|
+
msgstr ""
|
1226
|
+
|
1227
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/AnsibleRole.js:14
|
1228
|
+
msgid "This Ansible role is inherited from parent host group"
|
1229
|
+
msgstr ""
|
1230
|
+
|
1231
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/AnsibleRole.js:15
|
1232
|
+
msgid "This Ansible role is inherited from host group"
|
1233
|
+
msgstr ""
|
1234
|
+
|
1235
|
+
#:
|
1236
|
+
#: ../webpack/components/AnsibleRolesSwitcher/components/OrderedRolesTooltip.js:9
|
1237
|
+
msgid ""
|
1238
|
+
"Use drag and drop to change order of the roles. Ordering of roles is respected"
|
1239
|
+
" for Ansible runs, inherited roles are always before those assigned directly"
|
1240
|
+
msgstr ""
|
1241
|
+
|
1242
|
+
#: ../webpack/components/DualList/ListControls.js:13
|
1243
|
+
msgid "Add selected"
|
1244
|
+
msgstr ""
|
1245
|
+
|
1246
|
+
#: ../webpack/components/DualList/ListControls.js:24
|
1247
|
+
msgid "Add all"
|
1248
|
+
msgstr ""
|
1249
|
+
|
1250
|
+
#: ../webpack/components/DualList/ListControls.js:35
|
1251
|
+
msgid "Remove all"
|
1252
|
+
msgstr ""
|
1253
|
+
|
1254
|
+
#: ../webpack/components/DualList/ListControls.js:46
|
1255
|
+
msgid "Remove selected"
|
1256
|
+
msgstr ""
|
1257
|
+
|
1258
|
+
#: ../webpack/components/DualList/SelectedStatus.js:8
|
1259
|
+
msgid "%(selectedCount)s of %(totalCount)s items selected"
|
1260
|
+
msgstr ""
|
1261
|
+
|
1262
|
+
#: ../webpack/components/DualList/index.js:66
|
1263
|
+
msgid "Available Ansible roles"
|
1264
|
+
msgstr ""
|
1265
|
+
|
1266
|
+
#: ../webpack/components/DualList/index.js:84
|
1267
|
+
msgid "Host assigned Ansible roles"
|
1268
|
+
msgstr ""
|
1269
|
+
|
1270
|
+
#: ../webpack/components/ErrorState.js:13
|
1271
|
+
msgid "Error!"
|
1272
|
+
msgstr ""
|
1273
|
+
|
1274
|
+
#: ../webpack/components/withLoading.js:28
|
1275
|
+
msgid "Nothing Found!"
|
1276
|
+
msgstr ""
|
1277
|
+
|
1278
|
+
#: ../webpack/components/withLoading.js:63
|
1279
|
+
#: ../webpack/components/withLoading.js:75
|
1280
|
+
msgid "Permission denied"
|
1281
|
+
msgstr ""
|
1282
|
+
|
1283
|
+
#: ../webpack/permissionsHelper.js:34
|
1284
|
+
msgid "You are not authorized to view the page. "
|
1285
|
+
msgstr ""
|
1286
|
+
|
1287
|
+
#: ../webpack/permissionsHelper.js:37
|
1288
|
+
msgid "Request the following permissions from administrator: %s."
|
1289
|
+
msgstr ""
|
1290
|
+
|
1291
|
+
#: ../webpack/routes/HostgroupJobs/index.js:11
|
1292
|
+
msgid "Configure Recurring Job"
|
1293
|
+
msgstr ""
|
1294
|
+
|
1295
|
+
#: action_names.rb:2
|
1296
|
+
msgid "Preupgrade job"
|
1297
|
+
msgstr ""
|
1298
|
+
|
1299
|
+
#: action_names.rb:3
|
1300
|
+
msgid "Remote action:"
|
1301
|
+
msgstr ""
|
1302
|
+
|
1303
|
+
#: action_names.rb:4
|
1304
|
+
msgid "Import Puppet classes"
|
1305
|
+
msgstr ""
|
1306
|
+
|
1307
|
+
#: action_names.rb:5
|
1308
|
+
msgid "Import facts"
|
1309
|
+
msgstr ""
|
1310
|
+
|
1311
|
+
#: action_names.rb:6
|
1312
|
+
msgid "Action with sub plans"
|
809
1313
|
msgstr ""
|
810
1314
|
|
811
1315
|
#: gemspec.rb:2
|