foreman_puppet 1.0.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb +14 -16
  3. data/app/controllers/concerns/foreman_puppet/{api/import_puppetclasses_common_controller.rb → extensions/api_smart_proxies_controller.rb} +9 -3
  4. data/app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb +23 -1
  5. data/app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb +15 -17
  6. data/app/controllers/concerns/foreman_puppet/extensions/hostgroups_controller_extensions.rb +3 -1
  7. data/app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb +0 -1
  8. data/app/controllers/concerns/foreman_puppet/extensions/parameters_host.rb +41 -32
  9. data/app/controllers/concerns/foreman_puppet/extensions/parameters_hostgroup.rb +37 -34
  10. data/app/controllers/foreman_puppet/api/v2/environments_controller.rb +0 -1
  11. data/app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb +1 -1
  12. data/app/controllers/foreman_puppet/puppetclasses_controller.rb +1 -1
  13. data/app/helpers/foreman_puppet/environments_helper.rb +1 -1
  14. data/app/helpers/foreman_puppet/hosts_and_hostgroups_helper.rb +0 -5
  15. data/app/helpers/foreman_puppet/hosts_helper.rb +6 -10
  16. data/app/models/concerns/foreman_puppet/extensions/host.rb +2 -16
  17. data/app/models/concerns/foreman_puppet/extensions/hostgroup.rb +2 -7
  18. data/app/models/concerns/foreman_puppet/extensions/provisioning_template.rb +7 -12
  19. data/app/models/concerns/foreman_puppet/extensions/template_combination.rb +5 -10
  20. data/app/models/foreman_puppet/host_puppet_facet.rb +1 -1
  21. data/app/models/foreman_puppet/hostgroup_puppet_facet.rb +2 -0
  22. data/app/services/concerns/foreman_puppet/extensions/host_counter.rb +17 -0
  23. data/app/services/foreman_puppet/puppet_class_importer.rb +0 -6
  24. data/app/views/foreman_puppet/api/v2/host_puppet_facets/host_list.json.rabl +3 -0
  25. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/base.json.rabl +2 -0
  26. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/hostgroup_list.json.rabl +3 -0
  27. data/app/views/foreman_puppet/config_groups/index.html.erb +1 -1
  28. data/config/api_routes.rb +1 -9
  29. data/config/initializers/api_reroute.rb +73 -5
  30. data/db/migrate/20101121140000_add_environment_to_template_combinations.foreman_puppet.rb +1 -1
  31. data/db/migrate/20200803113803_migrate_environment_to_puppet_facet.foreman_puppet.rb +2 -0
  32. data/db/migrate/20200803113903_migrate_host_type_in_host_config_groups.foreman_puppet.rb +36 -20
  33. data/db/migrate/20201125113903_migrate_puppetclasses_to_facets.foreman_puppet.rb +0 -8
  34. data/db/migrate/20210924103241_remove_katello_id_from_environments.foreman_puppet.rb +5 -0
  35. data/db/migrate/20211111125003_drop_puppetclasses_direct_references.foreman_puppet.rb +11 -0
  36. data/db/migrate/20211112130803_cleanup_environment_from_core_tables.foreman_puppet.rb +10 -0
  37. data/db/migrate_foreman/{20090722141107_create_environments.rb → 20090722141107_create_environments.foreman_puppet.rb} +3 -3
  38. data/db/migrate_foreman/20090802062223_create_puppetclasses.foreman_puppet.rb +29 -0
  39. data/db/migrate_foreman/20090905150132_create_hostgroups_puppetclasses.foreman_puppet.rb +12 -0
  40. data/db/migrate_foreman/20110412103238_remove_unused_fields_from_puppet_classes.foreman_puppet.rb +9 -0
  41. data/db/migrate_foreman/20110712070522_create_host_class.foreman_puppet.rb +11 -0
  42. data/db/migrate_foreman/20120824142048_add_some_indexes.foreman_puppet.rb +21 -0
  43. data/db/migrate_foreman/{20120905095532_create_environment_classes.rb → 20120905095532_create_environment_classes.foreman_puppet.rb} +2 -2
  44. data/db/migrate_foreman/20121018152459_create_hostgroup_classes.foreman_puppet.rb +11 -0
  45. data/db/migrate_foreman/{20140407161817_create_config_groups.rb → 20140407161817_create_config_groups.foreman_puppet.rb} +0 -0
  46. data/db/migrate_foreman/{20140407162007_create_config_group_classes.rb → 20140407162007_create_config_group_classes.foreman_puppet.rb} +0 -0
  47. data/db/migrate_foreman/{20140407162059_create_host_config_groups.rb → 20140407162059_create_host_config_groups.foreman_puppet.rb} +0 -0
  48. data/db/migrate_foreman/{20161205142618_delete_orphaned_smart_class_parameters.rb → 20161205142618_delete_orphaned_smart_class_parameters.foreman_puppet.rb} +1 -1
  49. data/db/migrate_foreman/{20170109115157_fix_lookup_key_auditable_type.rb → 20170109115157_fix_lookup_key_auditable_type.foreman_puppet.rb} +0 -0
  50. data/db/migrate_foreman/20180816134832_cast_lookup_key_values.foreman_puppet.rb +5 -0
  51. data/db/migrate_foreman/20180831115634_add_uniqueness_to_puppetclass_name.foreman_puppet.rb +24 -0
  52. data/db/migrate_foreman/{20181023112532_add_environment_puppetclass_id.rb → 20181023112532_add_environment_puppetclass_id.foreman_puppet.rb} +1 -1
  53. data/db/migrate_foreman/{20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.rb → 20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.foreman_puppet.rb} +0 -0
  54. data/lib/foreman_puppet/engine.rb +6 -36
  55. data/lib/foreman_puppet/register.rb +49 -45
  56. data/lib/foreman_puppet/version.rb +1 -1
  57. data/lib/foreman_puppet.rb +1 -6
  58. data/locale/ca/LC_MESSAGES/foreman_puppet.mo +0 -0
  59. data/locale/ca/foreman_puppet.po +760 -0
  60. data/locale/cs_CZ/LC_MESSAGES/foreman_puppet.mo +0 -0
  61. data/locale/cs_CZ/foreman_puppet.edit.po +1085 -0
  62. data/locale/cs_CZ/foreman_puppet.po +823 -0
  63. data/locale/cs_CZ/foreman_puppet.po.time_stamp +0 -0
  64. data/locale/de/LC_MESSAGES/foreman_puppet.mo +0 -0
  65. data/locale/de/foreman_puppet.po +844 -0
  66. data/locale/en/LC_MESSAGES/foreman_puppet.mo +0 -0
  67. data/locale/en/foreman_puppet.edit.po +317 -162
  68. data/locale/en/foreman_puppet.po +119 -8
  69. data/locale/en_GB/LC_MESSAGES/foreman_puppet.mo +0 -0
  70. data/locale/en_GB/foreman_puppet.po +820 -0
  71. data/locale/es/LC_MESSAGES/foreman_puppet.mo +0 -0
  72. data/locale/es/foreman_puppet.po +827 -0
  73. data/locale/foreman_puppet.pot +376 -205
  74. data/locale/fr/LC_MESSAGES/foreman_puppet.mo +0 -0
  75. data/locale/fr/foreman_puppet.po +835 -0
  76. data/locale/gemspec.rb +1 -1
  77. data/locale/gl/LC_MESSAGES/foreman_puppet.mo +0 -0
  78. data/locale/gl/foreman_puppet.po +818 -0
  79. data/locale/it/LC_MESSAGES/foreman_puppet.mo +0 -0
  80. data/locale/it/foreman_puppet.po +822 -0
  81. data/locale/ja/LC_MESSAGES/foreman_puppet.mo +0 -0
  82. data/locale/ja/foreman_puppet.po +830 -0
  83. data/locale/ko/LC_MESSAGES/foreman_puppet.mo +0 -0
  84. data/locale/ko/foreman_puppet.po +819 -0
  85. data/locale/nl_NL/LC_MESSAGES/foreman_puppet.mo +0 -0
  86. data/locale/nl_NL/foreman_puppet.po +823 -0
  87. data/locale/pl/LC_MESSAGES/foreman_puppet.mo +0 -0
  88. data/locale/pl/foreman_puppet.po +822 -0
  89. data/locale/pt_BR/LC_MESSAGES/foreman_puppet.mo +0 -0
  90. data/locale/pt_BR/foreman_puppet.po +826 -0
  91. data/locale/ru/LC_MESSAGES/foreman_puppet.mo +0 -0
  92. data/locale/ru/foreman_puppet.po +827 -0
  93. data/locale/sv_SE/LC_MESSAGES/foreman_puppet.mo +0 -0
  94. data/locale/sv_SE/foreman_puppet.po +822 -0
  95. data/locale/zh_CN/LC_MESSAGES/foreman_puppet.mo +0 -0
  96. data/locale/zh_CN/foreman_puppet.po +831 -0
  97. data/locale/zh_TW/LC_MESSAGES/foreman_puppet.mo +0 -0
  98. data/locale/zh_TW/foreman_puppet.po +821 -0
  99. data/package.json +8 -11
  100. data/test/controllers/foreman_puppet/api/v2/environments_controller_test.rb +0 -231
  101. data/test/controllers/foreman_puppet/api/v2/smart_proxies_controller_test.rb +255 -0
  102. data/test/controllers/foreman_puppet/environments_controller_test.rb +2 -2
  103. data/test/controllers/foreman_puppet/hosts_controller_test.rb +0 -1
  104. data/test/factories/foreman_puppet_factories.rb +0 -2
  105. data/test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb +70 -31
  106. data/test/integration/foreman_puppet/dashboard_js_test.rb +31 -0
  107. data/test/integration/foreman_puppet/host_js_test.rb +0 -1
  108. data/test/integration/foreman_puppet/puppetclass_js_test.rb +1 -1
  109. data/test/models/foreman_puppet/host_puppet_facet_test.rb +7 -1
  110. data/test/models/foreman_puppet/host_test.rb +26 -0
  111. data/test/models/foreman_puppet/user_test.rb +1 -5
  112. data/test/services/foreman_puppet/host_counter_test.rb +17 -0
  113. data/test/unit/foreman_puppet/puppet_class_importer_test.rb +1 -1
  114. data/webpack/src/Components/Environments/Welcome.js +2 -2
  115. metadata +73 -18
  116. data/db/migrate_foreman/20180816134832_cast_lookup_key_values.rb +0 -35
@@ -0,0 +1,818 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_puppet package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Carmela Rubiños <carmela.rubinos@gmail.com>, 2021
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: foreman_puppet 2.0.0.alpha.2\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "PO-Revision-Date: 2021-02-03 16:30+0000\n"
15
+ "Last-Translator: Carmela Rubiños <carmela.rubinos@gmail.com>, 2021\n"
16
+ "Language-Team: Galician (https://www.transifex.com/foreman/teams/114/gl/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: gl\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ msgid " Remove"
24
+ msgstr "Eliminar"
25
+
26
+ msgid "%s is not in environment"
27
+ msgstr ""
28
+
29
+ msgid "%s out of sync disabled"
30
+ msgstr ""
31
+
32
+ msgid "%{model} with id '%{id}' was not found"
33
+ msgstr ""
34
+
35
+ msgid "%{name} has %{num_tag} class"
36
+ msgid_plural "%{name} has %{num_tag} classes"
37
+ msgstr[0] ""
38
+ msgstr[1] ""
39
+
40
+ msgid "%{puppetclass} does not belong to the %{environment} environment"
41
+ msgstr ""
42
+
43
+ msgid "*Clear environment*"
44
+ msgstr "*Limpar entorno*"
45
+
46
+ msgid "*Inherit from host group*"
47
+ msgstr "*Herdado dende grupo de equipos*"
48
+
49
+ msgid ""
50
+ "<b>Description:</b> %{desc}<br/>\n"
51
+ " <b>Type:</b> %{type}<br/>\n"
52
+ " <b>Matcher:</b> %{matcher}<br/>\n"
53
+ " <b>Inherited value:</b> %{inherited_value}"
54
+ msgstr ""
55
+
56
+ msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
57
+ msgstr ""
58
+
59
+ msgid "Action with sub plans"
60
+ msgstr ""
61
+
62
+ msgid "Actions"
63
+ msgstr "Accións"
64
+
65
+ msgid "Add"
66
+ msgstr ""
67
+
68
+ msgid "Add Combination"
69
+ msgstr ""
70
+
71
+ msgid "Add a Puppet class to host"
72
+ msgstr ""
73
+
74
+ msgid "Add a Puppet class to host group"
75
+ msgstr ""
76
+
77
+ msgid "Add a template combination"
78
+ msgstr ""
79
+
80
+ msgid "Add:"
81
+ msgstr "Engadir:"
82
+
83
+ msgid "All environments - (not filtered)"
84
+ msgstr ""
85
+
86
+ msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
87
+ msgstr ""
88
+
89
+ msgid "Available Classes"
90
+ msgstr "Clases disponibles"
91
+
92
+ msgid "Available Config Groups"
93
+ msgstr ""
94
+
95
+ msgid "Can't find a valid Foreman Proxy with a Puppet feature"
96
+ msgstr "Non se atopa un Proxy Foreman con características de Puppet habilitadas"
97
+
98
+ msgid "Can't find a valid Proxy with a Puppet feature"
99
+ msgstr ""
100
+
101
+ msgid "Cancel"
102
+ msgstr "Cancelar"
103
+
104
+ msgid "Change Environment"
105
+ msgstr "Cambiar Entorno"
106
+
107
+ msgid "Change Puppet Master"
108
+ msgstr ""
109
+
110
+ msgid "Changed environments"
111
+ msgstr ""
112
+
113
+ msgid "Check/Uncheck all"
114
+ msgstr ""
115
+
116
+ msgid "Check/Uncheck all %s changes"
117
+ msgstr ""
118
+
119
+ msgid "Check/Uncheck new"
120
+ msgstr ""
121
+
122
+ msgid "Check/Uncheck obsolete"
123
+ msgstr ""
124
+
125
+ msgid "Check/Uncheck updated"
126
+ msgstr ""
127
+
128
+ msgid "Classes"
129
+ msgstr "Clases"
130
+
131
+ msgid "Click to add %s"
132
+ msgstr "Click para engadir %s"
133
+
134
+ msgid "Click to remove %s"
135
+ msgstr "Click para eliminar %s"
136
+
137
+ msgid "Click to remove config group"
138
+ msgstr ""
139
+
140
+ msgid "Config Groups"
141
+ msgstr ""
142
+
143
+ msgid "Config Management"
144
+ msgstr ""
145
+
146
+ msgid "Create Config Group"
147
+ msgstr ""
148
+
149
+ msgid "Create Environment"
150
+ msgstr ""
151
+
152
+ msgid "Create Puppet Environment"
153
+ msgstr ""
154
+
155
+ msgid "Create a Puppet class"
156
+ msgstr ""
157
+
158
+ msgid "Create a config group"
159
+ msgstr ""
160
+
161
+ msgid "Create an environment"
162
+ msgstr ""
163
+
164
+ msgid "Create an override value for a specific smart class parameter"
165
+ msgstr ""
166
+
167
+ msgid "Default Puppet environment"
168
+ msgstr ""
169
+
170
+ msgid "Default value"
171
+ msgstr "Valor predeterminado"
172
+
173
+ msgid "Delete %s?"
174
+ msgstr "¿Borrar %s?"
175
+
176
+ msgid "Delete a Puppet class"
177
+ msgstr ""
178
+
179
+ msgid "Delete a config group"
180
+ msgstr ""
181
+
182
+ msgid "Delete an environment"
183
+ msgstr ""
184
+
185
+ msgid "Delete an override value for a specific smart class parameter"
186
+ msgstr ""
187
+
188
+ msgid "Deleted environment"
189
+ msgstr "Entorno eliminado"
190
+
191
+ msgid "Deleted environment %{env} and %{pcs}"
192
+ msgstr "Eliminado entorno %{env} e %{pcs}"
193
+
194
+ msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
195
+ msgstr ""
196
+
197
+ msgid "Deprecated in favor of host/puppet_attributes/environment_id"
198
+ msgstr ""
199
+
200
+ msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
201
+ msgstr ""
202
+
203
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
204
+ msgstr ""
205
+
206
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
207
+ msgstr ""
208
+
209
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
210
+ msgstr ""
211
+
212
+ msgid "Description of smart class"
213
+ msgstr ""
214
+
215
+ msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
216
+ msgstr ""
217
+
218
+ msgid "Display hidden values"
219
+ msgstr ""
220
+
221
+ msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
222
+ msgstr ""
223
+
224
+ msgid "ENC environment"
225
+ msgstr ""
226
+
227
+ msgid "Edit %s"
228
+ msgstr "Editar %s"
229
+
230
+ msgid "Edit Puppet Class %s"
231
+ msgstr "Editar Clase Puppet %s"
232
+
233
+ msgid "Empty environment"
234
+ msgstr "Entorno baleiro"
235
+
236
+ msgid "Environment"
237
+ msgstr "Entorno"
238
+
239
+ msgid "Environment only"
240
+ msgstr "Solo Entorno"
241
+
242
+ msgid "Environments"
243
+ msgstr "Entornos"
244
+
245
+ msgid "Environment|Name"
246
+ msgstr "Nome"
247
+
248
+ msgid "Facts"
249
+ msgstr "Datos"
250
+
251
+ msgid "Failed to import %{klass} for %{name}: doesn't exists in our database - ignoring"
252
+ msgstr "Fallo ao importar %{klass} para %{name}: non existe na base de datos - ignorando"
253
+
254
+ msgid "Failed to set %{proxy_type} proxy for %{host}."
255
+ msgstr ""
256
+
257
+ msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
258
+ msgstr ""
259
+
260
+ msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
261
+ msgstr ""
262
+
263
+ msgid "Filter by name"
264
+ msgstr ""
265
+
266
+ msgid "Filter classes"
267
+ msgstr "Clases de filtro"
268
+
269
+ msgid "Foreman will default to this puppet environment if it cannot auto detect one"
270
+ msgstr ""
271
+
272
+ msgid "Foreman will explicitly set the puppet environment in the ENC yaml output. This will avoid conflicts between the environment in puppet.conf and the environment set in Foreman"
273
+ msgstr ""
274
+
275
+ msgid "Foreman will not send this parameter in classification output"
276
+ msgstr ""
277
+
278
+ msgid "Foreman will not send this parameter in classification output.Puppet will use the value defined in the Puppet manifest for this parameter"
279
+ msgstr ""
280
+
281
+ msgid "Foreman will update a host's environment from its facts"
282
+ msgstr ""
283
+
284
+ msgid "General"
285
+ msgstr ""
286
+
287
+ msgid "Host Groups"
288
+ msgstr "Grupos de Equipos"
289
+
290
+ msgid "Host group and Environment"
291
+ msgstr "Grupo de Equipos e Entorno"
292
+
293
+ msgid "Host group only"
294
+ msgstr "Solo Grupo de Equipos"
295
+
296
+ msgid "Host groups"
297
+ msgstr "Grupo de Equipos"
298
+
299
+ msgid "Hostgroup"
300
+ msgstr "Grupo de Equipos"
301
+
302
+ msgid "Hosts"
303
+ msgstr "Equipos"
304
+
305
+ msgid "Hosts managed:"
306
+ msgstr ""
307
+
308
+ msgid "ID of Puppet class"
309
+ msgstr ""
310
+
311
+ msgid "ID of Puppet environment"
312
+ msgstr ""
313
+
314
+ msgid "ID of Puppetclass"
315
+ msgstr ""
316
+
317
+ msgid "ID of associated puppet Environment"
318
+ msgstr ""
319
+
320
+ msgid "ID of environment"
321
+ msgstr ""
322
+
323
+ msgid "ID of host"
324
+ msgstr ""
325
+
326
+ msgid "ID of host group"
327
+ msgstr ""
328
+
329
+ msgid "ID of puppet environment"
330
+ msgstr ""
331
+
332
+ msgid "IDs of associated ConfigGroups"
333
+ msgstr ""
334
+
335
+ msgid "IDs of associated Puppetclasses"
336
+ msgstr ""
337
+
338
+ msgid "If true, will raise an error if there is no default value and no matcher provide a value"
339
+ msgstr ""
340
+
341
+ msgid "Ignored classes in the environments: %s"
342
+ msgstr ""
343
+
344
+ msgid "Ignored environment"
345
+ msgstr ""
346
+
347
+ msgid "Ignored environment names resulting in booleans found. Please quote strings like true/false and yes/no in config/ignored_environments.yml"
348
+ msgstr ""
349
+
350
+ msgid "Ignored environments: %s"
351
+ msgstr ""
352
+
353
+ msgid "Ignored:"
354
+ msgstr ""
355
+
356
+ msgid "Import"
357
+ msgstr "Importar"
358
+
359
+ msgid "Import Puppet classes"
360
+ msgstr ""
361
+
362
+ msgid "Import classes from %s"
363
+ msgstr ""
364
+
365
+ msgid "Import environments from %s"
366
+ msgstr ""
367
+
368
+ msgid "Import facts"
369
+ msgstr ""
370
+
371
+ msgid "Import puppet classes from puppet proxy"
372
+ msgstr ""
373
+
374
+ msgid "Import puppet classes from puppet proxy for an environment"
375
+ msgstr ""
376
+
377
+ msgid "Include default value when merging all matching values"
378
+ msgstr ""
379
+
380
+ msgid "Included Classes"
381
+ msgstr "Clases incluidas"
382
+
383
+ msgid "Included Config Groups"
384
+ msgstr ""
385
+
386
+ msgid "Inherited Classes from %s"
387
+ msgstr ""
388
+
389
+ msgid "Invalid proxy selected!"
390
+ msgstr ""
391
+
392
+ msgid "List all Puppet class IDs for host"
393
+ msgstr ""
394
+
395
+ msgid "List all Puppet class IDs for host group"
396
+ msgstr ""
397
+
398
+ msgid "List all Puppet classes"
399
+ msgstr ""
400
+
401
+ msgid "List all Puppet classes for a host"
402
+ msgstr ""
403
+
404
+ msgid "List all Puppet classes for a host group"
405
+ msgstr ""
406
+
407
+ msgid "List all Puppet classes for an environment"
408
+ msgstr ""
409
+
410
+ msgid "List all environments"
411
+ msgstr ""
412
+
413
+ msgid "List all host groups for a Puppet class"
414
+ msgstr ""
415
+
416
+ msgid "List all smart class parameters"
417
+ msgstr ""
418
+
419
+ msgid "List environments of Puppet class"
420
+ msgstr ""
421
+
422
+ msgid "List environments per location"
423
+ msgstr ""
424
+
425
+ msgid "List environments per organization"
426
+ msgstr ""
427
+
428
+ msgid "List hosts per environment"
429
+ msgstr ""
430
+
431
+ msgid "List of config groups"
432
+ msgstr ""
433
+
434
+ msgid "List of override values for a specific smart class parameter"
435
+ msgstr ""
436
+
437
+ msgid "List of smart class parameters for a specific Puppet class"
438
+ msgstr ""
439
+
440
+ msgid "List of smart class parameters for a specific environment"
441
+ msgstr ""
442
+
443
+ msgid "List of smart class parameters for a specific environment/Puppet class combination"
444
+ msgstr ""
445
+
446
+ msgid "List of smart class parameters for a specific host"
447
+ msgstr ""
448
+
449
+ msgid "List of smart class parameters for a specific host group"
450
+ msgstr ""
451
+
452
+ msgid "List template combination"
453
+ msgstr ""
454
+
455
+ msgid "Loading parameters..."
456
+ msgstr "Cargando parámetros..."
457
+
458
+ msgid "Locations"
459
+ msgstr "Lugares"
460
+
461
+ msgid "Merge all matching values (only array/hash type)"
462
+ msgstr ""
463
+
464
+ msgid "Name"
465
+ msgstr "Nome"
466
+
467
+ msgid "New"
468
+ msgstr "Novo"
469
+
470
+ msgid "No changes to your environments detected"
471
+ msgstr ""
472
+
473
+ msgid "No environment selected!"
474
+ msgstr "Ningún entorno seleccionado!"
475
+
476
+ msgid "No environments found"
477
+ msgstr ""
478
+
479
+ msgid "No parameters to override for Puppet class %s"
480
+ msgstr ""
481
+
482
+ msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
483
+ msgstr ""
484
+
485
+ msgid "No proxy selected!"
486
+ msgstr ""
487
+
488
+ msgid "No smart proxy was found to import environments from, ensure that at least one smart proxy is registered with the 'puppet' feature"
489
+ msgstr ""
490
+
491
+ msgid "None"
492
+ msgstr "Ningún"
493
+
494
+ msgid "Not authorized to edit classes"
495
+ msgstr "Non autorizado para editar clases"
496
+
497
+ msgid "Notice"
498
+ msgstr "Aviso"
499
+
500
+ msgid "Number of Overrides"
501
+ msgstr ""
502
+
503
+ msgid "Number of classes"
504
+ msgstr ""
505
+
506
+ msgid "Obsolete"
507
+ msgstr ""
508
+
509
+ msgid "Omit"
510
+ msgstr ""
511
+
512
+ msgid "Omit from classification output"
513
+ msgstr ""
514
+
515
+ msgid "Operating System"
516
+ msgstr "Sistema Operativo"
517
+
518
+ msgid "Operating system default"
519
+ msgstr "Sistema Operativo predeterminado"
520
+
521
+ msgid "Operation"
522
+ msgstr "Operación"
523
+
524
+ msgid "Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolete'that is used to limit the imported Puppet classes"
525
+ msgstr ""
526
+
527
+ msgid "Optional parameter without value.<br/><i>Still managed by Foreman, the value will be empty.</i><br/>"
528
+ msgstr ""
529
+
530
+ msgid "Organizations"
531
+ msgstr "Organizacións"
532
+
533
+ msgid "Original value info"
534
+ msgstr ""
535
+
536
+ msgid "Overridden"
537
+ msgstr ""
538
+
539
+ msgid "Override all parameters"
540
+ msgstr ""
541
+
542
+ msgid "Override match"
543
+ msgstr ""
544
+
545
+ msgid "Override this value"
546
+ msgstr "Sobrescribir este valor"
547
+
548
+ msgid "Override value, required if omit is false"
549
+ msgstr ""
550
+
551
+ msgid "Parameter"
552
+ msgstr "Parámetro"
553
+
554
+ msgid "Parameterized class support permits detecting, importing, and supplying parameters directly to classes which support it, via the ENC and depending on a set of rules (Smart Matchers)."
555
+ msgstr ""
556
+
557
+ msgid "Parameters"
558
+ msgstr "Parámetros"
559
+
560
+ msgid "Please select an environment first"
561
+ msgstr "Por favor, selecciona primeiro un entorno"
562
+
563
+ msgid "Puppet"
564
+ msgstr ""
565
+
566
+ msgid "Puppet CA"
567
+ msgstr "CA Puppet"
568
+
569
+ msgid "Puppet Class"
570
+ msgstr "Clase de Puppet"
571
+
572
+ msgid "Puppet Class Parameters"
573
+ msgstr ""
574
+
575
+ msgid "Puppet Classes"
576
+ msgstr "Clases de Puppet"
577
+
578
+ msgid "Puppet ENC"
579
+ msgstr ""
580
+
581
+ msgid "Puppet Environment"
582
+ msgstr "Entorno Puppet"
583
+
584
+ msgid "Puppet Environments"
585
+ msgstr "Entornos Puppet"
586
+
587
+ msgid "Puppet Modules"
588
+ msgstr "Módulos Puppet"
589
+
590
+ msgid "Puppet YAML"
591
+ msgstr ""
592
+
593
+ msgid "Puppet environments"
594
+ msgstr "Entornos Puppet"
595
+
596
+ msgid "Puppet external nodes YAML dump"
597
+ msgstr "Volcado YAML de nodos externos puppet"
598
+
599
+ msgid "Puppet interval"
600
+ msgstr ""
601
+
602
+ msgid "Puppet parameter"
603
+ msgstr ""
604
+
605
+ msgid "Puppetclass|Name"
606
+ msgstr "Nome"
607
+
608
+ msgid "Remote action:"
609
+ msgstr ""
610
+
611
+ msgid "Remove"
612
+ msgstr ""
613
+
614
+ msgid "Remove Combination"
615
+ msgstr ""
616
+
617
+ msgid "Remove a Puppet class from host"
618
+ msgstr ""
619
+
620
+ msgid "Remove a Puppet class from host group"
621
+ msgstr ""
622
+
623
+ msgid "Remove duplicate values (only array type)"
624
+ msgstr ""
625
+
626
+ msgid "Remove this override"
627
+ msgstr ""
628
+
629
+ msgid "Remove:"
630
+ msgstr "Eliminar:"
631
+
632
+ msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
633
+ msgstr ""
634
+
635
+ msgid "Select environment"
636
+ msgstr "Seleccionar entorno"
637
+
638
+ msgid "Select the changes you want to apply to Foreman"
639
+ msgstr ""
640
+
641
+ msgid "Set parameters to defaults"
642
+ msgstr ""
643
+
644
+ msgid "Show a Puppet class"
645
+ msgstr ""
646
+
647
+ msgid "Show a Puppet class for a host group"
648
+ msgstr ""
649
+
650
+ msgid "Show a Puppet class for an environment"
651
+ msgstr ""
652
+
653
+ msgid "Show a Puppet class for host"
654
+ msgstr ""
655
+
656
+ msgid "Show a config group"
657
+ msgstr ""
658
+
659
+ msgid "Show a smart class parameter"
660
+ msgstr ""
661
+
662
+ msgid "Show an environment"
663
+ msgstr ""
664
+
665
+ msgid "Show an override value for a specific smart class parameter"
666
+ msgstr ""
667
+
668
+ msgid "Show template combination"
669
+ msgstr ""
670
+
671
+ msgid "Smart Class Parameter"
672
+ msgstr "Parámetro de Clase Intelixente"
673
+
674
+ msgid "Smart Class Parameters"
675
+ msgstr ""
676
+
677
+ msgid "Successfully overridden all parameters of Puppet class %s"
678
+ msgstr ""
679
+
680
+ msgid "Successfully reset all parameters of Puppet class %s to their default values"
681
+ msgstr ""
682
+
683
+ msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
684
+ msgstr ""
685
+
686
+ msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
687
+ msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
688
+ msgstr[0] ""
689
+ msgstr[1] ""
690
+
691
+ msgid "The %{proxy_type} proxy of the selected hosts was cleared."
692
+ msgstr ""
693
+
694
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
695
+ msgstr ""
696
+
697
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
698
+ msgstr ""
699
+
700
+ msgid "The class could not be saved because of an error in one of the class parameters."
701
+ msgstr ""
702
+
703
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
704
+ msgstr "A última entrada, Sistema Operativo predeterminado, pódese configurar editando a páxina %s."
705
+
706
+ msgid "The order in which values are resolved"
707
+ msgstr "A orde na cual se resolven os valores"
708
+
709
+ msgid "The requested environment cannot be found."
710
+ msgstr ""
711
+
712
+ msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
713
+ msgstr ""
714
+
715
+ msgid "This Puppet class has no parameters in its signature."
716
+ msgstr "Esta clase de Puppet non ten parámetros na súa firma."
717
+
718
+ msgid "This will reset parameters of the class %s to their default values. Continue?"
719
+ msgstr ""
720
+
721
+ msgid "This will set all parameters of the class %s as overridden. Continue?"
722
+ msgstr ""
723
+
724
+ msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
725
+ msgstr "Para actualiza-la firma de clase, selecciona \"Importar\" na páxina de Clases de Puppet."
726
+
727
+ msgid "Toggle"
728
+ msgstr ""
729
+
730
+ msgid "Total"
731
+ msgstr "Total"
732
+
733
+ msgid "Types of validation values"
734
+ msgstr ""
735
+
736
+ msgid "Types of variable values"
737
+ msgstr ""
738
+
739
+ msgid "Unable to generate output, Check log files"
740
+ msgstr ""
741
+
742
+ msgid "Update"
743
+ msgstr "Actualizar"
744
+
745
+ msgid "Update a Puppet class"
746
+ msgstr ""
747
+
748
+ msgid "Update a config group"
749
+ msgstr ""
750
+
751
+ msgid "Update a smart class parameter"
752
+ msgstr ""
753
+
754
+ msgid "Update an environment"
755
+ msgstr ""
756
+
757
+ msgid "Update an override value for a specific smart class parameter"
758
+ msgstr ""
759
+
760
+ msgid "Update environment from facts"
761
+ msgstr ""
762
+
763
+ msgid "Update template combination"
764
+ msgstr ""
765
+
766
+ msgid "Update:"
767
+ msgstr "Actualizar:"
768
+
769
+ msgid "Updated"
770
+ msgstr ""
771
+
772
+ msgid "Updated hosts: changed environment"
773
+ msgstr "Equipos actualizados: cambiado o entorno"
774
+
775
+ msgid "Used to enforce certain values for the parameter values"
776
+ msgstr ""
777
+
778
+ msgid "Valid Host Group and Environment Combinations"
779
+ msgstr ""
780
+
781
+ msgid "Value"
782
+ msgstr "Valor"
783
+
784
+ msgid "Value to use when there is no match"
785
+ msgstr ""
786
+
787
+ msgid ""
788
+ "When a Host requests a template (e.g. during provisioning), Foreman \\\n"
789
+ " will select the best match from the available templates of that type, in the \\\n"
790
+ " following order:"
791
+ msgstr ""
792
+
793
+ msgid ""
794
+ "When editing a template, you must assign a list \\\n"
795
+ " of operating systems which this template can be used with. Optionally, you can \\\n"
796
+ " restrict a template to a list of host groups and/or environments."
797
+ msgstr ""
798
+
799
+ msgid "When enabled the parameter is hidden in the UI"
800
+ msgstr ""
801
+
802
+ msgid "Whether the smart class parameter value is managed by Foreman"
803
+ msgstr ""
804
+
805
+ msgid "belongs to config group"
806
+ msgstr ""
807
+
808
+ msgid "environment id"
809
+ msgstr ""
810
+
811
+ msgid "included already from parent"
812
+ msgstr ""
813
+
814
+ msgid "must be true to edit the parameter"
815
+ msgstr ""
816
+
817
+ msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
818
+ msgstr ""