foreman_ansible 3.0.2 → 3.0.3
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_inventories_controller.rb +51 -0
- data/app/controllers/api/v2/ansible_roles_controller.rb +6 -2
- data/app/controllers/api/v2/ansible_variables_controller.rb +2 -0
- data/app/views/foreman_ansible/job_templates/ansible_roles_-_ansible_default.erb +1 -1
- data/app/views/foreman_ansible/job_templates/run_command_-_ansible_default.erb +3 -2
- data/config/routes.rb +9 -0
- data/lib/foreman_ansible/register.rb +8 -3
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/de/foreman_ansible.edit.po +271 -170
- data/locale/de/foreman_ansible.po +19 -1
- data/locale/en/foreman_ansible.edit.po +56 -32
- data/locale/en/foreman_ansible.po +19 -1
- data/locale/es/foreman_ansible.edit.po +296 -175
- data/locale/es/foreman_ansible.po +19 -1
- data/locale/foreman_ansible.pot +60 -32
- data/locale/fr/foreman_ansible.edit.po +310 -187
- data/locale/fr/foreman_ansible.po +19 -1
- data/locale/it/foreman_ansible.edit.po +214 -120
- data/locale/it/foreman_ansible.po +19 -1
- data/locale/ja/foreman_ansible.edit.po +276 -182
- data/locale/ja/foreman_ansible.po +19 -1
- data/locale/ko/foreman_ansible.edit.po +196 -116
- data/locale/ko/foreman_ansible.po +19 -1
- data/locale/pt_BR/foreman_ansible.edit.po +294 -173
- data/locale/pt_BR/foreman_ansible.po +19 -1
- data/locale/ru/foreman_ansible.edit.po +207 -113
- data/locale/ru/foreman_ansible.po +19 -1
- data/locale/zh_CN/foreman_ansible.edit.po +272 -183
- data/locale/zh_CN/foreman_ansible.po +19 -1
- data/locale/zh_TW/foreman_ansible.edit.po +196 -116
- data/locale/zh_TW/foreman_ansible.po +19 -1
- data/test/factories/ansible_variables.rb +1 -1
- data/test/functional/api/v2/ansible_inventories_controller_test.rb +51 -0
- metadata +5 -2
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_ansible 3.0.
|
8
|
+
"Project-Id-Version: foreman_ansible 3.0.2\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2018-03-12 12:24-0400\n"
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
@@ -209,9 +209,15 @@ msgstr ""
|
|
209
209
|
msgid "IDs of associated ansible roles"
|
210
210
|
msgstr ""
|
211
211
|
|
212
|
+
msgid "IDs of hostgroups included in inventory"
|
213
|
+
msgstr ""
|
214
|
+
|
212
215
|
msgid "IDs of hostgroups to play roles on"
|
213
216
|
msgstr ""
|
214
217
|
|
218
|
+
msgid "IDs of hosts included in inventory"
|
219
|
+
msgstr ""
|
220
|
+
|
215
221
|
msgid "IDs of hosts to play roles on"
|
216
222
|
msgstr ""
|
217
223
|
|
@@ -446,6 +452,12 @@ msgstr ""
|
|
446
452
|
msgid "Set the order in which values are resolved."
|
447
453
|
msgstr ""
|
448
454
|
|
455
|
+
msgid "Show Ansible inventory for hostgroups"
|
456
|
+
msgstr ""
|
457
|
+
|
458
|
+
msgid "Show Ansible inventory for hosts"
|
459
|
+
msgstr ""
|
460
|
+
|
449
461
|
msgid "Show role"
|
450
462
|
msgstr ""
|
451
463
|
|
@@ -458,6 +470,9 @@ msgstr ""
|
|
458
470
|
msgid "Smart Proxy to import from"
|
459
471
|
msgstr ""
|
460
472
|
|
473
|
+
msgid "Smart proxy id is required"
|
474
|
+
msgstr ""
|
475
|
+
|
461
476
|
msgid "Specify Matchers"
|
462
477
|
msgstr ""
|
463
478
|
|
@@ -524,5 +539,8 @@ msgstr ""
|
|
524
539
|
msgid "When enabled the parameter is hidden in the UI"
|
525
540
|
msgstr ""
|
526
541
|
|
542
|
+
msgid "Whether to override variable or not"
|
543
|
+
msgstr ""
|
544
|
+
|
527
545
|
msgid "WinRM cert Validation"
|
528
546
|
msgstr ""
|
@@ -1,33 +1,42 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_ansible package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
5
|
-
#
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
# Translators:
|
7
|
+
# Flamarion Jorge <jorge.flamarion@gmail.com>, 2018
|
8
|
+
# Valeria S Silva <valeriassilva@live.com>, 2019
|
9
|
+
# Felipe Nogaroto Gonzalez <felipeng84@gmail.com>, 2019
|
10
|
+
# Dominic Cleal <dominic@cleal.org>, 2019
|
11
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2019
|
12
|
+
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2019
|
13
|
+
#
|
14
|
+
#, fuzzy
|
6
15
|
msgid ""
|
7
16
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_ansible
|
17
|
+
"Project-Id-Version: foreman_ansible 3.0.2\n"
|
9
18
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
"Language: pt_BR\n"
|
19
|
+
"POT-Creation-Date: 2019-04-30 20:53+0200\n"
|
20
|
+
"PO-Revision-Date: 2018-11-14 21:36+0000\n"
|
21
|
+
"Last-Translator: Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2019\n"
|
22
|
+
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/foreman/teams/114/pt_BR/)\n"
|
14
23
|
"MIME-Version: 1.0\n"
|
15
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
25
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"
|
18
|
-
"
|
26
|
+
"Language: pt_BR\n"
|
27
|
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19
28
|
|
20
29
|
#: ../app/controllers/ansible_roles_controller.rb:35
|
21
30
|
msgid "Import of roles successfully finished."
|
22
|
-
msgstr ""
|
31
|
+
msgstr "A importação de funções foi concluída com êxito."
|
23
32
|
|
24
33
|
#: ../app/controllers/ansible_roles_controller.rb:50
|
25
34
|
msgid "No changes in roles detected."
|
26
|
-
msgstr ""
|
35
|
+
msgstr "Nenhuma alteração detectada em funções."
|
27
36
|
|
28
37
|
#: ../app/controllers/ansible_roles_controller.rb:51
|
29
38
|
msgid "No changes in roles detected on %s."
|
30
|
-
msgstr ""
|
39
|
+
msgstr "Nenhum alteração detectada em funções em %s."
|
31
40
|
|
32
41
|
#: ../app/controllers/ansible_variables_controller.rb:39
|
33
42
|
msgid "No changes in variables detected on %s."
|
@@ -42,16 +51,18 @@ msgid ""
|
|
42
51
|
msgstr ""
|
43
52
|
|
44
53
|
#: ../app/controllers/ansible_variables_controller.rb:102
|
45
|
-
msgid "
|
54
|
+
msgid ""
|
55
|
+
"No proxy found to import variables from, ensure that the smart proxy has the"
|
56
|
+
" Ansible feature enabled."
|
46
57
|
msgstr ""
|
47
58
|
|
48
59
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:17
|
49
60
|
msgid "Override match"
|
50
|
-
msgstr ""
|
61
|
+
msgstr "perfeita substituição"
|
51
62
|
|
52
63
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:18
|
53
64
|
msgid "Override value, required if omit is false"
|
54
|
-
msgstr ""
|
65
|
+
msgstr "Valor de substituição, necessário se omitir for falso"
|
55
66
|
|
56
67
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:22
|
57
68
|
msgid "Create an override value for a specific ansible variable"
|
@@ -63,39 +74,42 @@ msgstr ""
|
|
63
74
|
|
64
75
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:18
|
65
76
|
msgid "Show role"
|
66
|
-
msgstr ""
|
77
|
+
msgstr "Mostrar função"
|
67
78
|
|
68
79
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:22
|
69
80
|
msgid "List Ansible roles"
|
70
|
-
msgstr ""
|
81
|
+
msgstr "Listar regras do Ansible"
|
71
82
|
|
72
83
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:28
|
73
84
|
msgid "Deletes Ansible role"
|
74
|
-
msgstr ""
|
85
|
+
msgstr "Excluir função do Ansible"
|
75
86
|
|
76
87
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:34
|
77
88
|
msgid "Import Ansible roles"
|
78
|
-
msgstr ""
|
89
|
+
msgstr "Importar funções do Ansible"
|
79
90
|
|
80
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:35
|
91
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:35
|
92
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:42
|
93
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:73
|
94
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:83
|
81
95
|
msgid "Smart Proxy to import from"
|
82
|
-
msgstr ""
|
96
|
+
msgstr "Proxy inteligente a partir do qual importar"
|
83
97
|
|
84
98
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:36
|
85
99
|
msgid "Ansible role names to import"
|
86
|
-
msgstr ""
|
100
|
+
msgstr "Nomes das funções do Ansible a serem importadas"
|
87
101
|
|
88
102
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:41
|
89
103
|
msgid "Obsolete Ansible roles"
|
90
|
-
msgstr ""
|
104
|
+
msgstr "Funções do Ansible obsoletas"
|
91
105
|
|
92
106
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:48
|
93
107
|
msgid "Fetch Ansible roles available to be imported"
|
94
|
-
msgstr ""
|
108
|
+
msgstr "Buscar funções do Ansible disponíveis a serem importadas"
|
95
109
|
|
96
110
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:49
|
97
111
|
msgid "Smart Proxy to fetch from"
|
98
|
-
msgstr ""
|
112
|
+
msgstr "Proxy inteligente a partir do qual buscar"
|
99
113
|
|
100
114
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:20
|
101
115
|
msgid "Show variable"
|
@@ -111,7 +125,7 @@ msgstr ""
|
|
111
125
|
|
112
126
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:39
|
113
127
|
msgid "Name of variable"
|
114
|
-
msgstr ""
|
128
|
+
msgstr "Nome da variável"
|
115
129
|
|
116
130
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:40
|
117
131
|
msgid "Role ID"
|
@@ -119,43 +133,45 @@ msgstr ""
|
|
119
133
|
|
120
134
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:41
|
121
135
|
msgid "Default value of variable"
|
122
|
-
msgstr ""
|
136
|
+
msgstr "Valor padrão da variável"
|
123
137
|
|
124
138
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:42
|
125
139
|
msgid "When enabled the parameter is hidden in the UI"
|
126
|
-
msgstr ""
|
140
|
+
msgstr "Quando habilitado, o parâmetro fica oculto na IU "
|
127
141
|
|
128
142
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:43
|
129
143
|
msgid "The order in which values are resolved"
|
130
|
-
msgstr ""
|
144
|
+
msgstr "A ordem na qual os valores são resolvidos"
|
131
145
|
|
132
146
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:44
|
133
147
|
msgid "Description of variable"
|
134
|
-
msgstr ""
|
148
|
+
msgstr "Descrição da variável"
|
135
149
|
|
136
150
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:45
|
137
151
|
msgid "Types of validation values"
|
138
|
-
msgstr ""
|
152
|
+
msgstr "Tipos de valores de validação"
|
139
153
|
|
140
154
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:46
|
141
155
|
msgid "Used to enforce certain values for the parameter values"
|
142
|
-
msgstr ""
|
156
|
+
msgstr "Usado para impor certos valores aos valores do parâmetro "
|
143
157
|
|
144
158
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:47
|
145
159
|
msgid "Types of variable values"
|
146
|
-
msgstr ""
|
160
|
+
msgstr "Tipos de valores de validação"
|
147
161
|
|
148
162
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:48
|
149
163
|
msgid "Merge all matching values (only array/hash type)"
|
150
164
|
msgstr ""
|
165
|
+
"Mesclar todos os valores correspondentes (somente tipo de hash/ matriz)"
|
151
166
|
|
152
167
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:49
|
153
168
|
msgid "Include default value when merging all matching values"
|
154
169
|
msgstr ""
|
170
|
+
"Incluir valor padrão quando mesclando todos os valores correspondentes "
|
155
171
|
|
156
172
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:50
|
157
173
|
msgid "Remove duplicate values (only array type)"
|
158
|
-
msgstr ""
|
174
|
+
msgstr "Remover valores duplicados (somente tipo de matriz)"
|
159
175
|
|
160
176
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:54
|
161
177
|
msgid "Create Ansible variable"
|
@@ -166,28 +182,32 @@ msgid "Updates Ansible variable"
|
|
166
182
|
msgstr ""
|
167
183
|
|
168
184
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:71
|
169
|
-
msgid "
|
185
|
+
msgid ""
|
186
|
+
"Import Ansible variables. This will only import variables for already "
|
187
|
+
"existing roles, it will not import any new roles"
|
170
188
|
msgstr ""
|
171
189
|
|
172
190
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:81
|
173
|
-
msgid "
|
191
|
+
msgid ""
|
192
|
+
"Obsolete Ansible variables. This will only obsolete variables for already "
|
193
|
+
"existing roles, it will not delete any old roles"
|
174
194
|
msgstr ""
|
175
195
|
|
176
196
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:20
|
177
197
|
msgid "Plays Ansible roles on a hostgroup"
|
178
|
-
msgstr ""
|
198
|
+
msgstr "Executa as funções do Ansible em um grupo de hosts"
|
179
199
|
|
180
200
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:30
|
181
201
|
msgid "Plays Ansible roles on hostgroups"
|
182
|
-
msgstr ""
|
202
|
+
msgstr "Executa as funções do Ansible em grupos de hosts"
|
183
203
|
|
184
204
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:31
|
185
205
|
msgid "IDs of hostgroups to play roles on"
|
186
|
-
msgstr ""
|
206
|
+
msgstr "IDs de grupos de hosts nas quais executar funções"
|
187
207
|
|
188
208
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:42
|
189
209
|
msgid "List all Ansible roles for a hostgroup"
|
190
|
-
msgstr ""
|
210
|
+
msgstr "Lista de todas as funções do Ansible para um grupo de hosts"
|
191
211
|
|
192
212
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:53
|
193
213
|
msgid "Assigns Ansible roles to a hostgroup"
|
@@ -197,25 +217,26 @@ msgstr ""
|
|
197
217
|
msgid "Ansible roles to assign to a hostgroup"
|
198
218
|
msgstr ""
|
199
219
|
|
200
|
-
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb:13
|
220
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb:13
|
221
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_param_group_extensions.rb:13
|
201
222
|
msgid "IDs of associated ansible roles"
|
202
|
-
msgstr ""
|
223
|
+
msgstr "IDs das funções do Ansible associadas"
|
203
224
|
|
204
225
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:26
|
205
226
|
msgid "Plays Ansible roles on a host"
|
206
|
-
msgstr ""
|
227
|
+
msgstr "Executa as funções do Ansible em um host"
|
207
228
|
|
208
229
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:35
|
209
230
|
msgid "Plays Ansible roles on hosts"
|
210
|
-
msgstr ""
|
231
|
+
msgstr "Executa as funções do Ansible em hosts"
|
211
232
|
|
212
233
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:36
|
213
234
|
msgid "IDs of hosts to play roles on"
|
214
|
-
msgstr ""
|
235
|
+
msgstr "IDs dos hosts nos quais executar funções"
|
215
236
|
|
216
237
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:46
|
217
238
|
msgid "List all Ansible roles for a host"
|
218
|
-
msgstr ""
|
239
|
+
msgstr "Lista de todas as funções do Ansible para um host"
|
219
240
|
|
220
241
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:56
|
221
242
|
msgid "Assigns Ansible roles to a host"
|
@@ -227,19 +248,19 @@ msgstr ""
|
|
227
248
|
|
228
249
|
#: ../app/controllers/foreman_ansible/concerns/hostgroups_controller_extensions.rb:27
|
229
250
|
msgid "Host group has no associated hosts"
|
230
|
-
msgstr ""
|
251
|
+
msgstr "O grupo de hosts não tem hosts associados a ele"
|
231
252
|
|
232
253
|
#: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:13
|
233
254
|
msgid "There are no Ansible roles to play"
|
234
|
-
msgstr ""
|
255
|
+
msgstr "Não há funções do Ansible a serem executadas"
|
235
256
|
|
236
257
|
#: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:15
|
237
258
|
msgid "Could not run Ansible roles for %{host}"
|
238
|
-
msgstr ""
|
259
|
+
msgstr "Não foi possível executar as funções do Ansible para %{host}"
|
239
260
|
|
240
261
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:8
|
241
262
|
msgid "Import from %s"
|
242
|
-
msgstr ""
|
263
|
+
msgstr "Importar de %s"
|
243
264
|
|
244
265
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:23
|
245
266
|
msgid "Ansible Role"
|
@@ -247,111 +268,146 @@ msgstr ""
|
|
247
268
|
|
248
269
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:29
|
249
270
|
msgid "Import"
|
250
|
-
msgstr ""
|
271
|
+
msgstr "Importar"
|
251
272
|
|
252
273
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:35
|
253
274
|
msgid "%s ago"
|
254
|
-
msgstr ""
|
275
|
+
msgstr "%s atrás"
|
255
276
|
|
256
|
-
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
|
277
|
+
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
|
278
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:18
|
257
279
|
msgid "Play Ansible roles"
|
258
|
-
msgstr ""
|
280
|
+
msgstr "Executar funções do Ansible"
|
259
281
|
|
260
282
|
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:10
|
261
283
|
msgid "Playbook execution failed"
|
262
|
-
msgstr ""
|
284
|
+
msgstr "Falha na execução do playbook"
|
263
285
|
|
264
|
-
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:30
|
286
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:30
|
287
|
+
#: ../lib/foreman_ansible_core/remote_execution_core/ansible_runner.rb:36
|
265
288
|
msgid "Error loading data from proxy"
|
266
|
-
msgstr ""
|
289
|
+
msgstr "Erro ao carregar dados do proxy"
|
267
290
|
|
268
291
|
#: ../app/lib/actions/foreman_ansible/helpers/play_roles_description.rb:13
|
269
292
|
msgid "Foreman"
|
270
|
-
msgstr ""
|
293
|
+
msgstr "Foreman"
|
271
294
|
|
272
295
|
#: ../app/lib/proxy_api/ansible.rb:27
|
273
296
|
msgid "Unable to get roles from Ansible"
|
274
|
-
msgstr ""
|
297
|
+
msgstr "Não foi possível obter funções do Ansible"
|
275
298
|
|
276
299
|
#: ../app/lib/proxy_api/ansible.rb:34 ../app/lib/proxy_api/ansible.rb:41
|
277
300
|
msgid "Unable to get roles/variables from Ansible"
|
278
301
|
msgstr ""
|
279
302
|
|
280
303
|
#: ../app/models/setting/ansible.rb:20
|
281
|
-
msgid "
|
304
|
+
msgid ""
|
305
|
+
"Use this to supply a path to an SSH Private Key that Ansible will use in "
|
306
|
+
"lieu of a password Override with \"ansible_ssh_private_key_file\" host "
|
307
|
+
"parameter"
|
282
308
|
msgstr ""
|
309
|
+
"Use isso para fornecer um caminho para uma chave privada de SSH que o "
|
310
|
+
"Ansible usará no lugar de uma senha de substituição com o parâmetro de host "
|
311
|
+
"\"ansible_ssh_private_key_file\""
|
283
312
|
|
284
313
|
#: ../app/models/setting/ansible.rb:25
|
285
314
|
msgid "Private Key Path"
|
286
|
-
msgstr ""
|
315
|
+
msgstr "Caminho da chave privada"
|
287
316
|
|
288
317
|
#: ../app/models/setting/ansible.rb:29
|
289
|
-
msgid "
|
318
|
+
msgid ""
|
319
|
+
"Use this connection type by default when running Ansible playbooks. You can "
|
320
|
+
"override this on hosts by adding a parameter \"ansible_connection\""
|
290
321
|
msgstr ""
|
322
|
+
"Use esse tipo de conexão por padrão ao executar playbooks do Ansible. Você "
|
323
|
+
"pode substituir isso em hosts adicionando um parâmetro "
|
324
|
+
"\"ansible_connection\"."
|
291
325
|
|
292
326
|
#: ../app/models/setting/ansible.rb:33
|
293
327
|
msgid "Connection type"
|
294
|
-
msgstr ""
|
328
|
+
msgstr "Tipo de conexão"
|
295
329
|
|
296
330
|
#: ../app/models/setting/ansible.rb:37
|
297
|
-
msgid "
|
331
|
+
msgid ""
|
332
|
+
"Enable/disable WinRM server certificate validation when running Ansible "
|
333
|
+
"playbooks. You can override this on hosts by adding a parameter "
|
334
|
+
"\"ansible_winrm_server_cert_validation\""
|
298
335
|
msgstr ""
|
336
|
+
"Ativar/desativar a validação do certificado do servidor WinRM ao executar "
|
337
|
+
"playbooks do Ansible. Você pode substituir isso em hosts adicionando um "
|
338
|
+
"parâmetro \"ansible_winrm_server_cert_validation\"."
|
299
339
|
|
300
340
|
#: ../app/models/setting/ansible.rb:42
|
301
341
|
msgid "WinRM cert Validation"
|
302
|
-
msgstr ""
|
342
|
+
msgstr "Validação de certificado WinRM"
|
303
343
|
|
304
344
|
#: ../app/models/setting/ansible.rb:46
|
305
|
-
msgid "
|
345
|
+
msgid ""
|
346
|
+
"Foreman will add the this level of verbosity for additional debugging output"
|
347
|
+
" when running Ansible playbooks."
|
306
348
|
msgstr ""
|
349
|
+
"O Foreman adicionará esse nível de detalhamento para uma saída de depuração "
|
350
|
+
"adicional ao executar os playbooks do Ansible."
|
307
351
|
|
308
352
|
#: ../app/models/setting/ansible.rb:49
|
309
353
|
msgid "Default verbosity level"
|
310
|
-
msgstr ""
|
354
|
+
msgstr "Nível do padrão de detalhamento"
|
311
355
|
|
312
356
|
#: ../app/models/setting/ansible.rb:52
|
313
357
|
msgid "Disabled"
|
314
|
-
msgstr ""
|
358
|
+
msgstr "Desativado"
|
315
359
|
|
316
360
|
#: ../app/models/setting/ansible.rb:53
|
317
361
|
msgid "Level 1 (-v)"
|
318
|
-
msgstr ""
|
362
|
+
msgstr "Nível 1 (-v)"
|
319
363
|
|
320
364
|
#: ../app/models/setting/ansible.rb:54
|
321
365
|
msgid "Level 2 (-vv)"
|
322
|
-
msgstr ""
|
366
|
+
msgstr "Nível 2 (-vv)"
|
323
367
|
|
324
368
|
#: ../app/models/setting/ansible.rb:55
|
325
369
|
msgid "Level 3 (-vvv)"
|
326
|
-
msgstr ""
|
370
|
+
msgstr "Nível 3 (-vvv)"
|
327
371
|
|
328
372
|
#: ../app/models/setting/ansible.rb:56
|
329
373
|
msgid "Level 4 (-vvvv)"
|
330
|
-
msgstr ""
|
374
|
+
msgstr "Nível 4 (-vvvv)"
|
331
375
|
|
332
376
|
#: ../app/models/setting/ansible.rb:62
|
333
|
-
msgid "
|
377
|
+
msgid ""
|
378
|
+
"Timeout (in seconds) to set when Foreman will trigger a play Ansible roles "
|
379
|
+
"task after a host is fully provisioned. Set this to the maximum time you "
|
380
|
+
"expect a host to take until it is ready after a reboot."
|
334
381
|
msgstr ""
|
382
|
+
"Tempo limite (em segundos) para definir quando o Foreman acionará a tarefa "
|
383
|
+
"de funções do Ansible depois que um host é totalmente provisionado. Defina "
|
384
|
+
"isso para o tempo máximo que você espera que um host leve até estar pronto "
|
385
|
+
"após uma reinicialização."
|
335
386
|
|
336
387
|
#: ../app/models/setting/ansible.rb:67
|
337
388
|
msgid "Post-provision timeout"
|
338
|
-
msgstr ""
|
389
|
+
msgstr "Tempo limite pós-provisão"
|
339
390
|
|
340
391
|
#: ../app/models/setting/ansible.rb:71
|
341
392
|
msgid "Timeout (in minutes) when hosts should have reported."
|
342
|
-
msgstr ""
|
393
|
+
msgstr "Limite de tempo (em minutos) em que os hosts devem ser reportados."
|
343
394
|
|
344
395
|
#: ../app/models/setting/ansible.rb:73
|
345
396
|
msgid "Ansible report timeout"
|
346
|
-
msgstr ""
|
397
|
+
msgstr "Limite de tempo do relatório do Ansible"
|
347
398
|
|
348
399
|
#: ../app/models/setting/ansible.rb:77
|
349
|
-
msgid "
|
400
|
+
msgid ""
|
401
|
+
"Disable host configuration status turning to out of sync for %{cfgmgmt} "
|
402
|
+
"after report does not arrive within configured interval"
|
350
403
|
msgstr ""
|
404
|
+
"Desabilitar o status de configuração do host para que fique fora de "
|
405
|
+
"sincronização para %{cfgmgmt} depois que o relatório não chegar no intervalo"
|
406
|
+
" configurado"
|
351
407
|
|
352
408
|
#: ../app/models/setting/ansible.rb:81
|
353
409
|
msgid "%{cfgmgmt} out of sync disabled"
|
354
|
-
msgstr ""
|
410
|
+
msgstr "%{cfgmgmt} fora de sincronização desabilitado"
|
355
411
|
|
356
412
|
#: ../app/models/setting/ansible.rb:86
|
357
413
|
msgid "Foreman will run Ansible playbooks using this implementation"
|
@@ -363,129 +419,156 @@ msgstr ""
|
|
363
419
|
|
364
420
|
#: ../app/models/setting/ansible.rb:104 ../lib/foreman_ansible/register.rb:92
|
365
421
|
msgid "Ansible"
|
366
|
-
msgstr ""
|
422
|
+
msgstr "Ansible"
|
367
423
|
|
368
424
|
#: ../app/services/foreman_ansible/insights_notification_builder.rb:51
|
369
425
|
msgid "Remediation Plan"
|
370
|
-
msgstr ""
|
426
|
+
msgstr "Plano de remediação"
|
371
427
|
|
372
|
-
#: ../app/services/foreman_ansible/insights_notification_builder.rb:61
|
428
|
+
#: ../app/services/foreman_ansible/insights_notification_builder.rb:61
|
429
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:13
|
373
430
|
msgid "Job Details"
|
374
|
-
msgstr ""
|
431
|
+
msgstr "Detalhes do trabalho"
|
375
432
|
|
376
433
|
#: ../app/services/foreman_ansible/proxy_api.rb:13
|
377
434
|
msgid "Proxy not found"
|
378
|
-
msgstr ""
|
435
|
+
msgstr "Proxy não encontrado"
|
379
436
|
|
380
437
|
#: ../app/views/ansible_roles/import.html.erb:1
|
381
438
|
msgid "Changed Ansible roles"
|
382
|
-
msgstr ""
|
439
|
+
msgstr "Funções do Ansible alteradas"
|
383
440
|
|
384
|
-
#: ../app/views/ansible_roles/import.html.erb:3
|
441
|
+
#: ../app/views/ansible_roles/import.html.erb:3
|
442
|
+
#: ../app/views/ansible_variables/import.html.erb:3
|
385
443
|
msgid "Select the changes you want to realize in Foreman"
|
386
|
-
msgstr ""
|
444
|
+
msgstr "Selecionar mudanças que você deseja realizar no Foreman"
|
387
445
|
|
388
|
-
#: ../app/views/ansible_roles/import.html.erb:5
|
446
|
+
#: ../app/views/ansible_roles/import.html.erb:5
|
447
|
+
#: ../app/views/ansible_variables/import.html.erb:5
|
389
448
|
msgid "Toggle"
|
390
|
-
msgstr ""
|
449
|
+
msgstr "Alternar"
|
391
450
|
|
392
|
-
#: ../app/views/ansible_roles/import.html.erb:6
|
451
|
+
#: ../app/views/ansible_roles/import.html.erb:6
|
452
|
+
#: ../app/views/ansible_variables/import.html.erb:6
|
393
453
|
msgid "New"
|
394
|
-
msgstr ""
|
454
|
+
msgstr "Novo"
|
395
455
|
|
396
|
-
#: ../app/views/ansible_roles/import.html.erb:8
|
456
|
+
#: ../app/views/ansible_roles/import.html.erb:8
|
457
|
+
#: ../app/views/ansible_variables/import.html.erb:8
|
397
458
|
msgid "Check/Uncheck new"
|
398
|
-
msgstr ""
|
459
|
+
msgstr "Marcar/Desmarcar novo"
|
399
460
|
|
400
|
-
#: ../app/views/ansible_roles/import.html.erb:9
|
461
|
+
#: ../app/views/ansible_roles/import.html.erb:9
|
462
|
+
#: ../app/views/ansible_variables/import.html.erb:9
|
401
463
|
msgid "Obsolete"
|
402
|
-
msgstr ""
|
464
|
+
msgstr "Obsoleto"
|
403
465
|
|
404
|
-
#: ../app/views/ansible_roles/import.html.erb:11
|
466
|
+
#: ../app/views/ansible_roles/import.html.erb:11
|
467
|
+
#: ../app/views/ansible_variables/import.html.erb:11
|
405
468
|
msgid "Check/Uncheck obsolete"
|
406
|
-
msgstr ""
|
469
|
+
msgstr "Marcar/Desmarcar obsoleto"
|
407
470
|
|
408
|
-
#: ../app/views/ansible_roles/import.html.erb:19
|
471
|
+
#: ../app/views/ansible_roles/import.html.erb:19
|
472
|
+
#: ../app/views/ansible_variables/import.html.erb:22
|
409
473
|
msgid "Check/Uncheck all"
|
410
|
-
msgstr ""
|
474
|
+
msgstr "Marcar/Desmarcar tudo"
|
411
475
|
|
412
|
-
#: ../app/views/ansible_roles/import.html.erb:21
|
476
|
+
#: ../app/views/ansible_roles/import.html.erb:21
|
477
|
+
#: ../app/views/ansible_variables/import.html.erb:24
|
413
478
|
msgid "Name"
|
414
|
-
msgstr ""
|
479
|
+
msgstr "Nome"
|
415
480
|
|
416
|
-
#: ../app/views/ansible_roles/import.html.erb:22
|
481
|
+
#: ../app/views/ansible_roles/import.html.erb:22
|
482
|
+
#: ../app/views/ansible_variables/import.html.erb:26
|
417
483
|
msgid "Hosts count"
|
418
|
-
msgstr ""
|
484
|
+
msgstr "Contagem de hosts"
|
419
485
|
|
420
|
-
#: ../app/views/ansible_roles/import.html.erb:23
|
486
|
+
#: ../app/views/ansible_roles/import.html.erb:23
|
487
|
+
#: ../app/views/ansible_variables/import.html.erb:27
|
421
488
|
msgid "Hostgroups count"
|
422
|
-
msgstr ""
|
489
|
+
msgstr "Contagem de grupos de hosts"
|
423
490
|
|
424
|
-
#: ../app/views/ansible_roles/import.html.erb:24
|
491
|
+
#: ../app/views/ansible_roles/import.html.erb:24
|
492
|
+
#: ../app/views/ansible_variables/import.html.erb:28
|
425
493
|
msgid "Operation"
|
426
|
-
msgstr ""
|
494
|
+
msgstr "Operação"
|
427
495
|
|
428
|
-
#: ../app/views/ansible_roles/import.html.erb:35
|
496
|
+
#: ../app/views/ansible_roles/import.html.erb:35
|
497
|
+
#: ../app/views/ansible_variables/import.html.erb:39
|
429
498
|
msgid "Check/Uncheck all %s changes"
|
430
|
-
msgstr ""
|
499
|
+
msgstr "Marcar/Desmarcar todas %s mudanças"
|
431
500
|
|
432
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
501
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
502
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
433
503
|
msgid "Add"
|
434
|
-
msgstr ""
|
504
|
+
msgstr "Adicionar"
|
435
505
|
|
436
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
506
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
507
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
437
508
|
msgid "Remove"
|
438
|
-
msgstr ""
|
509
|
+
msgstr "Remover"
|
439
510
|
|
440
|
-
#: ../app/views/ansible_roles/import.html.erb:48
|
511
|
+
#: ../app/views/ansible_roles/import.html.erb:48
|
512
|
+
#: ../app/views/ansible_variables/import.html.erb:53
|
441
513
|
msgid "Cancel"
|
442
|
-
msgstr ""
|
514
|
+
msgstr "Cancelar"
|
443
515
|
|
444
|
-
#: ../app/views/ansible_roles/import.html.erb:49
|
516
|
+
#: ../app/views/ansible_roles/import.html.erb:49
|
517
|
+
#: ../app/views/ansible_variables/import.html.erb:12
|
518
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
519
|
+
#: ../app/views/ansible_variables/import.html.erb:54
|
445
520
|
msgid "Update"
|
446
|
-
msgstr ""
|
521
|
+
msgstr "Atualizar"
|
447
522
|
|
448
|
-
#: ../app/views/ansible_roles/index.html.erb:1
|
523
|
+
#: ../app/views/ansible_roles/index.html.erb:1
|
524
|
+
#: ../app/views/ansible_roles/welcome.html.erb:1
|
525
|
+
#: ../app/views/ansible_roles/welcome.html.erb:6
|
526
|
+
#: ../app/views/foreman_ansible/ansible_roles/_select_tab_title.html.erb:1
|
449
527
|
msgid "Ansible Roles"
|
450
|
-
msgstr ""
|
528
|
+
msgstr "Funções do Ansible"
|
451
529
|
|
452
530
|
#: ../app/views/ansible_roles/index.html.erb:9
|
453
531
|
msgid "Role|Name"
|
454
|
-
msgstr ""
|
532
|
+
msgstr "Nome"
|
455
533
|
|
456
534
|
#: ../app/views/ansible_roles/index.html.erb:10
|
457
535
|
msgid "Hostgroups"
|
458
|
-
msgstr ""
|
536
|
+
msgstr "Grupos de hosts"
|
459
537
|
|
460
538
|
#: ../app/views/ansible_roles/index.html.erb:11
|
461
539
|
msgid "Hosts"
|
462
|
-
msgstr ""
|
540
|
+
msgstr "Hosts"
|
463
541
|
|
464
542
|
#: ../app/views/ansible_roles/index.html.erb:12
|
465
543
|
msgid "Imported at"
|
466
|
-
msgstr ""
|
544
|
+
msgstr "Importado em"
|
467
545
|
|
468
|
-
#: ../app/views/ansible_roles/index.html.erb:13
|
546
|
+
#: ../app/views/ansible_roles/index.html.erb:13
|
547
|
+
#: ../app/views/ansible_variables/index.html.erb:16
|
469
548
|
msgid "Actions"
|
470
|
-
msgstr ""
|
549
|
+
msgstr "Ações"
|
471
550
|
|
472
|
-
#: ../app/views/ansible_roles/index.html.erb:27
|
551
|
+
#: ../app/views/ansible_roles/index.html.erb:27
|
552
|
+
#: ../lib/foreman_ansible/register.rb:98
|
473
553
|
msgid "Variables"
|
474
|
-
msgstr ""
|
554
|
+
msgstr "Variáveis"
|
475
555
|
|
476
|
-
#: ../app/views/ansible_roles/index.html.erb:33
|
556
|
+
#: ../app/views/ansible_roles/index.html.erb:33
|
557
|
+
#: ../app/views/ansible_variables/index.html.erb:41
|
477
558
|
msgid "Delete %s?"
|
478
|
-
msgstr ""
|
559
|
+
msgstr "Remover %s"
|
479
560
|
|
480
561
|
#: ../app/views/ansible_roles/welcome.html.erb:7
|
481
562
|
msgid ""
|
482
563
|
"No ansible roles were found in Foreman. If you want to assign roles to your hosts,\n"
|
483
564
|
" you have to import them first."
|
484
565
|
msgstr ""
|
566
|
+
"Nenhuma função do Ansible foi encontrada no Foreman. Se desejar atribuir funções a seus hosts,\n"
|
567
|
+
" importe-as primeiro."
|
485
568
|
|
486
569
|
#: ../app/views/ansible_roles/welcome.html.erb:10
|
487
570
|
msgid "Learn more about this in the documentation."
|
488
|
-
msgstr ""
|
571
|
+
msgstr "Para saber mais sobre isto, acesse a documentação."
|
489
572
|
|
490
573
|
#: ../app/views/ansible_variables/_fields.erb:4
|
491
574
|
msgid "Ansible Variable Details (Imported)"
|
@@ -497,79 +580,107 @@ msgstr ""
|
|
497
580
|
|
498
581
|
#: ../app/views/ansible_variables/_fields.erb:11
|
499
582
|
msgid "Default Behavior"
|
500
|
-
msgstr ""
|
583
|
+
msgstr "Comportamento do parâmetro"
|
501
584
|
|
502
585
|
#: ../app/views/ansible_variables/_fields.erb:12
|
503
586
|
msgid "Override the default value of the Ansible variable."
|
504
587
|
msgstr ""
|
505
588
|
|
506
589
|
#: ../app/views/ansible_variables/_fields.erb:14
|
507
|
-
msgid "
|
590
|
+
msgid ""
|
591
|
+
"Mark the variable to be managed by Foreman. When the Ansible role of this "
|
592
|
+
"variable is assigned to a host, the default value will be added to Ansible "
|
593
|
+
"inventory as a host variable. Specify matchers to set a different value for "
|
594
|
+
"such variable."
|
508
595
|
msgstr ""
|
509
596
|
|
510
597
|
#: ../app/views/ansible_variables/_fields.erb:27
|
511
598
|
msgid "Value to use when there is no match."
|
512
|
-
msgstr ""
|
599
|
+
msgstr "Valor a ser usado quando não há correspondências. "
|
513
600
|
|
514
601
|
#: ../app/views/ansible_variables/_fields.erb:30
|
515
602
|
msgid "Hidden Value"
|
516
|
-
msgstr ""
|
603
|
+
msgstr "Valor oculto"
|
517
604
|
|
518
605
|
#: ../app/views/ansible_variables/_fields.erb:33
|
519
606
|
msgid "Hide all values for this parameter."
|
520
|
-
msgstr ""
|
607
|
+
msgstr "Ocultar todos os valores para este parâmetro."
|
521
608
|
|
522
609
|
#: ../app/views/ansible_variables/_fields.erb:39
|
523
610
|
msgid "Optional Input Validator"
|
524
|
-
msgstr ""
|
611
|
+
msgstr "Validador de entrada opcional"
|
525
612
|
|
526
613
|
#: ../app/views/ansible_variables/_fields.erb:41
|
527
|
-
msgid "
|
614
|
+
msgid ""
|
615
|
+
"Before including these variables on your playbooks, Foreman will validate "
|
616
|
+
"that your variables comply with the validation."
|
528
617
|
msgstr ""
|
529
618
|
|
530
619
|
#: ../app/views/ansible_variables/_fields.erb:44
|
531
|
-
msgid "
|
620
|
+
msgid ""
|
621
|
+
"If checked, will raise an error if there is no default value and no matcher "
|
622
|
+
"provide a value."
|
532
623
|
msgstr ""
|
624
|
+
"Se verificado, surgirá um erro caso não haja valor padrão e nenhum "
|
625
|
+
"coincidente fornecer um valor."
|
533
626
|
|
534
627
|
#: ../app/views/ansible_variables/_fields.erb:53
|
535
628
|
msgid "Prioritize Attribute Order"
|
536
|
-
msgstr ""
|
629
|
+
msgstr "Priorizar ordem de atributos "
|
537
630
|
|
538
631
|
#: ../app/views/ansible_variables/_fields.erb:54
|
539
632
|
msgid "Set the order in which values are resolved."
|
540
|
-
msgstr ""
|
633
|
+
msgstr "Definir a ordem em que os valores serão resolvidos. "
|
541
634
|
|
542
635
|
#: ../app/views/ansible_variables/_fields.erb:55
|
543
636
|
msgid "Order"
|
544
|
-
msgstr ""
|
637
|
+
msgstr "Ordem"
|
545
638
|
|
546
639
|
#: ../app/views/ansible_variables/_fields.erb:56
|
547
|
-
msgid "
|
640
|
+
msgid ""
|
641
|
+
"The order in which matchers keys are processed, first match wins.<br> You "
|
642
|
+
"may use multiple attributes as a matcher key, for example, an order of "
|
643
|
+
"<code>host group, environment</code> would expect a matcher such as "
|
644
|
+
"<code>hostgroup = \"web servers\", environment = production</code>"
|
548
645
|
msgstr ""
|
646
|
+
"A ordem em que as chaves de correspondência são processadas, a primeira "
|
647
|
+
"combinação vence. <br> Você pode usar vários atributos como uma chave de "
|
648
|
+
"correspondência, por exemplo, uma ordem de <code> grupo de host, ambiente "
|
649
|
+
"</code> esperaria uma correspondência como <code>hostgroup = \"web "
|
650
|
+
"servers\", environment = production</code>."
|
549
651
|
|
550
652
|
#: ../app/views/ansible_variables/_fields.erb:59
|
551
|
-
msgid "
|
653
|
+
msgid ""
|
654
|
+
"Continue to look for matches after first find (only array/hash type)? Note: "
|
655
|
+
"merging overrides ignores all matchers that are omitted."
|
552
656
|
msgstr ""
|
657
|
+
"Continuar a buscar correspondências após o primeiro resultado (somente tipo "
|
658
|
+
"matriz/hash)? Observação: mesclar substituições ignora todas as "
|
659
|
+
"correspondências que são omitidas."
|
553
660
|
|
554
661
|
#: ../app/views/ansible_variables/_fields.erb:61
|
555
662
|
msgid "Include default value when merging all matching values."
|
556
663
|
msgstr ""
|
664
|
+
"Incluir valor padrão quando mesclando todos os valores correspondentes."
|
557
665
|
|
558
666
|
#: ../app/views/ansible_variables/_fields.erb:64
|
559
667
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
560
668
|
msgstr ""
|
669
|
+
"Evitar valores duplicados quando mesclando-os (somente tipo de matriz)?"
|
561
670
|
|
562
671
|
#: ../app/views/ansible_variables/_fields.erb:68
|
563
672
|
msgid "Specify Matchers"
|
564
|
-
msgstr ""
|
673
|
+
msgstr "Especificar correspondências "
|
565
674
|
|
566
|
-
#: ../app/views/ansible_variables/edit.html.erb:4
|
675
|
+
#: ../app/views/ansible_variables/edit.html.erb:4
|
676
|
+
#: ../app/views/ansible_variables/index.html.erb:1
|
677
|
+
#: ../app/views/ansible_variables/new.html.erb:4
|
567
678
|
msgid "Ansible Variables"
|
568
679
|
msgstr ""
|
569
680
|
|
570
681
|
#: ../app/views/ansible_variables/edit.html.erb:8
|
571
682
|
msgid "Edit %s"
|
572
|
-
msgstr ""
|
683
|
+
msgstr "Editar %s"
|
573
684
|
|
574
685
|
#: ../app/views/ansible_variables/edit.html.erb:13
|
575
686
|
msgid "Edit Ansible Variable"
|
@@ -601,7 +712,7 @@ msgstr ""
|
|
601
712
|
|
602
713
|
#: ../app/views/ansible_variables/index.html.erb:14
|
603
714
|
msgid "Type"
|
604
|
-
msgstr ""
|
715
|
+
msgstr "Tipo"
|
605
716
|
|
606
717
|
#: ../app/views/ansible_variables/index.html.erb:15
|
607
718
|
msgid "Imported?"
|
@@ -611,86 +722,96 @@ msgstr ""
|
|
611
722
|
msgid "Overriden"
|
612
723
|
msgstr ""
|
613
724
|
|
614
|
-
#: ../app/views/ansible_variables/new.html.erb:8
|
725
|
+
#: ../app/views/ansible_variables/new.html.erb:8
|
726
|
+
#: ../app/views/ansible_variables/new.html.erb:13
|
615
727
|
msgid "Create Ansible Variable"
|
616
728
|
msgstr ""
|
617
729
|
|
618
730
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
|
619
731
|
msgid "Play Roles"
|
620
|
-
msgstr ""
|
732
|
+
msgstr "Funções de ação"
|
621
733
|
|
622
734
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:9
|
623
735
|
msgid "Nest"
|
624
|
-
msgstr ""
|
736
|
+
msgstr "Aninhar"
|
625
737
|
|
626
738
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:10
|
627
739
|
msgid "Clone"
|
628
|
-
msgstr ""
|
740
|
+
msgstr "Clonar"
|
629
741
|
|
630
742
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:7
|
631
743
|
msgid "Level"
|
632
|
-
msgstr ""
|
744
|
+
msgstr "Nível"
|
633
745
|
|
634
746
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:8
|
635
747
|
msgid "Module"
|
636
|
-
msgstr ""
|
748
|
+
msgstr "Módulo"
|
637
749
|
|
638
750
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:9
|
639
751
|
msgid "Arguments"
|
640
|
-
msgstr ""
|
752
|
+
msgstr "Argumentos"
|
641
753
|
|
642
754
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:10
|
643
755
|
msgid "Message"
|
644
|
-
msgstr ""
|
756
|
+
msgstr "Mensagem"
|
645
757
|
|
646
758
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:23
|
647
759
|
msgid "Nothing to show"
|
648
|
-
msgstr ""
|
760
|
+
msgstr "Nada para exibir"
|
649
761
|
|
650
762
|
#: ../db/seeds.d/90_notification_blueprints.rb:5
|
651
763
|
msgid "Jobs"
|
652
|
-
msgstr ""
|
764
|
+
msgstr "Trabalhos"
|
653
765
|
|
654
766
|
#: ../db/seeds.d/90_notification_blueprints.rb:7
|
655
|
-
msgid "
|
767
|
+
msgid ""
|
768
|
+
"Insights remediation on %{hosts_count} host(s) has finished successfully"
|
656
769
|
msgstr ""
|
770
|
+
"A remediação de insights no(s) host(s) %{hosts_count} foi concluída com "
|
771
|
+
"êxito"
|
657
772
|
|
658
773
|
#: ../lib/foreman_ansible/register.rb:94
|
659
774
|
msgid "Roles"
|
660
|
-
msgstr ""
|
775
|
+
msgstr "Funções"
|
661
776
|
|
662
777
|
#: ../lib/foreman_ansible/remote_execution.rb:20
|
663
778
|
msgid "Run Ansible roles"
|
664
|
-
msgstr ""
|
779
|
+
msgstr "Executar funções do Ansible"
|
665
780
|
|
666
781
|
#: ../lib/foreman_ansible/remote_execution.rb:21
|
667
|
-
msgid "
|
782
|
+
msgid ""
|
783
|
+
"Runs an Ansible playbook which contains all the roles defined for a host"
|
668
784
|
msgstr ""
|
785
|
+
"Executa um playbook do Ansible que contém todas as funções definidas por um "
|
786
|
+
"host"
|
669
787
|
|
670
788
|
#: ../lib/foreman_ansible/remote_execution.rb:27
|
671
789
|
msgid "Ansible: Run Insights maintenance plan"
|
672
|
-
msgstr ""
|
790
|
+
msgstr "Ansible: executar plano de manutenção de insights"
|
673
791
|
|
674
792
|
#: ../lib/foreman_ansible/remote_execution.rb:28
|
675
|
-
msgid "
|
793
|
+
msgid ""
|
794
|
+
"Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
676
795
|
msgstr ""
|
796
|
+
"Executa um determinado plano de manutenção a partir do Red Hat Access "
|
797
|
+
"Insights dada uma ID."
|
677
798
|
|
678
799
|
#: action_names.rb:2
|
679
|
-
msgid "
|
680
|
-
msgstr ""
|
800
|
+
msgid "Remote action:"
|
801
|
+
msgstr "Ação remota:"
|
681
802
|
|
682
803
|
#: action_names.rb:3
|
683
|
-
msgid "
|
684
|
-
msgstr ""
|
804
|
+
msgid "Import Puppet classes"
|
805
|
+
msgstr "Importar classes de Puppet"
|
685
806
|
|
686
807
|
#: action_names.rb:4
|
687
|
-
msgid "Import
|
688
|
-
msgstr ""
|
808
|
+
msgid "Import facts"
|
809
|
+
msgstr "Importar fatos"
|
689
810
|
|
690
811
|
#: action_names.rb:5
|
691
|
-
msgid "
|
692
|
-
msgstr ""
|
812
|
+
msgid "Action with sub plans"
|
813
|
+
msgstr "Ação com subplanos"
|
693
814
|
|
694
815
|
#: gemspec.rb:2
|
695
816
|
msgid "Ansible support in Foreman"
|
696
|
-
msgstr ""
|
817
|
+
msgstr "Suporte do Ansible no Foreman"
|