foreman_puppet 5.1.1 → 5.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/app/models/concerns/foreman_puppet/extensions/host.rb +1 -1
  3. data/app/views/foreman_puppet/common/_puppetclasses_or_envs_changed.html.erb +5 -0
  4. data/app/views/foreman_puppet/environments/welcome.html.erb +5 -0
  5. data/app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb +1 -1
  6. data/app/views/foreman_puppet/puppetclasses/_selected_classes.html.erb +6 -1
  7. data/app/views/hosts/select_multiple_puppet_proxy.html.erb +5 -0
  8. data/app/views/smart_proxies/plugins/_puppet.html.erb +1 -2
  9. data/lib/foreman_puppet/version.rb +1 -1
  10. data/locale/ca/foreman_puppet.edit.po +32 -27
  11. data/locale/cs_CZ/foreman_puppet.edit.po +36 -40
  12. data/locale/de/foreman_puppet.edit.po +36 -40
  13. data/locale/en/foreman_puppet.edit.po +32 -24
  14. data/locale/en_GB/foreman_puppet.edit.po +36 -37
  15. data/locale/es/foreman_puppet.edit.po +36 -40
  16. data/locale/fr/foreman_puppet.edit.po +36 -53
  17. data/locale/gl/foreman_puppet.edit.po +32 -24
  18. data/locale/it/foreman_puppet.edit.po +36 -37
  19. data/locale/ja/foreman_puppet.edit.po +36 -51
  20. data/locale/ka/foreman_puppet.edit.po +36 -53
  21. data/locale/ko/foreman_puppet.edit.po +36 -40
  22. data/locale/nl_NL/foreman_puppet.edit.po +32 -24
  23. data/locale/pl/foreman_puppet.edit.po +32 -24
  24. data/locale/pt_BR/foreman_puppet.edit.po +36 -40
  25. data/locale/ru/foreman_puppet.edit.po +36 -40
  26. data/locale/sv_SE/foreman_puppet.edit.po +32 -24
  27. data/locale/zh_CN/foreman_puppet.edit.po +36 -50
  28. data/locale/zh_TW/foreman_puppet.edit.po +36 -40
  29. data/webpack/src/Components/Environments/Welcome.js +1 -1
  30. data/webpack/src/Extends/Host/PuppetTab/index.js +1 -0
  31. data/webpack/src/foreman_puppet_host_form.js +3 -0
  32. metadata +10 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bb32ba667a6cad7d45b0f986f3069761f4ac9585ac712b31753e1dfdbedb3df
4
- data.tar.gz: d4357cbf1e9fb01d38cd481c03c31665de2111c664d2b6bb5c79b3623cede524
3
+ metadata.gz: 13287bd6735ead7004a91154aee817b19ae0a7b2536029d3698a049df889ebb4
4
+ data.tar.gz: 29e2707670216cbec4d37c018a43bae56d5c7f6d36ac1c1c9da5fd15b017b31a
5
5
  SHA512:
6
- metadata.gz: 13149fb7c821ff36f35f072fc99114cc04d7d8cd6887bb7a8d3613d4c956f6ac3ec04900039f4f2e698f2b71e2cacf2d9e91f34a0ecc0ce36f3232f814adeb7f
7
- data.tar.gz: fc448f84b1bce197fded691804679dead4c27fdf952bdcd586b9f15f08db90252dfb50fe13157c0aab3682c7feb310b31a0c43c3a7b4ea18e7a565f45bc3de4d
6
+ metadata.gz: cb80d5437f41d923e5419ca8e2ac62d62c4418a75675bd46099f751d9d23ef69f563fdc643d9d8cd63a180367e5238f66b72efca939873c630822ceb1b854d14
7
+ data.tar.gz: ea6b2a694c53820a945e7981eb412dbdcc7e69759338f86c1c1f1f27892d9c2a451b8ddbb414d6441e55447cae96f1c89ee63982428f30aa4bb113d3e75dd8c0
@@ -30,7 +30,7 @@ module ForemanPuppet
30
30
  def search_by_puppetclass(_key, operator, value)
31
31
  conditions = sanitize_sql_for_conditions(["puppetclasses.name #{operator} ?", value_to_sql(operator, value)])
32
32
  config_group_ids = ForemanPuppet::ConfigGroup.joins(:puppetclasses).where(conditions).pluck(:id)
33
- host_ids = ::Host.authorized(:view_hosts, Host).joins(puppet: :puppetclasses).where(conditions).distinct.pluck(:id)
33
+ host_ids = ::Host.authorized(:view_hosts).joins(puppet: :puppetclasses).where(conditions).distinct.pluck(:id)
34
34
  host_ids += ForemanPuppet::HostConfigGroup
35
35
  .where(host_type: 'ForemanPuppet::HostPuppetFacet')
36
36
  .where(config_group_id: config_group_ids)
@@ -1,4 +1,9 @@
1
1
  <% title _("Changed environments") %>
2
+ <%= breadcrumbs(switchable: false,
3
+ items: [
4
+ { caption: _('Puppet Environments'), url: environments_path },
5
+ { caption: _('Changed environments') }
6
+ ]) %>
2
7
  <%= form_tag controller.send("obsolete_and_new_#{controller_name}_path") do %>
3
8
  <h4><%= _("Select the changes you want to apply to Foreman") %></h4>
4
9
  <h6>
@@ -1,4 +1,9 @@
1
1
  <% content_for(:title, _("Puppet environments")) %>
2
+ <%= breadcrumbs(switchable: false,
3
+ items: [
4
+ { caption: _('Puppet Environments'), url: environments_path },
5
+ { caption: @page_header }
6
+ ]) %>
2
7
 
3
8
  <%= webpacked_plugins_js_for :foreman_puppet %>
4
9
  <%= react_component('WelcomeEnv', {canCreate: authorized_for(action: :new)}) %>
@@ -7,5 +7,5 @@
7
7
  :iconType => 'fa',
8
8
  :header => _('Smart Class Parameters'),
9
9
  :description => description,
10
- :documentation => { :url => documentation_url("4.2.5ParameterizedClasses") },
10
+ :documentation => { :url => documentation_url("4.2.5SmartMatchers") },
11
11
  }) %>
@@ -1,4 +1,9 @@
1
- <%= content_tag :li, id: "selected_puppetclass_#{klass.id}", class: [dom_class(klass, 'selected'), cycle('even', 'odd'), ('unavailable' unless klass.environments.include?(@environment))] do %>
1
+ <%
2
+ id = "selected_puppetclass_#{klass.id}"
3
+ css = [dom_class(klass, 'selected'), cycle('even', 'odd')]
4
+ css << 'unavailable' unless klass.environments.include?(obj.try(:environment).presence || @environment)
5
+ %>
6
+ <%= content_tag :li, id: id, class: css do %>
2
7
  <%= link_to_remove_puppetclass(klass, obj) %>
3
8
  <%= hidden_field_tag "#{resource_type}[puppetclass_ids][]", klass.id %>
4
9
  <% end %>
@@ -0,0 +1,5 @@
1
+ <%= render 'selected_hosts', :hosts => @hosts %>
2
+
3
+ <%= form_for :proxy, :url => foreman_puppet.update_multiple_puppet_proxy_hosts_path(:host_ids => params[:host_ids]) do |f| %>
4
+ <%= multiple_proxy_select(f, 'Puppet') %>
5
+ <% end %>
@@ -1,4 +1,3 @@
1
- <% javascript 'charts' %>
2
1
  <ul id="proxy-puppet-tab" class="nav nav-tabs nav-tabs-pf">
3
2
  <li class="active"><a href="#puppet_dashboard" data-toggle="tab"><%= _('General')%></a></li>
4
3
  <li><a href="#puppet_envs" data-toggle="tab"><%= _('Environments') %></a></li>
@@ -16,7 +15,7 @@
16
15
  </div>
17
16
  </div>
18
17
  </div>
19
- <div class="clearfix row container-cards-pf container-fluid" data-ajax-url="<%= foreman_puppet.dashboard_puppet_smart_proxy_path(@smart_proxy) %>" data-on-complete="refreshCharts"><%= spinner %></div>
18
+ <div class="clearfix row container-cards-pf container-fluid" data-ajax-url="<%= foreman_puppet.dashboard_puppet_smart_proxy_path(@smart_proxy) %>"><%= spinner %></div>
20
19
  </div>
21
20
  <div class="tab-pane" id="puppet_envs" data-ajax-url="<%= foreman_puppet.environments_puppet_smart_proxy_path(@smart_proxy) %>">
22
21
  <%= spinner %>
@@ -1,3 +1,3 @@
1
1
  module ForemanPuppet
2
- VERSION = '5.1.1'.freeze
2
+ VERSION = '5.1.3'.freeze
3
3
  end
@@ -193,7 +193,7 @@ msgstr[1] ""
193
193
  msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
194
194
  msgstr ""
195
195
 
196
- #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:229 ../webpack/src/Extends/Fills/index.js:12
196
+ #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:231 ../webpack/src/Extends/Fills/index.js:12
197
197
  msgid "Puppet"
198
198
  msgstr "Puppet"
199
199
 
@@ -753,7 +753,7 @@ msgstr "Grups de configuracions disponibles"
753
753
  msgid "Edit %s"
754
754
  msgstr "Edita %s"
755
755
 
756
- #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:172
756
+ #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:174
757
757
  msgid "Config Groups"
758
758
  msgstr "Grups de configuracions"
759
759
 
@@ -793,7 +793,7 @@ msgstr "Ubicacions"
793
793
  msgid "Organizations"
794
794
  msgstr "Organitzacions"
795
795
 
796
- #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4
796
+ #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4 ../app/views/foreman_puppet/environments/welcome.html.erb:4 ../webpack/src/Components/Environments/Welcome.js:40
797
797
  msgid "Puppet Environments"
798
798
  msgstr "Entorns de Puppet"
799
799
 
@@ -801,7 +801,7 @@ msgstr "Entorns de Puppet"
801
801
  msgid "Environment|Name"
802
802
  msgstr "Nom"
803
803
 
804
- #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:169
804
+ #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:171
805
805
  msgid "Classes"
806
806
  msgstr "Classes"
807
807
 
@@ -829,7 +829,7 @@ msgstr ""
829
829
  msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
830
830
  msgstr ""
831
831
 
832
- #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:175
832
+ #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:177
833
833
  msgid "Smart Class Parameters"
834
834
  msgstr "Paràmetres de les classes intel·ligents"
835
835
 
@@ -925,7 +925,7 @@ msgstr "Edita la classe de Puppet %s"
925
925
  msgid "Puppetclass|Name"
926
926
  msgstr "Nom"
927
927
 
928
- #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:166 ../webpack/src/Components/Environments/Welcome.js:40
928
+ #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:168
929
929
  msgid "Environments"
930
930
  msgstr "Entorns"
931
931
 
@@ -997,59 +997,59 @@ msgstr "General"
997
997
  msgid "Hosts managed:"
998
998
  msgstr ""
999
999
 
1000
- #: ../lib/foreman_puppet/register.rb:7
1000
+ #: ../lib/foreman_puppet/register.rb:9
1001
1001
  msgid "Facts"
1002
1002
  msgstr "Objectes d'interès"
1003
1003
 
1004
- #: ../lib/foreman_puppet/register.rb:10
1004
+ #: ../lib/foreman_puppet/register.rb:12
1005
1005
  msgid "Foreman will default to this puppet environment if it cannot auto detect one"
1006
1006
  msgstr "Foreman utilitzarà per defecte aquest entorn de puppet si no en pot detectar automàticament un"
1007
1007
 
1008
- #: ../lib/foreman_puppet/register.rb:12
1008
+ #: ../lib/foreman_puppet/register.rb:14
1009
1009
  msgid "Default Puppet environment"
1010
1010
  msgstr "Entorn de Puppet per defecte"
1011
1011
 
1012
- #: ../lib/foreman_puppet/register.rb:16
1012
+ #: ../lib/foreman_puppet/register.rb:18
1013
1013
  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"
1014
1014
  msgstr "Foreman establirà explícitament l'entorn de puppet a la sortida YAML ENC. Això evitarà conflictes entre l'entorn establert al puppet.conf i l'entorn establert a Foreman"
1015
1015
 
1016
- #: ../lib/foreman_puppet/register.rb:19
1016
+ #: ../lib/foreman_puppet/register.rb:21
1017
1017
  msgid "ENC environment"
1018
1018
  msgstr "Entorn ENC"
1019
1019
 
1020
- #: ../lib/foreman_puppet/register.rb:22
1020
+ #: ../lib/foreman_puppet/register.rb:24
1021
1021
  msgid "Foreman will update a host's environment from its facts"
1022
1022
  msgstr "Foreman actualitzarà l'entorn d'un amfitrió a partir dels seus objectes d'interès"
1023
1023
 
1024
- #: ../lib/foreman_puppet/register.rb:24
1024
+ #: ../lib/foreman_puppet/register.rb:26
1025
1025
  msgid "Update environment from facts"
1026
1026
  msgstr "Actualitza l'entorn des dels objectes d'interès"
1027
1027
 
1028
- #: ../lib/foreman_puppet/register.rb:27
1028
+ #: ../lib/foreman_puppet/register.rb:29
1029
1029
  msgid "Config Management"
1030
1030
  msgstr "Gestió de la configuració"
1031
1031
 
1032
- #: ../lib/foreman_puppet/register.rb:30
1032
+ #: ../lib/foreman_puppet/register.rb:32
1033
1033
  msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
1034
1034
  msgstr ""
1035
1035
 
1036
- #: ../lib/foreman_puppet/register.rb:32
1036
+ #: ../lib/foreman_puppet/register.rb:34
1037
1037
  msgid "Puppet interval"
1038
1038
  msgstr "Interval de Puppet"
1039
1039
 
1040
- #: ../lib/foreman_puppet/register.rb:35
1040
+ #: ../lib/foreman_puppet/register.rb:37
1041
1041
  msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
1042
1042
  msgstr ""
1043
1043
 
1044
- #: ../lib/foreman_puppet/register.rb:37
1044
+ #: ../lib/foreman_puppet/register.rb:39
1045
1045
  msgid "%s out of sync disabled"
1046
1046
  msgstr ""
1047
1047
 
1048
- #: ../lib/foreman_puppet/register.rb:163 ../lib/foreman_puppet/register.rb:216
1048
+ #: ../lib/foreman_puppet/register.rb:165 ../lib/foreman_puppet/register.rb:218
1049
1049
  msgid "Puppet ENC"
1050
1050
  msgstr ""
1051
1051
 
1052
- #: ../lib/foreman_puppet/register.rb:230
1052
+ #: ../lib/foreman_puppet/register.rb:232
1053
1053
  msgid "Puppet env"
1054
1054
  msgstr ""
1055
1055
 
@@ -1073,6 +1073,14 @@ msgstr ""
1073
1073
  msgid "Smart class parameters"
1074
1074
  msgstr "Paràmetres de la classe intel·ligent"
1075
1075
 
1076
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:43
1077
+ msgid "Successfully copied to clipboard!"
1078
+ msgstr ""
1079
+
1080
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:44
1081
+ msgid "Copy to clipboard"
1082
+ msgstr ""
1083
+
1076
1084
  #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/index.js:28
1077
1085
  msgid "Couldn't find any ENC data for this host"
1078
1086
  msgstr ""
@@ -1122,24 +1130,21 @@ msgid "Some Puppet Classes are unavailable in the selected environment"
1122
1130
  msgstr ""
1123
1131
 
1124
1132
  #: action_names.rb:2
1125
- msgid "Remote action:"
1133
+ msgid "Action with sub plans"
1126
1134
  msgstr ""
1127
1135
 
1128
1136
  #: action_names.rb:3
1129
- msgid "»Action with sub plans«"
1137
+ msgid "Import facts"
1130
1138
  msgstr ""
1131
1139
 
1132
1140
  #: action_names.rb:4
1133
- msgid "»Import Puppet classes«"
1141
+ msgid "Import Puppet classes"
1134
1142
  msgstr ""
1135
1143
 
1136
1144
  #: action_names.rb:5
1137
- msgid "»Import facts«"
1145
+ msgid "Remote action:"
1138
1146
  msgstr ""
1139
1147
 
1140
1148
  #: gemspec.rb:2
1141
1149
  msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
1142
1150
  msgstr ""
1143
-
1144
- #~ msgid "Environment name"
1145
- #~ msgstr "Nom de l'entorn"
@@ -198,7 +198,7 @@ msgstr[1] ""
198
198
  msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
199
199
  msgstr ""
200
200
 
201
- #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:229 ../webpack/src/Extends/Fills/index.js:12
201
+ #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:231 ../webpack/src/Extends/Fills/index.js:12
202
202
  msgid "Puppet"
203
203
  msgstr "Puppet"
204
204
 
@@ -758,7 +758,7 @@ msgstr "Skupiny nastavení k dispozici"
758
758
  msgid "Edit %s"
759
759
  msgstr "Upravit %s"
760
760
 
761
- #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:172
761
+ #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:174
762
762
  msgid "Config Groups"
763
763
  msgstr ""
764
764
 
@@ -798,7 +798,7 @@ msgstr "Umístění"
798
798
  msgid "Organizations"
799
799
  msgstr "Organizace"
800
800
 
801
- #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4
801
+ #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4 ../app/views/foreman_puppet/environments/welcome.html.erb:4 ../webpack/src/Components/Environments/Welcome.js:40
802
802
  msgid "Puppet Environments"
803
803
  msgstr "Puppet prostředí"
804
804
 
@@ -806,7 +806,7 @@ msgstr "Puppet prostředí"
806
806
  msgid "Environment|Name"
807
807
  msgstr "Environment|Název"
808
808
 
809
- #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:169
809
+ #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:171
810
810
  msgid "Classes"
811
811
  msgstr "Třídy"
812
812
 
@@ -834,7 +834,7 @@ msgstr "Nebylo nalezeno žádné prostředí"
834
834
  msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
835
835
  msgstr ""
836
836
 
837
- #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:175
837
+ #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:177
838
838
  msgid "Smart Class Parameters"
839
839
  msgstr ""
840
840
 
@@ -930,7 +930,7 @@ msgstr "Upravit puppet třídu %s"
930
930
  msgid "Puppetclass|Name"
931
931
  msgstr "Puppetclass|Název"
932
932
 
933
- #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:166 ../webpack/src/Components/Environments/Welcome.js:40
933
+ #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:168
934
934
  msgid "Environments"
935
935
  msgstr "Prostředí"
936
936
 
@@ -1002,59 +1002,59 @@ msgstr "Obecné"
1002
1002
  msgid "Hosts managed:"
1003
1003
  msgstr "Spravované stroje:"
1004
1004
 
1005
- #: ../lib/foreman_puppet/register.rb:7
1005
+ #: ../lib/foreman_puppet/register.rb:9
1006
1006
  msgid "Facts"
1007
1007
  msgstr "Fakta"
1008
1008
 
1009
- #: ../lib/foreman_puppet/register.rb:10
1009
+ #: ../lib/foreman_puppet/register.rb:12
1010
1010
  msgid "Foreman will default to this puppet environment if it cannot auto detect one"
1011
1011
  msgstr ""
1012
1012
 
1013
- #: ../lib/foreman_puppet/register.rb:12
1013
+ #: ../lib/foreman_puppet/register.rb:14
1014
1014
  msgid "Default Puppet environment"
1015
1015
  msgstr ""
1016
1016
 
1017
- #: ../lib/foreman_puppet/register.rb:16
1017
+ #: ../lib/foreman_puppet/register.rb:18
1018
1018
  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"
1019
1019
  msgstr ""
1020
1020
 
1021
- #: ../lib/foreman_puppet/register.rb:19
1021
+ #: ../lib/foreman_puppet/register.rb:21
1022
1022
  msgid "ENC environment"
1023
1023
  msgstr "ENC prostředí"
1024
1024
 
1025
- #: ../lib/foreman_puppet/register.rb:22
1025
+ #: ../lib/foreman_puppet/register.rb:24
1026
1026
  msgid "Foreman will update a host's environment from its facts"
1027
1027
  msgstr ""
1028
1028
 
1029
- #: ../lib/foreman_puppet/register.rb:24
1029
+ #: ../lib/foreman_puppet/register.rb:26
1030
1030
  msgid "Update environment from facts"
1031
1031
  msgstr "Aktualizovat prostředí z faktů"
1032
1032
 
1033
- #: ../lib/foreman_puppet/register.rb:27
1033
+ #: ../lib/foreman_puppet/register.rb:29
1034
1034
  msgid "Config Management"
1035
1035
  msgstr "Správa nastavení"
1036
1036
 
1037
- #: ../lib/foreman_puppet/register.rb:30
1037
+ #: ../lib/foreman_puppet/register.rb:32
1038
1038
  msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
1039
1039
  msgstr ""
1040
1040
 
1041
- #: ../lib/foreman_puppet/register.rb:32
1041
+ #: ../lib/foreman_puppet/register.rb:34
1042
1042
  msgid "Puppet interval"
1043
1043
  msgstr ""
1044
1044
 
1045
- #: ../lib/foreman_puppet/register.rb:35
1045
+ #: ../lib/foreman_puppet/register.rb:37
1046
1046
  msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
1047
1047
  msgstr ""
1048
1048
 
1049
- #: ../lib/foreman_puppet/register.rb:37
1049
+ #: ../lib/foreman_puppet/register.rb:39
1050
1050
  msgid "%s out of sync disabled"
1051
1051
  msgstr ""
1052
1052
 
1053
- #: ../lib/foreman_puppet/register.rb:163 ../lib/foreman_puppet/register.rb:216
1053
+ #: ../lib/foreman_puppet/register.rb:165 ../lib/foreman_puppet/register.rb:218
1054
1054
  msgid "Puppet ENC"
1055
1055
  msgstr ""
1056
1056
 
1057
- #: ../lib/foreman_puppet/register.rb:230
1057
+ #: ../lib/foreman_puppet/register.rb:232
1058
1058
  msgid "Puppet env"
1059
1059
  msgstr ""
1060
1060
 
@@ -1078,6 +1078,14 @@ msgstr ""
1078
1078
  msgid "Smart class parameters"
1079
1079
  msgstr ""
1080
1080
 
1081
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:43
1082
+ msgid "Successfully copied to clipboard!"
1083
+ msgstr ""
1084
+
1085
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:44
1086
+ msgid "Copy to clipboard"
1087
+ msgstr ""
1088
+
1081
1089
  #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/index.js:28
1082
1090
  msgid "Couldn't find any ENC data for this host"
1083
1091
  msgstr ""
@@ -1127,33 +1135,21 @@ msgid "Some Puppet Classes are unavailable in the selected environment"
1127
1135
  msgstr ""
1128
1136
 
1129
1137
  #: action_names.rb:2
1130
- msgid "Remote action:"
1131
- msgstr "Akce na protějšku:"
1138
+ msgid "Action with sub plans"
1139
+ msgstr "Akce s dílčími plány"
1132
1140
 
1133
1141
  #: action_names.rb:3
1134
- msgid "»Action with sub plans«"
1135
- msgstr ""
1142
+ msgid "Import facts"
1143
+ msgstr "Importovat fakta"
1136
1144
 
1137
1145
  #: action_names.rb:4
1138
- msgid "»Import Puppet classes«"
1139
- msgstr ""
1146
+ msgid "Import Puppet classes"
1147
+ msgstr "Importovat Puppet třídy"
1140
1148
 
1141
1149
  #: action_names.rb:5
1142
- msgid "»Import facts«"
1143
- msgstr ""
1150
+ msgid "Remote action:"
1151
+ msgstr "Akce na protějšku:"
1144
1152
 
1145
1153
  #: gemspec.rb:2
1146
1154
  msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
1147
1155
  msgstr ""
1148
-
1149
- #~ msgid "Action with sub plans"
1150
- #~ msgstr "Akce s dílčími plány"
1151
-
1152
- #~ msgid "Environment name"
1153
- #~ msgstr "Název prostředí"
1154
-
1155
- #~ msgid "Import Puppet classes"
1156
- #~ msgstr "Importovat Puppet třídy"
1157
-
1158
- #~ msgid "Import facts"
1159
- #~ msgstr "Importovat fakta"
@@ -210,7 +210,7 @@ msgstr[1] "Der %{proxy_type} Puppet CA Proxy konnte für folgende Systeme nicht
210
210
  msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
211
211
  msgstr "Der %{proxy_type} Proxy der ausgewählten Hosts wurde auf %{proxy_name} gesetzt."
212
212
 
213
- #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:229 ../webpack/src/Extends/Fills/index.js:12
213
+ #: ../app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb:204 ../lib/foreman_puppet/register.rb:231 ../webpack/src/Extends/Fills/index.js:12
214
214
  msgid "Puppet"
215
215
  msgstr "Puppet"
216
216
 
@@ -780,7 +780,7 @@ msgstr "Verfügbare Konfigurationsgruppen"
780
780
  msgid "Edit %s"
781
781
  msgstr "%s bearbeiten"
782
782
 
783
- #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:172
783
+ #: ../app/views/foreman_puppet/config_groups/index.html.erb:3 ../app/views/foreman_puppet/config_groups/welcome.html.erb:1 ../app/views/foreman_puppet/config_groups/welcome.html.erb:9 ../lib/foreman_puppet/register.rb:174
784
784
  msgid "Config Groups"
785
785
  msgstr "Konfigurationsgruppen"
786
786
 
@@ -820,7 +820,7 @@ msgstr "Standorte"
820
820
  msgid "Organizations"
821
821
  msgstr "Organisationen"
822
822
 
823
- #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4
823
+ #: ../app/views/foreman_puppet/environments/edit.html.erb:5 ../app/views/foreman_puppet/environments/index.html.erb:1 ../app/views/foreman_puppet/environments/new.html.erb:4 ../app/views/foreman_puppet/environments/welcome.html.erb:4 ../webpack/src/Components/Environments/Welcome.js:40
824
824
  msgid "Puppet Environments"
825
825
  msgstr "Puppet-Umgebungen"
826
826
 
@@ -828,7 +828,7 @@ msgstr "Puppet-Umgebungen"
828
828
  msgid "Environment|Name"
829
829
  msgstr "Name"
830
830
 
831
- #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:169
831
+ #: ../app/views/foreman_puppet/environments/index.html.erb:22 ../lib/foreman_puppet/register.rb:171
832
832
  msgid "Classes"
833
833
  msgstr "Klassen"
834
834
 
@@ -856,7 +856,7 @@ msgstr "Keine Umgebungen gefunden"
856
856
  msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
857
857
  msgstr "Auf diesem Puppet-Master sind keine Puppet-Umgebungen eingerichtet. Bitte überprüfen Sie die Konfiguration des Puppet-Master."
858
858
 
859
- #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:175
859
+ #: ../app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:1 ../app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb:8 ../lib/foreman_puppet/register.rb:177
860
860
  msgid "Smart Class Parameters"
861
861
  msgstr "Smart-Class-Parameter"
862
862
 
@@ -952,7 +952,7 @@ msgstr "Puppet-Klasse %s bearbeiten"
952
952
  msgid "Puppetclass|Name"
953
953
  msgstr "Name"
954
954
 
955
- #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:166 ../webpack/src/Components/Environments/Welcome.js:40
955
+ #: ../app/views/foreman_puppet/puppetclasses/index.html.erb:10 ../app/views/smart_proxies/plugins/_puppet.html.erb:4 ../lib/foreman_puppet/register.rb:168
956
956
  msgid "Environments"
957
957
  msgstr "Umgebungen"
958
958
 
@@ -1024,59 +1024,59 @@ msgstr "Allgemein"
1024
1024
  msgid "Hosts managed:"
1025
1025
  msgstr "Verwaltete Hosts:"
1026
1026
 
1027
- #: ../lib/foreman_puppet/register.rb:7
1027
+ #: ../lib/foreman_puppet/register.rb:9
1028
1028
  msgid "Facts"
1029
1029
  msgstr "Fakten"
1030
1030
 
1031
- #: ../lib/foreman_puppet/register.rb:10
1031
+ #: ../lib/foreman_puppet/register.rb:12
1032
1032
  msgid "Foreman will default to this puppet environment if it cannot auto detect one"
1033
1033
  msgstr "Foreman nutzt standardmäßig diese Puppet-Umgebung, falls automatisch keine Umgebung gefunden werden kann"
1034
1034
 
1035
- #: ../lib/foreman_puppet/register.rb:12
1035
+ #: ../lib/foreman_puppet/register.rb:14
1036
1036
  msgid "Default Puppet environment"
1037
1037
  msgstr "Standardmäßige Puppet-Umgebung"
1038
1038
 
1039
- #: ../lib/foreman_puppet/register.rb:16
1039
+ #: ../lib/foreman_puppet/register.rb:18
1040
1040
  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"
1041
1041
  msgstr "Foreman legt ausdrücklich die Puppet-Umgebung in der ENC-yaml-Ausgabe fest. Dies vermeidet Konflikte zwischen der Umgebung in der puppet.conf und der in Foreman festgelegten Umgebung"
1042
1042
 
1043
- #: ../lib/foreman_puppet/register.rb:19
1043
+ #: ../lib/foreman_puppet/register.rb:21
1044
1044
  msgid "ENC environment"
1045
1045
  msgstr "ENC-Umgebung"
1046
1046
 
1047
- #: ../lib/foreman_puppet/register.rb:22
1047
+ #: ../lib/foreman_puppet/register.rb:24
1048
1048
  msgid "Foreman will update a host's environment from its facts"
1049
1049
  msgstr "Foreman aktualisiert die Umgebung eines Hosts basierend auf dessen Fakten"
1050
1050
 
1051
- #: ../lib/foreman_puppet/register.rb:24
1051
+ #: ../lib/foreman_puppet/register.rb:26
1052
1052
  msgid "Update environment from facts"
1053
1053
  msgstr "Umgebung nach Fakten aktualisieren"
1054
1054
 
1055
- #: ../lib/foreman_puppet/register.rb:27
1055
+ #: ../lib/foreman_puppet/register.rb:29
1056
1056
  msgid "Config Management"
1057
1057
  msgstr "Konfigurationsmanagement"
1058
1058
 
1059
- #: ../lib/foreman_puppet/register.rb:30
1059
+ #: ../lib/foreman_puppet/register.rb:32
1060
1060
  msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
1061
1061
  msgstr "Zeitraum in Minuten, nachdem Server, welche über Puppet Rückmeldung geben, als \"nicht-synchronisiert\" klassifiziert werden."
1062
1062
 
1063
- #: ../lib/foreman_puppet/register.rb:32
1063
+ #: ../lib/foreman_puppet/register.rb:34
1064
1064
  msgid "Puppet interval"
1065
1065
  msgstr "Puppet-Intervall"
1066
1066
 
1067
- #: ../lib/foreman_puppet/register.rb:35
1067
+ #: ../lib/foreman_puppet/register.rb:37
1068
1068
  msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
1069
1069
  msgstr "Deaktiviere Host Konfigurations Status Änderung zu \"nicht-snychronisiert\" für %s falls der Bericht nicht im konfigurierten Intervall ankommt"
1070
1070
 
1071
- #: ../lib/foreman_puppet/register.rb:37
1071
+ #: ../lib/foreman_puppet/register.rb:39
1072
1072
  msgid "%s out of sync disabled"
1073
1073
  msgstr "%s \"nicht-synchronisiert\" deaktiviert"
1074
1074
 
1075
- #: ../lib/foreman_puppet/register.rb:163 ../lib/foreman_puppet/register.rb:216
1075
+ #: ../lib/foreman_puppet/register.rb:165 ../lib/foreman_puppet/register.rb:218
1076
1076
  msgid "Puppet ENC"
1077
1077
  msgstr "Puppet ENC"
1078
1078
 
1079
- #: ../lib/foreman_puppet/register.rb:230
1079
+ #: ../lib/foreman_puppet/register.rb:232
1080
1080
  msgid "Puppet env"
1081
1081
  msgstr ""
1082
1082
 
@@ -1100,6 +1100,14 @@ msgstr ""
1100
1100
  msgid "Smart class parameters"
1101
1101
  msgstr "Smart-Klassenparameter"
1102
1102
 
1103
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:43
1104
+ msgid "Successfully copied to clipboard!"
1105
+ msgstr ""
1106
+
1107
+ #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/ENCTab.js:44
1108
+ msgid "Copy to clipboard"
1109
+ msgstr ""
1110
+
1103
1111
  #: ../webpack/src/Extends/Host/PuppetTab/SubTabs/ENCPreview/index.js:28
1104
1112
  msgid "Couldn't find any ENC data for this host"
1105
1113
  msgstr ""
@@ -1149,33 +1157,21 @@ msgid "Some Puppet Classes are unavailable in the selected environment"
1149
1157
  msgstr "Einige Puppet-Klassen sind in der ausgewählten Umgebung nicht verfügbar"
1150
1158
 
1151
1159
  #: action_names.rb:2
1152
- msgid "Remote action:"
1153
- msgstr "Entfernte Aktion:"
1160
+ msgid "Action with sub plans"
1161
+ msgstr "Aktion mit Unterplänen"
1154
1162
 
1155
1163
  #: action_names.rb:3
1156
- msgid "»Action with sub plans«"
1157
- msgstr ""
1164
+ msgid "Import facts"
1165
+ msgstr "Fakten importieren"
1158
1166
 
1159
1167
  #: action_names.rb:4
1160
- msgid "»Import Puppet classes«"
1161
- msgstr ""
1168
+ msgid "Import Puppet classes"
1169
+ msgstr "Puppet-Klassen importieren"
1162
1170
 
1163
1171
  #: action_names.rb:5
1164
- msgid "»Import facts«"
1165
- msgstr ""
1172
+ msgid "Remote action:"
1173
+ msgstr "Entfernte Aktion:"
1166
1174
 
1167
1175
  #: gemspec.rb:2
1168
1176
  msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
1169
1177
  msgstr "Erlauben Sie es Puppet-Umgebungen und -Klassenzu Foreman-Hosts zuzuweisen"
1170
-
1171
- #~ msgid "Action with sub plans"
1172
- #~ msgstr "Aktion mit Unterplänen"
1173
-
1174
- #~ msgid "Environment name"
1175
- #~ msgstr "Umgebungsname"
1176
-
1177
- #~ msgid "Import Puppet classes"
1178
- #~ msgstr "Puppet-Klassen importieren"
1179
-
1180
- #~ msgid "Import facts"
1181
- #~ msgstr "Fakten importieren"