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,823 @@
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
+ # mhulan <mhulan@redhat.com>, 2021
8
+ # Ondřej Ezr <ezrik12@gmail.com>, 2021
9
+ # Lukáš Zapletal, 2021
10
+ # Pavel Borecki <pavel.borecki@gmail.com>, 2021
11
+ #
12
+ #, fuzzy
13
+ msgid ""
14
+ msgstr ""
15
+ "Project-Id-Version: foreman_puppet 2.0.0.alpha.2\n"
16
+ "Report-Msgid-Bugs-To: \n"
17
+ "PO-Revision-Date: 2021-02-03 16:30+0000\n"
18
+ "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2021\n"
19
+ "Language-Team: Czech (Czech Republic) (https://www.transifex.com/foreman/teams"
20
+ "/114/cs_CZ/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: cs_CZ\n"
25
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
26
+ "4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
27
+
28
+ msgid " Remove"
29
+ msgstr "Odebrat"
30
+
31
+ msgid "%s is not in environment"
32
+ msgstr "%s není prostředí"
33
+
34
+ msgid "%s out of sync disabled"
35
+ msgstr ""
36
+
37
+ msgid "%{model} with id '%{id}' was not found"
38
+ msgstr ""
39
+
40
+ msgid "%{name} has %{num_tag} class"
41
+ msgid_plural "%{name} has %{num_tag} classes"
42
+ msgstr[0] ""
43
+ msgstr[1] ""
44
+
45
+ msgid "%{puppetclass} does not belong to the %{environment} environment"
46
+ msgstr ""
47
+
48
+ msgid "*Clear environment*"
49
+ msgstr "*Vyčistit prostředí*"
50
+
51
+ msgid "*Inherit from host group*"
52
+ msgstr "*Převzít ze skupiny stroje*"
53
+
54
+ msgid ""
55
+ "<b>Description:</b> %{desc}<br/>\n"
56
+ " <b>Type:</b> %{type}<br/>\n"
57
+ " <b>Matcher:</b> %{matcher}<br/>\n"
58
+ " <b>Inherited value:</b> %{inherited_value}"
59
+ msgstr ""
60
+
61
+ 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."
62
+ msgstr ""
63
+
64
+ msgid "Action with sub plans"
65
+ msgstr "Akce s dílčími plány"
66
+
67
+ msgid "Actions"
68
+ msgstr "Akce"
69
+
70
+ msgid "Add"
71
+ msgstr "Přidat"
72
+
73
+ msgid "Add Combination"
74
+ msgstr "Přidat kombinaci"
75
+
76
+ msgid "Add a Puppet class to host"
77
+ msgstr "Přidat hostiteli Puppet třídu"
78
+
79
+ msgid "Add a Puppet class to host group"
80
+ msgstr "Přidat skupině hostitelů puppet třídu"
81
+
82
+ msgid "Add a template combination"
83
+ msgstr "Přidat kombinaci šablony"
84
+
85
+ msgid "Add:"
86
+ msgstr "Přidat:"
87
+
88
+ msgid "All environments - (not filtered)"
89
+ msgstr ""
90
+
91
+ msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
92
+ msgstr ""
93
+
94
+ msgid "Available Classes"
95
+ msgstr "Třídy k dispozici"
96
+
97
+ msgid "Available Config Groups"
98
+ msgstr "Skupiny nastavení k dispozici"
99
+
100
+ msgid "Can't find a valid Foreman Proxy with a Puppet feature"
101
+ msgstr "Nedaří se nalézt platnou Foreman proxy s funkcí puppet"
102
+
103
+ msgid "Can't find a valid Proxy with a Puppet feature"
104
+ msgstr ""
105
+
106
+ msgid "Cancel"
107
+ msgstr "Storno"
108
+
109
+ msgid "Change Environment"
110
+ msgstr "Změnit prostředí"
111
+
112
+ msgid "Change Puppet Master"
113
+ msgstr ""
114
+
115
+ msgid "Changed environments"
116
+ msgstr "Změněná prostředí"
117
+
118
+ msgid "Check/Uncheck all"
119
+ msgstr "Zaškrtnout / zrušit zaškrtnutí všeho"
120
+
121
+ msgid "Check/Uncheck all %s changes"
122
+ msgstr "Zaškrtnout / zrušit zaškrtnutí %s změn"
123
+
124
+ msgid "Check/Uncheck new"
125
+ msgstr "Zaškrtnout / zrušit zaškrtnutí u nových"
126
+
127
+ msgid "Check/Uncheck obsolete"
128
+ msgstr "Zaškrtnout / zrušit zaškrtnutí zastaralých"
129
+
130
+ msgid "Check/Uncheck updated"
131
+ msgstr "Zaškrtnout / zrušit zaškrtnutí u aktualizováno"
132
+
133
+ msgid "Classes"
134
+ msgstr "Třídy"
135
+
136
+ msgid "Click to add %s"
137
+ msgstr "%s přidáte kliknutím"
138
+
139
+ msgid "Click to remove %s"
140
+ msgstr "%s odeberete kliknutím"
141
+
142
+ msgid "Click to remove config group"
143
+ msgstr "Kliknutím skupinu nastavení odeberete"
144
+
145
+ msgid "Config Groups"
146
+ msgstr ""
147
+
148
+ msgid "Config Management"
149
+ msgstr "Správa nastavení"
150
+
151
+ msgid "Create Config Group"
152
+ msgstr ""
153
+
154
+ msgid "Create Environment"
155
+ msgstr "Vytvořit prostředí"
156
+
157
+ msgid "Create Puppet Environment"
158
+ msgstr "Vytvořit puppet prostředí"
159
+
160
+ msgid "Create a Puppet class"
161
+ msgstr "Vytvořit puppet třídu"
162
+
163
+ msgid "Create a config group"
164
+ msgstr "Vytvořit skupinu nastavení"
165
+
166
+ msgid "Create an environment"
167
+ msgstr "Vytvořit prostředí"
168
+
169
+ msgid "Create an override value for a specific smart class parameter"
170
+ msgstr ""
171
+
172
+ msgid "Default Puppet environment"
173
+ msgstr ""
174
+
175
+ msgid "Default value"
176
+ msgstr "Výchozí hodnota"
177
+
178
+ msgid "Delete %s?"
179
+ msgstr "Smazat %s?"
180
+
181
+ msgid "Delete a Puppet class"
182
+ msgstr "Smazat Puppet třídu"
183
+
184
+ msgid "Delete a config group"
185
+ msgstr "Smazat skupinu nastavení"
186
+
187
+ msgid "Delete an environment"
188
+ msgstr "Smazat prostředí"
189
+
190
+ msgid "Delete an override value for a specific smart class parameter"
191
+ msgstr ""
192
+
193
+ msgid "Deleted environment"
194
+ msgstr "Smazat prostředí"
195
+
196
+ msgid "Deleted environment %{env} and %{pcs}"
197
+ msgstr "Smazané prostředí %{env} a %{pcs}"
198
+
199
+ msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
200
+ msgstr ""
201
+
202
+ msgid "Deprecated in favor of host/puppet_attributes/environment_id"
203
+ msgstr ""
204
+
205
+ msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
206
+ msgstr ""
207
+
208
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
209
+ msgstr ""
210
+
211
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
212
+ msgstr ""
213
+
214
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
215
+ msgstr ""
216
+
217
+ msgid "Description of smart class"
218
+ msgstr ""
219
+
220
+ msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
221
+ msgstr ""
222
+
223
+ msgid "Display hidden values"
224
+ msgstr "Zobrazit skryté hodnoty"
225
+
226
+ msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
227
+ msgstr ""
228
+
229
+ msgid "ENC environment"
230
+ msgstr "ENC prostředí"
231
+
232
+ msgid "Edit %s"
233
+ msgstr "Upravit %s"
234
+
235
+ msgid "Edit Puppet Class %s"
236
+ msgstr "Upravit puppet třídu %s"
237
+
238
+ msgid "Empty environment"
239
+ msgstr "Prázdné prostředí"
240
+
241
+ msgid "Environment"
242
+ msgstr "Prostředí"
243
+
244
+ msgid "Environment only"
245
+ msgstr "Pouze prostředí"
246
+
247
+ msgid "Environments"
248
+ msgstr "Prostředí"
249
+
250
+ msgid "Environment|Name"
251
+ msgstr "Environment|Název"
252
+
253
+ msgid "Facts"
254
+ msgstr "Fakta"
255
+
256
+ msgid "Failed to import %{klass} for %{name}: doesn't exists in our database - ignoring"
257
+ msgstr "Nepodařilo se importovat %{klass} pro %{name}: neexistuje v databázi – bude ignorováno"
258
+
259
+ msgid "Failed to set %{proxy_type} proxy for %{host}."
260
+ msgstr ""
261
+
262
+ msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
263
+ msgstr ""
264
+
265
+ msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
266
+ msgstr ""
267
+
268
+ msgid "Filter by name"
269
+ msgstr "Filtrovat podle názvu"
270
+
271
+ msgid "Filter classes"
272
+ msgstr "Filtrovat třídy"
273
+
274
+ msgid "Foreman will default to this puppet environment if it cannot auto detect one"
275
+ msgstr ""
276
+
277
+ 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"
278
+ msgstr ""
279
+
280
+ msgid "Foreman will not send this parameter in classification output"
281
+ msgstr ""
282
+
283
+ msgid "Foreman will not send this parameter in classification output.Puppet will use the value defined in the Puppet manifest for this parameter"
284
+ msgstr ""
285
+
286
+ msgid "Foreman will update a host's environment from its facts"
287
+ msgstr ""
288
+
289
+ msgid "General"
290
+ msgstr "Obecné"
291
+
292
+ msgid "Host Groups"
293
+ msgstr "Skupiny hostitelů"
294
+
295
+ msgid "Host group and Environment"
296
+ msgstr "Skupina hostitelů a prostředí"
297
+
298
+ msgid "Host group only"
299
+ msgstr "Pouze skupina hostitelů"
300
+
301
+ msgid "Host groups"
302
+ msgstr "Skupiny hostitelů"
303
+
304
+ msgid "Hostgroup"
305
+ msgstr ""
306
+
307
+ msgid "Hosts"
308
+ msgstr "Stroje"
309
+
310
+ msgid "Hosts managed:"
311
+ msgstr "Spravované stroje:"
312
+
313
+ msgid "ID of Puppet class"
314
+ msgstr "Identifikátor puppet třídy"
315
+
316
+ msgid "ID of Puppet environment"
317
+ msgstr ""
318
+
319
+ msgid "ID of Puppetclass"
320
+ msgstr ""
321
+
322
+ msgid "ID of associated puppet Environment"
323
+ msgstr ""
324
+
325
+ msgid "ID of environment"
326
+ msgstr "Identifikátor prostředí"
327
+
328
+ msgid "ID of host"
329
+ msgstr "Identifikátor stroje"
330
+
331
+ msgid "ID of host group"
332
+ msgstr "Identifikátor skupiny strojů"
333
+
334
+ msgid "ID of puppet environment"
335
+ msgstr ""
336
+
337
+ msgid "IDs of associated ConfigGroups"
338
+ msgstr ""
339
+
340
+ msgid "IDs of associated Puppetclasses"
341
+ msgstr ""
342
+
343
+ msgid "If true, will raise an error if there is no default value and no matcher provide a value"
344
+ msgstr ""
345
+
346
+ msgid "Ignored classes in the environments: %s"
347
+ msgstr ""
348
+
349
+ msgid "Ignored environment"
350
+ msgstr "Ignorované prostředí"
351
+
352
+ msgid "Ignored environment names resulting in booleans found. Please quote strings like true/false and yes/no in config/ignored_environments.yml"
353
+ msgstr ""
354
+
355
+ msgid "Ignored environments: %s"
356
+ msgstr "Ignorovaná prostředí: %s"
357
+
358
+ msgid "Ignored:"
359
+ msgstr "Ignorováno:"
360
+
361
+ msgid "Import"
362
+ msgstr "Import"
363
+
364
+ msgid "Import Puppet classes"
365
+ msgstr "Importovat Puppet třídy"
366
+
367
+ msgid "Import classes from %s"
368
+ msgstr "Importovat třídy z %s"
369
+
370
+ msgid "Import environments from %s"
371
+ msgstr ""
372
+
373
+ msgid "Import facts"
374
+ msgstr "Importovat fakta"
375
+
376
+ msgid "Import puppet classes from puppet proxy"
377
+ msgstr "Importovat puppet třídy z puppet proxy"
378
+
379
+ msgid "Import puppet classes from puppet proxy for an environment"
380
+ msgstr "Importovat puppet třídy z puppet proxy pro Environment"
381
+
382
+ msgid "Include default value when merging all matching values"
383
+ msgstr "Při slučování všech odpovídajících hodnota zahrnout výchozí hodnoty"
384
+
385
+ msgid "Included Classes"
386
+ msgstr "Obsažené třídy"
387
+
388
+ msgid "Included Config Groups"
389
+ msgstr "Včetně skupin nastavení"
390
+
391
+ msgid "Inherited Classes from %s"
392
+ msgstr ""
393
+
394
+ msgid "Invalid proxy selected!"
395
+ msgstr ""
396
+
397
+ msgid "List all Puppet class IDs for host"
398
+ msgstr "Vypsat všechny identifikátory Puppet tříd pro hostitele"
399
+
400
+ msgid "List all Puppet class IDs for host group"
401
+ msgstr ""
402
+
403
+ msgid "List all Puppet classes"
404
+ msgstr "Vypsat všechny puppet třídy"
405
+
406
+ msgid "List all Puppet classes for a host"
407
+ msgstr "Vypsat všechny Puppet třídy pro hostitele"
408
+
409
+ msgid "List all Puppet classes for a host group"
410
+ msgstr ""
411
+
412
+ msgid "List all Puppet classes for an environment"
413
+ msgstr "Vypsat všechny Puppet třídy pro prostředí"
414
+
415
+ msgid "List all environments"
416
+ msgstr "Vypsat všechny prostředí"
417
+
418
+ msgid "List all host groups for a Puppet class"
419
+ msgstr "Vypsat všechny skupiny strojů pro puppet třídu"
420
+
421
+ msgid "List all smart class parameters"
422
+ msgstr ""
423
+
424
+ msgid "List environments of Puppet class"
425
+ msgstr ""
426
+
427
+ msgid "List environments per location"
428
+ msgstr ""
429
+
430
+ msgid "List environments per organization"
431
+ msgstr ""
432
+
433
+ msgid "List hosts per environment"
434
+ msgstr ""
435
+
436
+ msgid "List of config groups"
437
+ msgstr "Seznam skupin nastavení"
438
+
439
+ msgid "List of override values for a specific smart class parameter"
440
+ msgstr ""
441
+
442
+ msgid "List of smart class parameters for a specific Puppet class"
443
+ msgstr ""
444
+
445
+ msgid "List of smart class parameters for a specific environment"
446
+ msgstr ""
447
+
448
+ msgid "List of smart class parameters for a specific environment/Puppet class combination"
449
+ msgstr ""
450
+
451
+ msgid "List of smart class parameters for a specific host"
452
+ msgstr ""
453
+
454
+ msgid "List of smart class parameters for a specific host group"
455
+ msgstr ""
456
+
457
+ msgid "List template combination"
458
+ msgstr ""
459
+
460
+ msgid "Loading parameters..."
461
+ msgstr "Načítání parametrů…"
462
+
463
+ msgid "Locations"
464
+ msgstr "Umístění"
465
+
466
+ msgid "Merge all matching values (only array/hash type)"
467
+ msgstr ""
468
+
469
+ msgid "Name"
470
+ msgstr "Název"
471
+
472
+ msgid "New"
473
+ msgstr "Nové"
474
+
475
+ msgid "No changes to your environments detected"
476
+ msgstr "Nezjištěny žádné změny ve vašich prostředích"
477
+
478
+ msgid "No environment selected!"
479
+ msgstr "Nevybráno prostředí!"
480
+
481
+ msgid "No environments found"
482
+ msgstr "Nebylo nalezeno žádné prostředí"
483
+
484
+ msgid "No parameters to override for Puppet class %s"
485
+ msgstr ""
486
+
487
+ msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
488
+ msgstr ""
489
+
490
+ msgid "No proxy selected!"
491
+ msgstr ""
492
+
493
+ msgid "No smart proxy was found to import environments from, ensure that at least one smart proxy is registered with the 'puppet' feature"
494
+ msgstr ""
495
+
496
+ msgid "None"
497
+ msgstr "Žádné"
498
+
499
+ msgid "Not authorized to edit classes"
500
+ msgstr "Neoprávněni upravovat třídy"
501
+
502
+ msgid "Notice"
503
+ msgstr "Upozornění"
504
+
505
+ msgid "Number of Overrides"
506
+ msgstr ""
507
+
508
+ msgid "Number of classes"
509
+ msgstr "Počet tříd"
510
+
511
+ msgid "Obsolete"
512
+ msgstr "Zastaralé"
513
+
514
+ msgid "Omit"
515
+ msgstr "Vynechat"
516
+
517
+ msgid "Omit from classification output"
518
+ msgstr ""
519
+
520
+ msgid "Operating System"
521
+ msgstr "Operační systém"
522
+
523
+ msgid "Operating system default"
524
+ msgstr "Výchozí operačnímu systému"
525
+
526
+ msgid "Operation"
527
+ msgstr "Operace"
528
+
529
+ msgid "Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolete'that is used to limit the imported Puppet classes"
530
+ msgstr ""
531
+
532
+ msgid "Optional parameter without value.<br/><i>Still managed by Foreman, the value will be empty.</i><br/>"
533
+ msgstr ""
534
+
535
+ msgid "Organizations"
536
+ msgstr "Organizace"
537
+
538
+ msgid "Original value info"
539
+ msgstr "Informace o původní hodnotě"
540
+
541
+ msgid "Overridden"
542
+ msgstr ""
543
+
544
+ msgid "Override all parameters"
545
+ msgstr "Přebít veškeré parametry"
546
+
547
+ msgid "Override match"
548
+ msgstr ""
549
+
550
+ msgid "Override this value"
551
+ msgstr "Přebít tuto hodnotu"
552
+
553
+ msgid "Override value, required if omit is false"
554
+ msgstr ""
555
+
556
+ msgid "Parameter"
557
+ msgstr "Parametr"
558
+
559
+ 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)."
560
+ msgstr ""
561
+
562
+ msgid "Parameters"
563
+ msgstr "Parametry"
564
+
565
+ msgid "Please select an environment first"
566
+ msgstr "Nejprve vyberte prostředí"
567
+
568
+ msgid "Puppet"
569
+ msgstr "Puppet"
570
+
571
+ msgid "Puppet CA"
572
+ msgstr "Certif. autorita pro Puppet"
573
+
574
+ msgid "Puppet Class"
575
+ msgstr "Puppet třída"
576
+
577
+ msgid "Puppet Class Parameters"
578
+ msgstr ""
579
+
580
+ msgid "Puppet Classes"
581
+ msgstr "Puppet třídy"
582
+
583
+ msgid "Puppet ENC"
584
+ msgstr ""
585
+
586
+ msgid "Puppet Environment"
587
+ msgstr "Puppet prostředí"
588
+
589
+ msgid "Puppet Environments"
590
+ msgstr "Puppet prostředí"
591
+
592
+ msgid "Puppet Modules"
593
+ msgstr "Puppet moduly"
594
+
595
+ msgid "Puppet YAML"
596
+ msgstr ""
597
+
598
+ msgid "Puppet environments"
599
+ msgstr "Puppet prostředí"
600
+
601
+ msgid "Puppet external nodes YAML dump"
602
+ msgstr ""
603
+
604
+ msgid "Puppet interval"
605
+ msgstr ""
606
+
607
+ msgid "Puppet parameter"
608
+ msgstr "Puppet parametr"
609
+
610
+ msgid "Puppetclass|Name"
611
+ msgstr "Puppetclass|Název"
612
+
613
+ msgid "Remote action:"
614
+ msgstr "Akce na protějšku:"
615
+
616
+ msgid "Remove"
617
+ msgstr "Odebrat"
618
+
619
+ msgid "Remove Combination"
620
+ msgstr "Odebrat kombinaci"
621
+
622
+ msgid "Remove a Puppet class from host"
623
+ msgstr ""
624
+
625
+ msgid "Remove a Puppet class from host group"
626
+ msgstr ""
627
+
628
+ msgid "Remove duplicate values (only array type)"
629
+ msgstr ""
630
+
631
+ msgid "Remove this override"
632
+ msgstr ""
633
+
634
+ msgid "Remove:"
635
+ msgstr "Odebrat:"
636
+
637
+ msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
638
+ msgstr ""
639
+
640
+ msgid "Select environment"
641
+ msgstr "Vybrat prostředí"
642
+
643
+ msgid "Select the changes you want to apply to Foreman"
644
+ msgstr "Vyberte změny které chcete uplatnit na Forman"
645
+
646
+ msgid "Set parameters to defaults"
647
+ msgstr ""
648
+
649
+ msgid "Show a Puppet class"
650
+ msgstr "Zobrazit puppet třídu"
651
+
652
+ msgid "Show a Puppet class for a host group"
653
+ msgstr ""
654
+
655
+ msgid "Show a Puppet class for an environment"
656
+ msgstr "Zobrazit Puppet třídu pro prostředí"
657
+
658
+ msgid "Show a Puppet class for host"
659
+ msgstr "Zobrazit Puppet třídu pro hostitele"
660
+
661
+ msgid "Show a config group"
662
+ msgstr "Zobrazit skupinu nastavení"
663
+
664
+ msgid "Show a smart class parameter"
665
+ msgstr ""
666
+
667
+ msgid "Show an environment"
668
+ msgstr "Zobrazit prostředí"
669
+
670
+ msgid "Show an override value for a specific smart class parameter"
671
+ msgstr ""
672
+
673
+ msgid "Show template combination"
674
+ msgstr "Zobrazit kombinaci šablony"
675
+
676
+ msgid "Smart Class Parameter"
677
+ msgstr ""
678
+
679
+ msgid "Smart Class Parameters"
680
+ msgstr ""
681
+
682
+ msgid "Successfully overridden all parameters of Puppet class %s"
683
+ msgstr ""
684
+
685
+ msgid "Successfully reset all parameters of Puppet class %s to their default values"
686
+ msgstr ""
687
+
688
+ msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
689
+ msgstr "Úspěšně aktualizována prostředí a Puppet třídy z instalace Puppet na disku"
690
+
691
+ msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
692
+ msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
693
+ msgstr[0] ""
694
+ msgstr[1] ""
695
+
696
+ msgid "The %{proxy_type} proxy of the selected hosts was cleared."
697
+ msgstr ""
698
+
699
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
700
+ msgstr ""
701
+
702
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
703
+ msgstr ""
704
+
705
+ msgid "The class could not be saved because of an error in one of the class parameters."
706
+ msgstr ""
707
+
708
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
709
+ msgstr ""
710
+
711
+ msgid "The order in which values are resolved"
712
+ msgstr "Pořadí ve kterém jsou hodnoty řešeny"
713
+
714
+ msgid "The requested environment cannot be found."
715
+ msgstr ""
716
+
717
+ msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
718
+ msgstr ""
719
+
720
+ msgid "This Puppet class has no parameters in its signature."
721
+ msgstr "Tato Puppet třída nemá žádné parametry ve svém podpisu."
722
+
723
+ msgid "This will reset parameters of the class %s to their default values. Continue?"
724
+ msgstr ""
725
+
726
+ msgid "This will set all parameters of the class %s as overridden. Continue?"
727
+ msgstr ""
728
+
729
+ msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
730
+ msgstr ""
731
+
732
+ msgid "Toggle"
733
+ msgstr "Přepnout"
734
+
735
+ msgid "Total"
736
+ msgstr "Celkem"
737
+
738
+ msgid "Types of validation values"
739
+ msgstr "Typy hodnot ověřování"
740
+
741
+ msgid "Types of variable values"
742
+ msgstr "Typy hodnot proměnné"
743
+
744
+ msgid "Unable to generate output, Check log files"
745
+ msgstr ""
746
+
747
+ msgid "Update"
748
+ msgstr "Aktualizovat"
749
+
750
+ msgid "Update a Puppet class"
751
+ msgstr "Aktualizovat puppet třídu"
752
+
753
+ msgid "Update a config group"
754
+ msgstr "Aktualizovat skupinu nastavení"
755
+
756
+ msgid "Update a smart class parameter"
757
+ msgstr ""
758
+
759
+ msgid "Update an environment"
760
+ msgstr "Aktualizovat prostředí"
761
+
762
+ msgid "Update an override value for a specific smart class parameter"
763
+ msgstr ""
764
+
765
+ msgid "Update environment from facts"
766
+ msgstr "Aktualizovat prostředí z faktů"
767
+
768
+ msgid "Update template combination"
769
+ msgstr "Aktualizovat kombinaci šablony"
770
+
771
+ msgid "Update:"
772
+ msgstr "Aktualizace:"
773
+
774
+ msgid "Updated"
775
+ msgstr "Aktualizováno"
776
+
777
+ msgid "Updated hosts: changed environment"
778
+ msgstr "Aktualizovaní hostitelé: změněné prostředí"
779
+
780
+ msgid "Used to enforce certain values for the parameter values"
781
+ msgstr ""
782
+
783
+ msgid "Valid Host Group and Environment Combinations"
784
+ msgstr ""
785
+
786
+ msgid "Value"
787
+ msgstr "Hodnota"
788
+
789
+ msgid "Value to use when there is no match"
790
+ msgstr "Hodnoty které použít v případě nenalezení žádné shody"
791
+
792
+ msgid ""
793
+ "When a Host requests a template (e.g. during provisioning), Foreman \\\n"
794
+ " will select the best match from the available templates of that type, in the \\\n"
795
+ " following order:"
796
+ msgstr ""
797
+
798
+ msgid ""
799
+ "When editing a template, you must assign a list \\\n"
800
+ " of operating systems which this template can be used with. Optionally, you can \\\n"
801
+ " restrict a template to a list of host groups and/or environments."
802
+ msgstr ""
803
+
804
+ msgid "When enabled the parameter is hidden in the UI"
805
+ msgstr ""
806
+
807
+ msgid "Whether the smart class parameter value is managed by Foreman"
808
+ msgstr ""
809
+
810
+ msgid "belongs to config group"
811
+ msgstr "náleží do skupiny nastavení"
812
+
813
+ msgid "environment id"
814
+ msgstr "identifikátor prostředí"
815
+
816
+ msgid "included already from parent"
817
+ msgstr "už zahrnuto od nadřazeného"
818
+
819
+ msgid "must be true to edit the parameter"
820
+ msgstr "aby bylo možné parametr upravovat, je třeba, aby bylo nastaveno na true (pravda)"
821
+
822
+ msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
823
+ msgstr ""