foreman_puppet 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +619 -0
- data/README.md +38 -0
- data/Rakefile +31 -0
- data/app/assets/stylesheets/foreman_puppet.scss +117 -0
- data/app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb +139 -0
- data/app/controllers/concerns/foreman_puppet/environments_import.rb +61 -0
- data/app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb +40 -0
- data/app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb +23 -0
- data/app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb +48 -0
- data/app/controllers/concerns/foreman_puppet/extensions/hostgroups_controller_extensions.rb +58 -0
- data/app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb +228 -0
- data/app/controllers/concerns/foreman_puppet/extensions/operatingsystems_controller.rb +11 -0
- data/app/controllers/concerns/foreman_puppet/extensions/parameters_host.rb +75 -0
- data/app/controllers/concerns/foreman_puppet/extensions/parameters_hostgroup.rb +70 -0
- data/app/controllers/concerns/foreman_puppet/extensions/parameters_template_combination.rb +21 -0
- data/app/controllers/concerns/foreman_puppet/parameters/config_group.rb +17 -0
- data/app/controllers/concerns/foreman_puppet/parameters/environment.rb +21 -0
- data/app/controllers/concerns/foreman_puppet/parameters/puppetclass.rb +24 -0
- data/app/controllers/concerns/foreman_puppet/parameters/puppetclass_lookup_key.rb +24 -0
- data/app/controllers/foreman_puppet/api/v2/base_controller.rb +26 -0
- data/app/controllers/foreman_puppet/api/v2/config_groups_controller.rb +57 -0
- data/app/controllers/foreman_puppet/api/v2/environments_controller.rb +91 -0
- data/app/controllers/foreman_puppet/api/v2/host_classes_controller.rb +59 -0
- data/app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb +46 -0
- data/app/controllers/foreman_puppet/api/v2/lookups_common_controller.rb +114 -0
- data/app/controllers/foreman_puppet/api/v2/override_values_controller.rb +99 -0
- data/app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb +99 -0
- data/app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb +76 -0
- data/app/controllers/foreman_puppet/config_groups_controller.rb +46 -0
- data/app/controllers/foreman_puppet/environments_controller.rb +51 -0
- data/app/controllers/foreman_puppet/puppet_smart_proxies_controller.rb +39 -0
- data/app/controllers/foreman_puppet/puppetclass_lookup_keys_controller.rb +33 -0
- data/app/controllers/foreman_puppet/puppetclasses_controller.rb +113 -0
- data/app/controllers/foreman_puppet/react_controller.rb +19 -0
- data/app/helpers/concerns/foreman_puppet/template_renderer_scope.rb +14 -0
- data/app/helpers/foreman_puppet/environments_helper.rb +17 -0
- data/app/helpers/foreman_puppet/hosts_and_hostgroups_helper.rb +96 -0
- data/app/helpers/foreman_puppet/hosts_helper.rb +32 -0
- data/app/helpers/foreman_puppet/puppet_smart_proxies_helper.rb +8 -0
- data/app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb +135 -0
- data/app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb +55 -0
- data/app/helpers/foreman_puppet/puppetclasses_helper.rb +59 -0
- data/app/helpers/foreman_puppet/template_combinations_helper.rb +33 -0
- data/app/models/concerns/foreman_puppet/extensions/host.rb +88 -0
- data/app/models/concerns/foreman_puppet/extensions/hostgroup.rb +40 -0
- data/app/models/concerns/foreman_puppet/extensions/nic_managed.rb +11 -0
- data/app/models/concerns/foreman_puppet/extensions/operatingsystem.rb +11 -0
- data/app/models/concerns/foreman_puppet/extensions/provisioning_template.rb +64 -0
- data/app/models/concerns/foreman_puppet/extensions/report.rb +11 -0
- data/app/models/concerns/foreman_puppet/extensions/taxonomy.rb +19 -0
- data/app/models/concerns/foreman_puppet/extensions/template_combination.rb +23 -0
- data/app/models/concerns/foreman_puppet/extensions/user.rb +22 -0
- data/app/models/concerns/foreman_puppet/host_common.rb +90 -0
- data/app/models/concerns/foreman_puppet/puppet_lookup_value_extensions.rb +13 -0
- data/app/models/foreman_puppet/config_group.rb +45 -0
- data/app/models/foreman_puppet/config_group_class.rb +19 -0
- data/app/models/foreman_puppet/environment.rb +63 -0
- data/app/models/foreman_puppet/environment_class.rb +40 -0
- data/app/models/foreman_puppet/host_class.rb +23 -0
- data/app/models/foreman_puppet/host_config_group.rb +15 -0
- data/app/models/foreman_puppet/host_puppet_facet.rb +130 -0
- data/app/models/foreman_puppet/hostgroup_class.rb +23 -0
- data/app/models/foreman_puppet/hostgroup_puppet_facet.rb +98 -0
- data/app/models/foreman_puppet/puppetclass.rb +132 -0
- data/app/models/foreman_puppet/puppetclass_lookup_key.rb +58 -0
- data/app/services/foreman_puppet/host_info_providers/config_groups_info.rb +10 -0
- data/app/services/foreman_puppet/host_info_providers/puppet_info.rb +92 -0
- data/app/services/foreman_puppet/input_type/puppet_parameter_input.rb +35 -0
- data/app/services/foreman_puppet/proxy_status/puppet.rb +17 -0
- data/app/services/foreman_puppet/puppet_class_importer.rb +355 -0
- data/app/views/api/v2/template_combinations/base.json.erb +9 -0
- data/app/views/foreman_puppet/api/v2/config_groups/base.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/config_groups/create.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/config_groups/index.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/config_groups/main.json.rabl +8 -0
- data/app/views/foreman_puppet/api/v2/config_groups/show.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/config_groups/update.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/environments/base.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/environments/create.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/environments/index.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/environments/main.json.rabl +5 -0
- data/app/views/foreman_puppet/api/v2/environments/show.json.rabl +15 -0
- data/app/views/foreman_puppet/api/v2/environments/update.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/host_puppet_facets/base.json.rabl +1 -0
- data/app/views/foreman_puppet/api/v2/host_puppet_facets/host_single.json.rabl +17 -0
- data/app/views/foreman_puppet/api/v2/host_puppet_facets/show.json.rabl +11 -0
- data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/base.json.rabl +5 -0
- data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/hostgroup_single.json.rabl +16 -0
- data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/show.json.rabl +11 -0
- data/app/views/foreman_puppet/api/v2/import_puppetclasses/index.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/import_puppetclasses/show.json.rabl +36 -0
- data/app/views/foreman_puppet/api/v2/override_values/create.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/override_values/index.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/override_values/show.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/override_values/update.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/base.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/create.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/index.json.rabl +4 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/list.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/main.json.rabl +5 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/show.json.rabl +15 -0
- data/app/views/foreman_puppet/api/v2/puppetclasses/update.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/base.json.rabl +4 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/create.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/destroy.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/index.json.rabl +3 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/main.json.rabl +23 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/show.json.rabl +19 -0
- data/app/views/foreman_puppet/api/v2/smart_class_parameters/update.json.rabl +3 -0
- data/app/views/foreman_puppet/config_groups/_config_group.html.erb +34 -0
- data/app/views/foreman_puppet/config_groups/_config_groups_selection.html.erb +36 -0
- data/app/views/foreman_puppet/config_groups/_form.html.erb +9 -0
- data/app/views/foreman_puppet/config_groups/edit.html.erb +3 -0
- data/app/views/foreman_puppet/config_groups/index.html.erb +31 -0
- data/app/views/foreman_puppet/config_groups/new.html.erb +3 -0
- data/app/views/foreman_puppet/config_groups/welcome.html.erb +12 -0
- data/app/views/foreman_puppet/environments/_form.html.erb +20 -0
- data/app/views/foreman_puppet/environments/edit.html.erb +8 -0
- data/app/views/foreman_puppet/environments/index.html.erb +32 -0
- data/app/views/foreman_puppet/environments/new.html.erb +7 -0
- data/app/views/foreman_puppet/environments/welcome.html.erb +16 -0
- data/app/views/foreman_puppet/layouts/application_react.html.erb +15 -0
- data/app/views/foreman_puppet/puppet_smart_proxies/_dashboard.html.erb +9 -0
- data/app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb +30 -0
- data/app/views/foreman_puppet/puppetclass_lookup_keys/edit.html.erb +3 -0
- data/app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb +22 -0
- data/app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb +9 -0
- data/app/views/foreman_puppet/puppetclasses/_class_parameters.html.erb +37 -0
- data/app/views/foreman_puppet/puppetclasses/_class_selection.html.erb +70 -0
- data/app/views/foreman_puppet/puppetclasses/_classes.html.erb +22 -0
- data/app/views/foreman_puppet/puppetclasses/_classes_in_groups.html.erb +5 -0
- data/app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb +16 -0
- data/app/views/foreman_puppet/puppetclasses/_form.html.erb +62 -0
- data/app/views/foreman_puppet/puppetclasses/_selected_classes.html.erb +4 -0
- data/app/views/foreman_puppet/puppetclasses/edit.html.erb +4 -0
- data/app/views/foreman_puppet/puppetclasses/index.html.erb +47 -0
- data/app/views/hosts/_form_puppet_enc_tab.html.erb +24 -0
- data/app/views/hosts/foreman_puppet/_form_main_tab_fields.html.erb +1 -0
- data/app/views/hosts/select_multiple_environment.html.erb +8 -0
- data/app/views/provisioning_templates/_combination.html.erb +5 -0
- data/app/views/provisioning_templates/_combinations.html.erb +6 -0
- data/app/views/smart_proxies/plugins/_puppet.html.erb +24 -0
- data/config/api_routes.rb +81 -0
- data/config/routes.rb +89 -0
- data/db/migrate/20101121140000_add_environment_to_template_combinations.foreman_puppet.rb +9 -0
- data/db/migrate/20200720123005_migrate_puppet_core_types.foreman_puppet.rb +19 -0
- data/db/migrate/20200722171017_create_host_puppet_facet.foreman_puppet.rb +10 -0
- data/db/migrate/20200803113531_create_hostgroup_puppet_facet.foreman_puppet.rb +10 -0
- data/db/migrate/20200803113803_migrate_environment_to_puppet_facet.foreman_puppet.rb +22 -0
- data/db/migrate/20200803113903_migrate_host_type_in_host_config_groups.foreman_puppet.rb +29 -0
- data/db/migrate/20201125113903_migrate_puppetclasses_to_facets.foreman_puppet.rb +47 -0
- data/db/migrate_foreman/20090722141107_create_environments.rb +17 -0
- data/db/migrate_foreman/20120905095532_create_environment_classes.rb +15 -0
- data/db/migrate_foreman/20140407161817_create_config_groups.rb +9 -0
- data/db/migrate_foreman/20140407162007_create_config_group_classes.rb +10 -0
- data/db/migrate_foreman/20140407162059_create_host_config_groups.rb +11 -0
- data/db/migrate_foreman/20161205142618_delete_orphaned_smart_class_parameters.rb +10 -0
- data/db/migrate_foreman/20170109115157_fix_lookup_key_auditable_type.rb +15 -0
- data/db/migrate_foreman/20180816134832_cast_lookup_key_values.rb +35 -0
- data/db/migrate_foreman/20181023112532_add_environment_puppetclass_id.rb +7 -0
- data/db/migrate_foreman/20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.rb +6 -0
- data/db/seeds.d/111_puppet_proxy_feature.rb +8 -0
- data/lib/foreman_puppet.rb +10 -0
- data/lib/foreman_puppet/engine.rb +82 -0
- data/lib/foreman_puppet/register.rb +218 -0
- data/lib/foreman_puppet/version.rb +3 -0
- data/lib/tasks/foreman_puppet_tasks.rake +31 -0
- data/locale/Makefile +60 -0
- data/locale/action_names.rb +5 -0
- data/locale/en/foreman_puppet.edit.po +911 -0
- data/locale/en/foreman_puppet.po +690 -0
- data/locale/en/foreman_puppet.po.time_stamp +0 -0
- data/locale/foreman_puppet.pot +1076 -0
- data/locale/gemspec.rb +2 -0
- data/test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb +28 -0
- data/test/controllers/foreman_puppet/api/v2/environments_controller_test.rb +346 -0
- data/test/controllers/foreman_puppet/api/v2/host_classes_controller_test.rb +48 -0
- data/test/controllers/foreman_puppet/api/v2/hostgroup_classes_controller_test.rb +41 -0
- data/test/controllers/foreman_puppet/api/v2/hostgroups_controller_test.rb +79 -0
- data/test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb +101 -0
- data/test/controllers/foreman_puppet/api/v2/lookups_common_controller_test.rb +29 -0
- data/test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb +169 -0
- data/test/controllers/foreman_puppet/api/v2/puppetclasses_controller_test.rb +144 -0
- data/test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb +557 -0
- data/test/controllers/foreman_puppet/api/v2/template_combinations_controller_test.rb +81 -0
- data/test/controllers/foreman_puppet/config_groups_controller_test.rb +47 -0
- data/test/controllers/foreman_puppet/environments_controller_test.rb +230 -0
- data/test/controllers/foreman_puppet/hostgroups_controller_test.rb +72 -0
- data/test/controllers/foreman_puppet/hosts_controller_test.rb +346 -0
- data/test/controllers/foreman_puppet/puppet_smart_proxies_controller_test.rb +29 -0
- data/test/controllers/foreman_puppet/puppetclass_lookup_keys_controller_test.rb +59 -0
- data/test/controllers/foreman_puppet/puppetclasses_controller_test.rb +235 -0
- data/test/controllers/provisioning_templates_controller_test.rb +70 -0
- data/test/factories/foreman_puppet_factories.rb +134 -0
- data/test/factories/host_puppet_enhancements.rb +61 -0
- data/test/factories/proxy_puppet_enhancements.rb +33 -0
- data/test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb +65 -0
- data/test/helpers/foreman_puppet/puppetclasses_helper_test.rb +33 -0
- data/test/integration/foreman_puppet/environment_js_test.rb +27 -0
- data/test/integration/foreman_puppet/host_js_test.rb +371 -0
- data/test/integration/foreman_puppet/hostgroup_js_test.rb +100 -0
- data/test/integration/foreman_puppet/puppetclass_js_test.rb +37 -0
- data/test/integration/foreman_puppet/smartclass_parameter_js_test.rb +84 -0
- data/test/models/foreman_puppet/config_group_class_test.rb +9 -0
- data/test/models/foreman_puppet/config_group_test.rb +8 -0
- data/test/models/foreman_puppet/environment_test.rb +92 -0
- data/test/models/foreman_puppet/host_config_group_test.rb +39 -0
- data/test/models/foreman_puppet/host_puppet_facet_test.rb +116 -0
- data/test/models/foreman_puppet/host_test.rb +288 -0
- data/test/models/foreman_puppet/hostgroup_puppet_facet_test.rb +200 -0
- data/test/models/foreman_puppet/hostgroup_test.rb +14 -0
- data/test/models/foreman_puppet/lookup_value_test.rb +69 -0
- data/test/models/foreman_puppet/provisioning_template_test.rb +124 -0
- data/test/models/foreman_puppet/puppetclass_lookup_key_test.rb +81 -0
- data/test/models/foreman_puppet/puppetclass_test.rb +144 -0
- data/test/models/foreman_puppet/smart_proxy_test.rb +28 -0
- data/test/qraphql/queries/host_puppet_query_test.rb +36 -0
- data/test/qraphql/queries/hostgroup_puppet_query_test.rb +36 -0
- data/test/services/foreman_puppet/host_info_providers/puppet_info_test.rb +791 -0
- data/test/services/foreman_puppet/input_type/puppet_parameter_input_test.rb +14 -0
- data/test/test_puppet_helper.rb +30 -0
- data/test/unit/foreman_puppet/access_permissions_test.rb +16 -0
- data/test/unit/foreman_puppet/puppet_class_importer_test.rb +247 -0
- data/test/unit/foreman_puppet/template_rendering_test.rb +20 -0
- data/test/unit/foreman_puppet_test.rb +11 -0
- data/webpack/__mocks__/foremanReact/common/I18n.js +7 -0
- data/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js +2 -0
- data/webpack/__mocks__/foremanReact/readme.md +11 -0
- data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +10 -0
- data/webpack/__mocks__/foremanReact/redux/API/index.js +10 -0
- data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +8 -0
- data/webpack/__mocks__/foremanReact/redux/index.js +1 -0
- data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js +5 -0
- data/webpack/fills_index.js +30 -0
- data/webpack/index.js +18 -0
- data/webpack/src/ForemanPuppet.js +11 -0
- data/webpack/src/Router/__snapshots__/routes.test.js.snap +3 -0
- data/webpack/src/Router/index.js +14 -0
- data/webpack/src/Router/routes.js +3 -0
- data/webpack/src/Router/routes.test.js +16 -0
- data/webpack/src/foreman_class_edit.js +224 -0
- data/webpack/src/foreman_puppet_host_form.js +140 -0
- data/webpack/src/foreman_puppet_host_form.test.js +65 -0
- data/webpack/src/index.js +1 -0
- data/webpack/src/reducers.js +7 -0
- metadata +340 -0
File without changes
|
@@ -0,0 +1,1076 @@
|
|
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
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: foreman_puppet 1.0.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2021-02-02 04:11+0100\n"
|
12
|
+
"PO-Revision-Date: 2021-02-02 04:11+0100\n"
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
|
+
"Language: \n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
19
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20
|
+
|
21
|
+
#:
|
22
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:14
|
23
|
+
msgid "Import puppet classes from puppet proxy"
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
#:
|
27
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:15
|
28
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:16
|
29
|
+
msgid "Import puppet classes from puppet proxy for an environment"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
#:
|
33
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:21
|
34
|
+
msgid ""
|
35
|
+
"Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolet"
|
36
|
+
"e'that is used to limit the imported Puppet classes"
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
#:
|
40
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:49
|
41
|
+
msgid ""
|
42
|
+
"Failed to update the environments and Puppet classes from the on-disk puppet i"
|
43
|
+
"nstallation: %s"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#:
|
47
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:77
|
48
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:21
|
49
|
+
msgid "No changes to your environments detected"
|
50
|
+
msgstr ""
|
51
|
+
|
52
|
+
#:
|
53
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:104
|
54
|
+
#: ../app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb:117
|
55
|
+
msgid ""
|
56
|
+
"No proxy found to import classes from, ensure that the smart proxy has the Pup"
|
57
|
+
"pet feature enabled."
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:15
|
61
|
+
msgid ""
|
62
|
+
"Ignored environment names resulting in booleans found. Please quote strings li"
|
63
|
+
"ke true/false and yes/no in config/ignored_environments.yml"
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:32
|
67
|
+
msgid ""
|
68
|
+
"Successfully updated environments and Puppet classes from the on-disk Puppet i"
|
69
|
+
"nstallation"
|
70
|
+
msgstr ""
|
71
|
+
|
72
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:34
|
73
|
+
msgid ""
|
74
|
+
"Failed to update environments and Puppet classes from the on-disk Puppet insta"
|
75
|
+
"llation: %s"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:46
|
79
|
+
msgid ""
|
80
|
+
"No smart proxy was found to import environments from, ensure that at least one"
|
81
|
+
" smart proxy is registered with the 'puppet' feature"
|
82
|
+
msgstr ""
|
83
|
+
|
84
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:53
|
85
|
+
msgid "Ignored environments: %s"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
#: ../app/controllers/concerns/foreman_puppet/environments_import.rb:55
|
89
|
+
msgid "Ignored classes in the environments: %s"
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
#:
|
93
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:11
|
94
|
+
msgid "List all host groups for a Puppet class"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
#:
|
98
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:14
|
99
|
+
msgid "ID of Puppetclass"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
#:
|
103
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:19
|
104
|
+
msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
|
105
|
+
msgstr ""
|
106
|
+
|
107
|
+
#:
|
108
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:20
|
109
|
+
msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
#:
|
113
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:21
|
114
|
+
msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
#:
|
118
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:24
|
119
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:24
|
120
|
+
msgid "ID of associated puppet Environment"
|
121
|
+
msgstr ""
|
122
|
+
|
123
|
+
#:
|
124
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:25
|
125
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:25
|
126
|
+
msgid "IDs of associated Puppetclasses"
|
127
|
+
msgstr ""
|
128
|
+
|
129
|
+
#:
|
130
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb:26
|
131
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:26
|
132
|
+
msgid "IDs of associated ConfigGroups"
|
133
|
+
msgstr ""
|
134
|
+
|
135
|
+
#:
|
136
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb:9
|
137
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:16
|
138
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:51
|
139
|
+
msgid "ID of environment"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
#:
|
143
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:11
|
144
|
+
msgid "List hosts per environment"
|
145
|
+
msgstr ""
|
146
|
+
|
147
|
+
#:
|
148
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:14
|
149
|
+
msgid "ID of puppet environment"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
#:
|
153
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:19
|
154
|
+
msgid "Deprecated in favor of host/puppet_attributes/environment_id"
|
155
|
+
msgstr ""
|
156
|
+
|
157
|
+
#:
|
158
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:20
|
159
|
+
msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
#:
|
163
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb:21
|
164
|
+
msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
#:
|
168
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:63
|
169
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:116
|
170
|
+
msgid "No environment selected!"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
#:
|
174
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:77
|
175
|
+
msgid "Updated hosts: changed environment"
|
176
|
+
msgstr ""
|
177
|
+
|
178
|
+
#:
|
179
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:106
|
180
|
+
msgid "Unable to generate output, Check log files"
|
181
|
+
msgstr ""
|
182
|
+
|
183
|
+
#:
|
184
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:146
|
185
|
+
msgid "No proxy selected!"
|
186
|
+
msgstr ""
|
187
|
+
|
188
|
+
#:
|
189
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:152
|
190
|
+
msgid "Invalid proxy selected!"
|
191
|
+
msgstr ""
|
192
|
+
|
193
|
+
#:
|
194
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:169
|
195
|
+
msgid "Failed to set %{proxy_type} proxy for %{host}."
|
196
|
+
msgstr ""
|
197
|
+
|
198
|
+
#:
|
199
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:175
|
200
|
+
msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
|
201
|
+
msgstr ""
|
202
|
+
|
203
|
+
#:
|
204
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:177
|
205
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:192
|
206
|
+
msgid "The %{proxy_type} proxy of the selected hosts was cleared."
|
207
|
+
msgstr ""
|
208
|
+
|
209
|
+
#:
|
210
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:180
|
211
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:195
|
212
|
+
msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
|
213
|
+
msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
|
214
|
+
msgstr[0] ""
|
215
|
+
msgstr[1] ""
|
216
|
+
|
217
|
+
#:
|
218
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:190
|
219
|
+
msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
|
220
|
+
msgstr ""
|
221
|
+
|
222
|
+
#:
|
223
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:205
|
224
|
+
msgid "Puppet"
|
225
|
+
msgstr ""
|
226
|
+
|
227
|
+
#:
|
228
|
+
#: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:212
|
229
|
+
msgid "Puppet CA"
|
230
|
+
msgstr ""
|
231
|
+
|
232
|
+
#: ../app/controllers/foreman_puppet/api/v2/config_groups_controller.rb:11
|
233
|
+
msgid "List of config groups"
|
234
|
+
msgstr ""
|
235
|
+
|
236
|
+
#: ../app/controllers/foreman_puppet/api/v2/config_groups_controller.rb:19
|
237
|
+
msgid "Show a config group"
|
238
|
+
msgstr ""
|
239
|
+
|
240
|
+
#: ../app/controllers/foreman_puppet/api/v2/config_groups_controller.rb:32
|
241
|
+
msgid "Create a config group"
|
242
|
+
msgstr ""
|
243
|
+
|
244
|
+
#: ../app/controllers/foreman_puppet/api/v2/config_groups_controller.rb:40
|
245
|
+
msgid "Update a config group"
|
246
|
+
msgstr ""
|
247
|
+
|
248
|
+
#: ../app/controllers/foreman_puppet/api/v2/config_groups_controller.rb:48
|
249
|
+
msgid "Delete a config group"
|
250
|
+
msgstr ""
|
251
|
+
|
252
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:16
|
253
|
+
msgid "List all environments"
|
254
|
+
msgstr ""
|
255
|
+
|
256
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:17
|
257
|
+
msgid "List environments of Puppet class"
|
258
|
+
msgstr ""
|
259
|
+
|
260
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:18
|
261
|
+
msgid "List environments per location"
|
262
|
+
msgstr ""
|
263
|
+
|
264
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:19
|
265
|
+
msgid "List environments per organization"
|
266
|
+
msgstr ""
|
267
|
+
|
268
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:20
|
269
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:16
|
270
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:25
|
271
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:15
|
272
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:24
|
273
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:52
|
274
|
+
msgid "ID of Puppet class"
|
275
|
+
msgstr ""
|
276
|
+
|
277
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:29
|
278
|
+
msgid "Show an environment"
|
279
|
+
msgstr ""
|
280
|
+
|
281
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:42
|
282
|
+
msgid "Create an environment"
|
283
|
+
msgstr ""
|
284
|
+
|
285
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:50
|
286
|
+
msgid "Update an environment"
|
287
|
+
msgstr ""
|
288
|
+
|
289
|
+
#: ../app/controllers/foreman_puppet/api/v2/environments_controller.rb:58
|
290
|
+
msgid "Delete an environment"
|
291
|
+
msgstr ""
|
292
|
+
|
293
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:8
|
294
|
+
msgid "List all Puppet class IDs for host"
|
295
|
+
msgstr ""
|
296
|
+
|
297
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:14
|
298
|
+
msgid "Add a Puppet class to host"
|
299
|
+
msgstr ""
|
300
|
+
|
301
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:15
|
302
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:24
|
303
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:14
|
304
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:49
|
305
|
+
msgid "ID of host"
|
306
|
+
msgstr ""
|
307
|
+
|
308
|
+
#: ../app/controllers/foreman_puppet/api/v2/host_classes_controller.rb:23
|
309
|
+
msgid "Remove a Puppet class from host"
|
310
|
+
msgstr ""
|
311
|
+
|
312
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:7
|
313
|
+
msgid "List all Puppet class IDs for host group"
|
314
|
+
msgstr ""
|
315
|
+
|
316
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:13
|
317
|
+
msgid "Add a Puppet class to host group"
|
318
|
+
msgstr ""
|
319
|
+
|
320
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:14
|
321
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:23
|
322
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:15
|
323
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:50
|
324
|
+
msgid "ID of host group"
|
325
|
+
msgstr ""
|
326
|
+
|
327
|
+
#: ../app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb:22
|
328
|
+
msgid "Remove a Puppet class from host group"
|
329
|
+
msgstr ""
|
330
|
+
|
331
|
+
#: ../app/controllers/foreman_puppet/api/v2/lookups_common_controller.rb:108
|
332
|
+
msgid "%{model} with id '%{id}' was not found"
|
333
|
+
msgstr ""
|
334
|
+
|
335
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:20
|
336
|
+
msgid "List of override values for a specific smart class parameter"
|
337
|
+
msgstr ""
|
338
|
+
|
339
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:22
|
340
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:31
|
341
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:25
|
342
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:37
|
343
|
+
msgid "Display hidden values"
|
344
|
+
msgstr ""
|
345
|
+
|
346
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:28
|
347
|
+
msgid "Show an override value for a specific smart class parameter"
|
348
|
+
msgstr ""
|
349
|
+
|
350
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:38
|
351
|
+
msgid "Override match"
|
352
|
+
msgstr ""
|
353
|
+
|
354
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:39
|
355
|
+
msgid "Override value, required if omit is false"
|
356
|
+
msgstr ""
|
357
|
+
|
358
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:40
|
359
|
+
msgid "Foreman will not send this parameter in classification output"
|
360
|
+
msgstr ""
|
361
|
+
|
362
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:44
|
363
|
+
msgid "Create an override value for a specific smart class parameter"
|
364
|
+
msgstr ""
|
365
|
+
|
366
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:54
|
367
|
+
msgid "Update an override value for a specific smart class parameter"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
#: ../app/controllers/foreman_puppet/api/v2/override_values_controller.rb:63
|
371
|
+
msgid "Delete an override value for a specific smart class parameter"
|
372
|
+
msgstr ""
|
373
|
+
|
374
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:10
|
375
|
+
msgid "List all Puppet classes"
|
376
|
+
msgstr ""
|
377
|
+
|
378
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:11
|
379
|
+
msgid "List all Puppet classes for a host"
|
380
|
+
msgstr ""
|
381
|
+
|
382
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:12
|
383
|
+
msgid "List all Puppet classes for a host group"
|
384
|
+
msgstr ""
|
385
|
+
|
386
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:13
|
387
|
+
msgid "List all Puppet classes for an environment"
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:45
|
391
|
+
msgid "Show a Puppet class"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:46
|
395
|
+
msgid "Show a Puppet class for host"
|
396
|
+
msgstr ""
|
397
|
+
|
398
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:47
|
399
|
+
msgid "Show a Puppet class for a host group"
|
400
|
+
msgstr ""
|
401
|
+
|
402
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:48
|
403
|
+
msgid "Show a Puppet class for an environment"
|
404
|
+
msgstr ""
|
405
|
+
|
406
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:63
|
407
|
+
msgid "Create a Puppet class"
|
408
|
+
msgstr ""
|
409
|
+
|
410
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:71
|
411
|
+
msgid "Update a Puppet class"
|
412
|
+
msgstr ""
|
413
|
+
|
414
|
+
#: ../app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb:80
|
415
|
+
msgid "Delete a Puppet class"
|
416
|
+
msgstr ""
|
417
|
+
|
418
|
+
#:
|
419
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:14
|
420
|
+
msgid "List all smart class parameters"
|
421
|
+
msgstr ""
|
422
|
+
|
423
|
+
#:
|
424
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:15
|
425
|
+
msgid "List of smart class parameters for a specific host"
|
426
|
+
msgstr ""
|
427
|
+
|
428
|
+
#:
|
429
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:16
|
430
|
+
msgid "List of smart class parameters for a specific host group"
|
431
|
+
msgstr ""
|
432
|
+
|
433
|
+
#:
|
434
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:17
|
435
|
+
msgid "List of smart class parameters for a specific Puppet class"
|
436
|
+
msgstr ""
|
437
|
+
|
438
|
+
#:
|
439
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:18
|
440
|
+
msgid "List of smart class parameters for a specific environment"
|
441
|
+
msgstr ""
|
442
|
+
|
443
|
+
#:
|
444
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:20
|
445
|
+
msgid ""
|
446
|
+
"List of smart class parameters for a specific environment/Puppet class combina"
|
447
|
+
"tion"
|
448
|
+
msgstr ""
|
449
|
+
|
450
|
+
#:
|
451
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:35
|
452
|
+
msgid "Show a smart class parameter"
|
453
|
+
msgstr ""
|
454
|
+
|
455
|
+
#:
|
456
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:42
|
457
|
+
msgid "Update a smart class parameter"
|
458
|
+
msgstr ""
|
459
|
+
|
460
|
+
#:
|
461
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:46
|
462
|
+
msgid "Whether the smart class parameter value is managed by Foreman"
|
463
|
+
msgstr ""
|
464
|
+
|
465
|
+
#:
|
466
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:47
|
467
|
+
msgid "Description of smart class"
|
468
|
+
msgstr ""
|
469
|
+
|
470
|
+
#:
|
471
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:48
|
472
|
+
msgid "Value to use when there is no match"
|
473
|
+
msgstr ""
|
474
|
+
|
475
|
+
#:
|
476
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:49
|
477
|
+
msgid "When enabled the parameter is hidden in the UI"
|
478
|
+
msgstr ""
|
479
|
+
|
480
|
+
#:
|
481
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:50
|
482
|
+
msgid ""
|
483
|
+
"Foreman will not send this parameter in classification output.Puppet will use "
|
484
|
+
"the value defined in the Puppet manifest for this parameter"
|
485
|
+
msgstr ""
|
486
|
+
|
487
|
+
#:
|
488
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:52
|
489
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:55
|
490
|
+
msgid "The order in which values are resolved"
|
491
|
+
msgstr ""
|
492
|
+
|
493
|
+
#:
|
494
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:53
|
495
|
+
msgid "Types of validation values"
|
496
|
+
msgstr ""
|
497
|
+
|
498
|
+
#:
|
499
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:54
|
500
|
+
msgid "Used to enforce certain values for the parameter values"
|
501
|
+
msgstr ""
|
502
|
+
|
503
|
+
#:
|
504
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:56
|
505
|
+
msgid "Types of variable values"
|
506
|
+
msgstr ""
|
507
|
+
|
508
|
+
#:
|
509
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:57
|
510
|
+
msgid ""
|
511
|
+
"If true, will raise an error if there is no default value and no matcher provi"
|
512
|
+
"de a value"
|
513
|
+
msgstr ""
|
514
|
+
|
515
|
+
#:
|
516
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:58
|
517
|
+
msgid "Merge all matching values (only array/hash type)"
|
518
|
+
msgstr ""
|
519
|
+
|
520
|
+
#:
|
521
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:59
|
522
|
+
msgid "Include default value when merging all matching values"
|
523
|
+
msgstr ""
|
524
|
+
|
525
|
+
#:
|
526
|
+
#: ../app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb:60
|
527
|
+
msgid "Remove duplicate values (only array type)"
|
528
|
+
msgstr ""
|
529
|
+
|
530
|
+
#: ../app/controllers/foreman_puppet/puppetclasses_controller.rb:58
|
531
|
+
msgid "Successfully overridden all parameters of Puppet class %s"
|
532
|
+
msgstr ""
|
533
|
+
|
534
|
+
#: ../app/controllers/foreman_puppet/puppetclasses_controller.rb:60
|
535
|
+
msgid "Successfully reset all parameters of Puppet class %s to their default values"
|
536
|
+
msgstr ""
|
537
|
+
|
538
|
+
#: ../app/controllers/foreman_puppet/puppetclasses_controller.rb:63
|
539
|
+
msgid "No parameters to override for Puppet class %s"
|
540
|
+
msgstr ""
|
541
|
+
|
542
|
+
#: ../app/helpers/foreman_puppet/environments_helper.rb:13
|
543
|
+
#: ../app/views/foreman_puppet/environments/new.html.erb:5
|
544
|
+
#: ../app/views/foreman_puppet/environments/welcome.html.erb:11
|
545
|
+
msgid "Create Puppet Environment"
|
546
|
+
msgstr ""
|
547
|
+
|
548
|
+
#: ../app/helpers/foreman_puppet/hosts_helper.rb:11
|
549
|
+
msgid "Change Environment"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
#: ../app/helpers/foreman_puppet/hosts_helper.rb:13
|
553
|
+
msgid "Change Puppet Master"
|
554
|
+
msgstr ""
|
555
|
+
|
556
|
+
#: ../app/helpers/foreman_puppet/hosts_helper.rb:25
|
557
|
+
msgid "Puppet YAML"
|
558
|
+
msgstr ""
|
559
|
+
|
560
|
+
#: ../app/helpers/foreman_puppet/hosts_helper.rb:25
|
561
|
+
msgid "Puppet external nodes YAML dump"
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:32
|
565
|
+
msgid "Omit from classification output"
|
566
|
+
msgstr ""
|
567
|
+
|
568
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:39
|
569
|
+
msgid "Override this value"
|
570
|
+
msgstr ""
|
571
|
+
|
572
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:43
|
573
|
+
msgid "Remove this override"
|
574
|
+
msgstr ""
|
575
|
+
|
576
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:75
|
577
|
+
msgid "Default value"
|
578
|
+
msgstr ""
|
579
|
+
|
580
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:93
|
581
|
+
msgid "Original value info"
|
582
|
+
msgstr ""
|
583
|
+
|
584
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:99
|
585
|
+
msgid ""
|
586
|
+
"<b>Description:</b> %{desc}<br/>\n"
|
587
|
+
" <b>Type:</b> %{type}<br/>\n"
|
588
|
+
" <b>Matcher:</b> %{matcher}<br/>\n"
|
589
|
+
" <b>Inherited value:</b> %{inherited_value}"
|
590
|
+
msgstr ""
|
591
|
+
|
592
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:113
|
593
|
+
msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
|
594
|
+
msgstr ""
|
595
|
+
|
596
|
+
#: ../app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb:116
|
597
|
+
msgid ""
|
598
|
+
"Optional parameter without value.<br/><i>Still managed by Foreman, the value w"
|
599
|
+
"ill be empty.</i><br/>"
|
600
|
+
msgstr ""
|
601
|
+
|
602
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:5
|
603
|
+
msgid "Empty environment"
|
604
|
+
msgstr ""
|
605
|
+
|
606
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:7
|
607
|
+
msgid "Deleted environment"
|
608
|
+
msgstr ""
|
609
|
+
|
610
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:9
|
611
|
+
msgid "Deleted environment %{env} and %{pcs}"
|
612
|
+
msgstr ""
|
613
|
+
|
614
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:11
|
615
|
+
msgid "Ignored environment"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:18
|
619
|
+
msgid "Import"
|
620
|
+
msgstr ""
|
621
|
+
|
622
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:22
|
623
|
+
msgid "Import environments from %s"
|
624
|
+
msgstr ""
|
625
|
+
|
626
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:22
|
627
|
+
msgid "Import classes from %s"
|
628
|
+
msgstr ""
|
629
|
+
|
630
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb:45
|
631
|
+
msgid "%{name} has %{num_tag} class"
|
632
|
+
msgid_plural "%{name} has %{num_tag} classes"
|
633
|
+
msgstr[0] ""
|
634
|
+
msgstr[1] ""
|
635
|
+
|
636
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_helper.rb:33
|
637
|
+
#: ../webpack/src/foreman_class_edit.js:55
|
638
|
+
msgid "Click to remove %s"
|
639
|
+
msgstr ""
|
640
|
+
|
641
|
+
#: ../app/helpers/foreman_puppet/puppetclasses_helper.rb:46
|
642
|
+
msgid "Click to add %s"
|
643
|
+
msgstr ""
|
644
|
+
|
645
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:6
|
646
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:7
|
647
|
+
msgid "None"
|
648
|
+
msgstr ""
|
649
|
+
|
650
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:14
|
651
|
+
msgid ""
|
652
|
+
"When editing a template, you must assign a list \\\n"
|
653
|
+
" of operating systems which this template can be used with. Optionally, you c"
|
654
|
+
"an \\\n"
|
655
|
+
" restrict a template to a list of host groups and/or environments."
|
656
|
+
msgstr ""
|
657
|
+
|
658
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:18
|
659
|
+
msgid ""
|
660
|
+
"When a Host requests a template (e.g. during provisioning), Foreman \\\n"
|
661
|
+
" will select the best match from the available templates of that type, in the"
|
662
|
+
" \\\n"
|
663
|
+
" following order:"
|
664
|
+
msgstr ""
|
665
|
+
|
666
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:22
|
667
|
+
msgid "Host group and Environment"
|
668
|
+
msgstr ""
|
669
|
+
|
670
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:23
|
671
|
+
msgid "Host group only"
|
672
|
+
msgstr ""
|
673
|
+
|
674
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:24
|
675
|
+
msgid "Environment only"
|
676
|
+
msgstr ""
|
677
|
+
|
678
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:25
|
679
|
+
msgid "Operating system default"
|
680
|
+
msgstr ""
|
681
|
+
|
682
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:27
|
683
|
+
msgid "The final entry, Operating System default, can be set by editing the %s page."
|
684
|
+
msgstr ""
|
685
|
+
|
686
|
+
#: ../app/helpers/foreman_puppet/template_combinations_helper.rb:28
|
687
|
+
msgid "Operating System"
|
688
|
+
msgstr ""
|
689
|
+
|
690
|
+
#: ../app/models/foreman_puppet/environment.rb:42
|
691
|
+
msgid "Can't find a valid Foreman Proxy with a Puppet feature"
|
692
|
+
msgstr ""
|
693
|
+
|
694
|
+
#: ../app/models/foreman_puppet/host_puppet_facet.rb:60
|
695
|
+
msgid "%{puppetclass} does not belong to the %{environment} environment"
|
696
|
+
msgstr ""
|
697
|
+
|
698
|
+
#: ../app/models/foreman_puppet/host_puppet_facet.rb:80
|
699
|
+
msgid ""
|
700
|
+
"Failed to import %{klass} for %{name}: doesn't exists in our database - ignori"
|
701
|
+
"ng"
|
702
|
+
msgstr ""
|
703
|
+
|
704
|
+
#: ../app/models/foreman_puppet/host_puppet_facet.rb:122
|
705
|
+
msgid ""
|
706
|
+
"with id %{object_id} doesn't exist or is not assigned to proper organization a"
|
707
|
+
"nd/or location"
|
708
|
+
msgstr ""
|
709
|
+
|
710
|
+
#: ../app/models/foreman_puppet/puppetclass_lookup_key.rb:51
|
711
|
+
msgid "must be true to edit the parameter"
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
#: ../app/services/foreman_puppet/input_type/puppet_parameter_input.rb:24
|
715
|
+
msgid "Puppet parameter"
|
716
|
+
msgstr ""
|
717
|
+
|
718
|
+
#: ../app/services/foreman_puppet/puppet_class_importer.rb:16
|
719
|
+
msgid "Can't find a valid Proxy with a Puppet feature"
|
720
|
+
msgstr ""
|
721
|
+
|
722
|
+
#: ../app/views/foreman_puppet/config_groups/_config_group.html.erb:10
|
723
|
+
msgid "included already from parent"
|
724
|
+
msgstr ""
|
725
|
+
|
726
|
+
#: ../app/views/foreman_puppet/config_groups/_config_group.html.erb:14
|
727
|
+
#: ../app/views/provisioning_templates/_combination.html.erb:4
|
728
|
+
msgid "Remove"
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: ../app/views/foreman_puppet/config_groups/_config_group.html.erb:14
|
732
|
+
msgid "Add"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
#: ../app/views/foreman_puppet/config_groups/_config_group.html.erb:26
|
736
|
+
msgid "%s is not in environment"
|
737
|
+
msgstr ""
|
738
|
+
|
739
|
+
#:
|
740
|
+
#: ../app/views/foreman_puppet/config_groups/_config_groups_selection.html.erb:4
|
741
|
+
msgid "Included Config Groups"
|
742
|
+
msgstr ""
|
743
|
+
|
744
|
+
#:
|
745
|
+
#: ../app/views/foreman_puppet/config_groups/_config_groups_selection.html.erb:21
|
746
|
+
msgid "Available Config Groups"
|
747
|
+
msgstr ""
|
748
|
+
|
749
|
+
#: ../app/views/foreman_puppet/config_groups/edit.html.erb:1
|
750
|
+
#: ../app/views/foreman_puppet/environments/edit.html.erb:1
|
751
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/edit.html.erb:1
|
752
|
+
msgid "Edit %s"
|
753
|
+
msgstr ""
|
754
|
+
|
755
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:3
|
756
|
+
#: ../app/views/foreman_puppet/config_groups/welcome.html.erb:1
|
757
|
+
#: ../app/views/foreman_puppet/config_groups/welcome.html.erb:6
|
758
|
+
#: ../lib/foreman_puppet/register.rb:157
|
759
|
+
msgid "Config Groups"
|
760
|
+
msgstr ""
|
761
|
+
|
762
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:5
|
763
|
+
#: ../app/views/foreman_puppet/config_groups/new.html.erb:1
|
764
|
+
#: ../app/views/foreman_puppet/config_groups/welcome.html.erb:10
|
765
|
+
msgid "Create Config Group"
|
766
|
+
msgstr ""
|
767
|
+
|
768
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:11
|
769
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:1
|
770
|
+
msgid "Puppet Classes"
|
771
|
+
msgstr ""
|
772
|
+
|
773
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:12
|
774
|
+
#: ../app/views/foreman_puppet/environments/index.html.erb:9
|
775
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:12
|
776
|
+
msgid "Hosts"
|
777
|
+
msgstr ""
|
778
|
+
|
779
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:13
|
780
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:11
|
781
|
+
msgid "Host Groups"
|
782
|
+
msgstr ""
|
783
|
+
|
784
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:14
|
785
|
+
#: ../app/views/foreman_puppet/environments/index.html.erb:10
|
786
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:14
|
787
|
+
msgid "Actions"
|
788
|
+
msgstr ""
|
789
|
+
|
790
|
+
#: ../app/views/foreman_puppet/config_groups/index.html.erb:25
|
791
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:36
|
792
|
+
msgid "Delete %s?"
|
793
|
+
msgstr ""
|
794
|
+
|
795
|
+
#: ../app/views/foreman_puppet/config_groups/welcome.html.erb:7
|
796
|
+
msgid ""
|
797
|
+
"A config group provides a one-step method of associating many Puppet classes t"
|
798
|
+
"o either a host or host group. Typically this would be used to add a particula"
|
799
|
+
"r application profile or stack in one step."
|
800
|
+
msgstr ""
|
801
|
+
|
802
|
+
#: ../app/views/foreman_puppet/config_groups/welcome.html.erb:8
|
803
|
+
#: ../app/views/foreman_puppet/environments/welcome.html.erb:9
|
804
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8
|
805
|
+
msgid "Learn more about this in the documentation."
|
806
|
+
msgstr ""
|
807
|
+
|
808
|
+
#: ../app/views/foreman_puppet/environments/_form.html.erb:4
|
809
|
+
#: ../app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb:4
|
810
|
+
#: ../app/views/hosts/select_multiple_environment.html.erb:7
|
811
|
+
#: ../app/views/provisioning_templates/_combination.html.erb:4
|
812
|
+
msgid "Environment"
|
813
|
+
msgstr ""
|
814
|
+
|
815
|
+
#: ../app/views/foreman_puppet/environments/_form.html.erb:6
|
816
|
+
msgid "Locations"
|
817
|
+
msgstr ""
|
818
|
+
|
819
|
+
#: ../app/views/foreman_puppet/environments/_form.html.erb:9
|
820
|
+
msgid "Organizations"
|
821
|
+
msgstr ""
|
822
|
+
|
823
|
+
#: ../app/views/foreman_puppet/environments/edit.html.erb:5
|
824
|
+
#: ../app/views/foreman_puppet/environments/index.html.erb:1
|
825
|
+
#: ../app/views/foreman_puppet/environments/new.html.erb:4
|
826
|
+
msgid "Puppet Environments"
|
827
|
+
msgstr ""
|
828
|
+
|
829
|
+
#: ../app/views/foreman_puppet/environments/index.html.erb:8
|
830
|
+
msgid "Environment|Name"
|
831
|
+
msgstr ""
|
832
|
+
|
833
|
+
#: ../app/views/foreman_puppet/environments/index.html.erb:22
|
834
|
+
#: ../lib/foreman_puppet/register.rb:154
|
835
|
+
msgid "Classes"
|
836
|
+
msgstr ""
|
837
|
+
|
838
|
+
#: ../app/views/foreman_puppet/environments/new.html.erb:1
|
839
|
+
msgid "Create Environment"
|
840
|
+
msgstr ""
|
841
|
+
|
842
|
+
#: ../app/views/foreman_puppet/environments/welcome.html.erb:1
|
843
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:14
|
844
|
+
msgid "Puppet environments"
|
845
|
+
msgstr ""
|
846
|
+
|
847
|
+
#: ../app/views/foreman_puppet/environments/welcome.html.erb:6
|
848
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10
|
849
|
+
#: ../app/views/smart_proxies/plugins/_puppet.html.erb:4
|
850
|
+
#: ../lib/foreman_puppet/register.rb:151
|
851
|
+
msgid "Environments"
|
852
|
+
msgstr ""
|
853
|
+
|
854
|
+
#: ../app/views/foreman_puppet/environments/welcome.html.erb:7
|
855
|
+
msgid ""
|
856
|
+
"If you are planning to use Foreman as an external node classifier you should p"
|
857
|
+
"rovide information about one or more environments. This information is commonl"
|
858
|
+
"y imported from a pre-existing Puppet configuration by the use of the %{link_s"
|
859
|
+
"tart}Puppet classes and environment importer%{link_end}."
|
860
|
+
msgstr ""
|
861
|
+
|
862
|
+
#: ../app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb:5
|
863
|
+
msgid "Number of classes"
|
864
|
+
msgstr ""
|
865
|
+
|
866
|
+
#: ../app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb:15
|
867
|
+
msgid "Total"
|
868
|
+
msgstr ""
|
869
|
+
|
870
|
+
#: ../app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb:25
|
871
|
+
msgid "No environments found"
|
872
|
+
msgstr ""
|
873
|
+
|
874
|
+
#: ../app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb:27
|
875
|
+
msgid ""
|
876
|
+
"There are no puppet environments set up on this puppet master. Please check th"
|
877
|
+
"e puppet master configuration."
|
878
|
+
msgstr ""
|
879
|
+
|
880
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1
|
881
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1
|
882
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:6
|
883
|
+
#: ../lib/foreman_puppet/register.rb:160
|
884
|
+
msgid "Smart Class Parameters"
|
885
|
+
msgstr ""
|
886
|
+
|
887
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:6
|
888
|
+
msgid "Parameter"
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:7
|
892
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb:4
|
893
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:7
|
894
|
+
msgid "Puppet Class"
|
895
|
+
msgstr ""
|
896
|
+
|
897
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:8
|
898
|
+
msgid "Number of Overrides"
|
899
|
+
msgstr ""
|
900
|
+
|
901
|
+
#: ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:7
|
902
|
+
msgid ""
|
903
|
+
"Parameterized class support permits detecting, importing, and supplying parame"
|
904
|
+
"ters directly to classes which support it, via the ENC and depending on a set "
|
905
|
+
"of rules (Smart Matchers)."
|
906
|
+
msgstr ""
|
907
|
+
|
908
|
+
#: ../app/views/foreman_puppet/puppetclasses/_class_selection.html.erb:8
|
909
|
+
msgid "Included Classes"
|
910
|
+
msgstr ""
|
911
|
+
|
912
|
+
#: ../app/views/foreman_puppet/puppetclasses/_class_selection.html.erb:26
|
913
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes.html.erb:10
|
914
|
+
msgid "Not authorized to edit classes"
|
915
|
+
msgstr ""
|
916
|
+
|
917
|
+
#: ../app/views/foreman_puppet/puppetclasses/_class_selection.html.erb:37
|
918
|
+
msgid "Inherited Classes from %s"
|
919
|
+
msgstr ""
|
920
|
+
|
921
|
+
#: ../app/views/foreman_puppet/puppetclasses/_class_selection.html.erb:56
|
922
|
+
msgid "Available Classes"
|
923
|
+
msgstr ""
|
924
|
+
|
925
|
+
#: ../app/views/foreman_puppet/puppetclasses/_class_selection.html.erb:59
|
926
|
+
msgid "Filter classes"
|
927
|
+
msgstr ""
|
928
|
+
|
929
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes_in_groups.html.erb:2
|
930
|
+
#: ../webpack/src/foreman_class_edit.js:84
|
931
|
+
msgid "belongs to config group"
|
932
|
+
msgstr ""
|
933
|
+
|
934
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb:5
|
935
|
+
msgid "Name"
|
936
|
+
msgstr ""
|
937
|
+
|
938
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb:6
|
939
|
+
msgid "Value"
|
940
|
+
msgstr ""
|
941
|
+
|
942
|
+
#: ../app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb:7
|
943
|
+
msgid "Omit"
|
944
|
+
msgstr ""
|
945
|
+
|
946
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:4
|
947
|
+
msgid ""
|
948
|
+
"The class could not be saved because of an error in one of the class parameter"
|
949
|
+
"s."
|
950
|
+
msgstr ""
|
951
|
+
|
952
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:8
|
953
|
+
msgid "Smart Class Parameter"
|
954
|
+
msgstr ""
|
955
|
+
|
956
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:15
|
957
|
+
msgid "Host groups"
|
958
|
+
msgstr ""
|
959
|
+
|
960
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:22
|
961
|
+
msgid "This Puppet class has no parameters in its signature."
|
962
|
+
msgstr ""
|
963
|
+
|
964
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:23
|
965
|
+
msgid ""
|
966
|
+
"To update the class signature, go to the Puppet Classes page and select \"Impor"
|
967
|
+
"t\"."
|
968
|
+
msgstr ""
|
969
|
+
|
970
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:28
|
971
|
+
msgid "Filter by name"
|
972
|
+
msgstr ""
|
973
|
+
|
974
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:34
|
975
|
+
msgid "All environments - (not filtered)"
|
976
|
+
msgstr ""
|
977
|
+
|
978
|
+
#: ../app/views/foreman_puppet/puppetclasses/_form.html.erb:46
|
979
|
+
msgid "Overridden"
|
980
|
+
msgstr ""
|
981
|
+
|
982
|
+
#: ../app/views/foreman_puppet/puppetclasses/edit.html.erb:1
|
983
|
+
msgid "Edit Puppet Class %s"
|
984
|
+
msgstr ""
|
985
|
+
|
986
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:9
|
987
|
+
msgid "Puppetclass|Name"
|
988
|
+
msgstr ""
|
989
|
+
|
990
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:13
|
991
|
+
msgid "Parameters"
|
992
|
+
msgstr ""
|
993
|
+
|
994
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:37
|
995
|
+
msgid "Override all parameters"
|
996
|
+
msgstr ""
|
997
|
+
|
998
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:37
|
999
|
+
msgid "This will set all parameters of the class %s as overridden. Continue?"
|
1000
|
+
msgstr ""
|
1001
|
+
|
1002
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:38
|
1003
|
+
msgid "Set parameters to defaults"
|
1004
|
+
msgstr ""
|
1005
|
+
|
1006
|
+
#: ../app/views/foreman_puppet/puppetclasses/index.html.erb:38
|
1007
|
+
msgid "This will reset parameters of the class %s to their default values. Continue?"
|
1008
|
+
msgstr ""
|
1009
|
+
|
1010
|
+
#: ../app/views/hosts/_form_puppet_enc_tab.html.erb:17
|
1011
|
+
msgid "Notice"
|
1012
|
+
msgstr ""
|
1013
|
+
|
1014
|
+
#: ../app/views/hosts/_form_puppet_enc_tab.html.erb:18
|
1015
|
+
msgid "Please select an environment first"
|
1016
|
+
msgstr ""
|
1017
|
+
|
1018
|
+
#: ../app/views/hosts/_form_puppet_enc_tab.html.erb:22
|
1019
|
+
msgid "Puppet Class Parameters"
|
1020
|
+
msgstr ""
|
1021
|
+
|
1022
|
+
#: ../app/views/hosts/select_multiple_environment.html.erb:4
|
1023
|
+
msgid "Select environment"
|
1024
|
+
msgstr ""
|
1025
|
+
|
1026
|
+
#: ../app/views/hosts/select_multiple_environment.html.erb:5
|
1027
|
+
msgid "*Clear environment*"
|
1028
|
+
msgstr ""
|
1029
|
+
|
1030
|
+
#: ../app/views/hosts/select_multiple_environment.html.erb:6
|
1031
|
+
msgid "*Inherit from host group*"
|
1032
|
+
msgstr ""
|
1033
|
+
|
1034
|
+
#: ../app/views/provisioning_templates/_combination.html.erb:2
|
1035
|
+
msgid "Hostgroup"
|
1036
|
+
msgstr ""
|
1037
|
+
|
1038
|
+
#: ../app/views/provisioning_templates/_combination.html.erb:4
|
1039
|
+
msgid "Remove Combination"
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../app/views/provisioning_templates/_combinations.html.erb:1
|
1043
|
+
msgid "Valid Host Group and Environment Combinations"
|
1044
|
+
msgstr ""
|
1045
|
+
|
1046
|
+
#: ../app/views/provisioning_templates/_combinations.html.erb:6
|
1047
|
+
msgid "Add Combination"
|
1048
|
+
msgstr ""
|
1049
|
+
|
1050
|
+
#: ../app/views/smart_proxies/plugins/_puppet.html.erb:3
|
1051
|
+
msgid "General"
|
1052
|
+
msgstr ""
|
1053
|
+
|
1054
|
+
#: ../app/views/smart_proxies/plugins/_puppet.html.erb:12
|
1055
|
+
msgid "Hosts managed:"
|
1056
|
+
msgstr ""
|
1057
|
+
|
1058
|
+
#: ../lib/foreman_puppet/register.rb:148 ../lib/foreman_puppet/register.rb:204
|
1059
|
+
msgid "Puppet ENC"
|
1060
|
+
msgstr ""
|
1061
|
+
|
1062
|
+
#: ../webpack/src/foreman_class_edit.js:146
|
1063
|
+
msgid "Click to remove config group"
|
1064
|
+
msgstr ""
|
1065
|
+
|
1066
|
+
#: ../webpack/src/foreman_class_edit.js:149
|
1067
|
+
msgid " Remove"
|
1068
|
+
msgstr ""
|
1069
|
+
|
1070
|
+
#: ../webpack/src/foreman_puppet_host_form.js:32
|
1071
|
+
msgid "Loading parameters..."
|
1072
|
+
msgstr ""
|
1073
|
+
|
1074
|
+
#: gemspec.rb:2
|
1075
|
+
msgid "TODO: Description of ForemanPuppetEnc."
|
1076
|
+
msgstr ""
|