foreman_puppet 7.0.0 → 8.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/app/assets/javascripts/foreman_puppet/locale/ca/foreman_puppet.js +498 -510
- data/app/assets/javascripts/foreman_puppet/locale/cs_CZ/foreman_puppet.js +487 -499
- data/app/assets/javascripts/foreman_puppet/locale/de/foreman_puppet.js +569 -581
- data/app/assets/javascripts/foreman_puppet/locale/en/foreman_puppet.js +292 -304
- data/app/assets/javascripts/foreman_puppet/locale/en_GB/foreman_puppet.js +329 -341
- data/app/assets/javascripts/foreman_puppet/locale/es/foreman_puppet.js +566 -578
- data/app/assets/javascripts/foreman_puppet/locale/fr/foreman_puppet.js +572 -584
- data/app/assets/javascripts/foreman_puppet/locale/gl/foreman_puppet.js +402 -414
- data/app/assets/javascripts/foreman_puppet/locale/it/foreman_puppet.js +508 -520
- data/app/assets/javascripts/foreman_puppet/locale/ja/foreman_puppet.js +569 -581
- data/app/assets/javascripts/foreman_puppet/locale/ka/foreman_puppet.js +572 -584
- data/app/assets/javascripts/foreman_puppet/locale/ko/foreman_puppet.js +536 -548
- data/app/assets/javascripts/foreman_puppet/locale/nl_NL/foreman_puppet.js +481 -493
- data/app/assets/javascripts/foreman_puppet/locale/pl/foreman_puppet.js +533 -545
- data/app/assets/javascripts/foreman_puppet/locale/pt_BR/foreman_puppet.js +566 -578
- data/app/assets/javascripts/foreman_puppet/locale/ru/foreman_puppet.js +539 -551
- data/app/assets/javascripts/foreman_puppet/locale/sv_SE/foreman_puppet.js +440 -452
- data/app/assets/javascripts/foreman_puppet/locale/zh_CN/foreman_puppet.js +569 -581
- data/app/assets/javascripts/foreman_puppet/locale/zh_TW/foreman_puppet.js +535 -547
- data/app/models/concerns/foreman_puppet/extensions/host.rb +3 -4
- data/app/models/concerns/foreman_puppet/extensions/provisioning_template.rb +3 -2
- data/lib/foreman_puppet/engine.rb +5 -7
- data/lib/foreman_puppet/register.rb +1 -1
- data/lib/foreman_puppet/version.rb +1 -1
- data/locale/Makefile +12 -2
- data/locale/ca/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ca/foreman_puppet.po +5 -17
- data/locale/cs_CZ/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/cs_CZ/foreman_puppet.po +5 -17
- data/locale/de/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/de/foreman_puppet.po +10 -22
- data/locale/en/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/en/foreman_puppet.po +10 -20
- data/locale/en_GB/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/en_GB/foreman_puppet.po +7 -19
- data/locale/es/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/es/foreman_puppet.po +26 -37
- data/locale/fr/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/fr/foreman_puppet.po +49 -59
- data/locale/gl/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/gl/foreman_puppet.po +5 -17
- data/locale/it/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/it/foreman_puppet.po +8 -20
- data/locale/ja/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ja/foreman_puppet.po +30 -43
- data/locale/ka/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ka/foreman_puppet.po +9 -21
- data/locale/ko/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ko/foreman_puppet.po +5 -17
- data/locale/nl_NL/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/nl_NL/foreman_puppet.po +5 -17
- data/locale/pl/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/pl/foreman_puppet.po +5 -17
- data/locale/pt_BR/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/pt_BR/foreman_puppet.po +26 -36
- data/locale/ru/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/ru/foreman_puppet.po +9 -21
- data/locale/sv_SE/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/sv_SE/foreman_puppet.po +5 -17
- data/locale/zh_CN/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/zh_CN/foreman_puppet.po +32 -42
- data/locale/zh_TW/LC_MESSAGES/foreman_puppet.mo +0 -0
- data/locale/zh_TW/foreman_puppet.po +5 -17
- data/test/integration/foreman_puppet/hostgroup_js_test.rb +1 -0
- data/test/models/foreman_puppet/environment_test.rb +2 -2
- data/test/models/foreman_puppet/provisioning_template_test.rb +1 -1
- metadata +5 -6
- data/locale/action_names.rb +0 -5
@@ -24,10 +24,9 @@ module ForemanPuppet
|
|
24
24
|
conditions = sanitize_sql_for_conditions(["puppetclasses.name #{operator} ?", value_to_sql(operator, value)])
|
25
25
|
config_group_ids = ForemanPuppet::ConfigGroup.joins(:puppetclasses).where(conditions).pluck(:id)
|
26
26
|
host_ids = ::Host.authorized(:view_hosts).joins(puppet: :puppetclasses).where(conditions).distinct.pluck(:id)
|
27
|
-
host_ids += ForemanPuppet::
|
28
|
-
|
29
|
-
|
30
|
-
.pluck(:host_id)
|
27
|
+
host_ids += ForemanPuppet::HostPuppetFacet.joins(:host_config_groups)
|
28
|
+
.where(host_config_groups: { config_group_id: config_group_ids })
|
29
|
+
.pluck(:host_id)
|
31
30
|
hostgroup_ids = ::Hostgroup.unscoped.with_taxonomy_scope.joins(puppet: :puppetclasses).where(conditions).map(&:subtree_ids)
|
32
31
|
if config_group_ids.any?
|
33
32
|
hostgroup_cg_ids = ForemanPuppet::HostgroupPuppetFacet.joins(:host_config_groups)
|
@@ -6,6 +6,7 @@ module ForemanPuppet
|
|
6
6
|
included do
|
7
7
|
has_many :environments, through: :template_combinations
|
8
8
|
before_destroy EnsureNotUsedBy.new(:environments)
|
9
|
+
before_save :remove_snippet_associations
|
9
10
|
|
10
11
|
scoped_search relation: :environments, on: :name, rename: :environment, complete_value: true
|
11
12
|
|
@@ -54,9 +55,9 @@ module ForemanPuppet
|
|
54
55
|
end
|
55
56
|
|
56
57
|
# check if our template is a snippet, and remove its associations just in case they were selected.
|
57
|
-
def
|
58
|
-
super
|
58
|
+
def remove_snippet_associations
|
59
59
|
return unless snippet
|
60
|
+
|
60
61
|
environments.clear
|
61
62
|
end
|
62
63
|
end
|
@@ -6,8 +6,10 @@ module ForemanPuppet
|
|
6
6
|
config.paths['db/migrate'] << 'db/migrate_foreman' if Gem::Dependency.new('', ">= #{ForemanPuppet::FOREMAN_DROP_MIGRATIONS_VERSION}").match?('', SETTINGS[:version].notag)
|
7
7
|
config.paths['config/routes.rb'].unshift('config/api_routes.rb')
|
8
8
|
|
9
|
-
initializer 'foreman_puppet.register_plugin', before: :finisher_hook do |
|
10
|
-
|
9
|
+
initializer 'foreman_puppet.register_plugin', before: :finisher_hook do |app|
|
10
|
+
app.reloader.to_prepare do
|
11
|
+
require_relative 'register'
|
12
|
+
end
|
11
13
|
Apipie.configuration.checksum_path += ['/foreman_puppet/api/']
|
12
14
|
end
|
13
15
|
|
@@ -23,14 +25,10 @@ module ForemanPuppet
|
|
23
25
|
SETTINGS[:foreman_puppet] = { assets: { precompile: ['foreman_puppet.scss'] } }
|
24
26
|
end
|
25
27
|
|
26
|
-
initializer 'foreman_puppet.patch_parameters' do
|
27
|
-
# Parameters should go ASAP as they need to be applied before they are included in core controller
|
28
|
-
Foreman::Controller::Parameters::TemplateCombination.include ForemanPuppet::Extensions::ParametersTemplateCombination
|
29
|
-
end
|
30
|
-
|
31
28
|
# Include concerns in this config.to_prepare block
|
32
29
|
# rubocop:disable Metrics/BlockLength
|
33
30
|
config.to_prepare do
|
31
|
+
Foreman::Controller::Parameters::TemplateCombination.include ForemanPuppet::Extensions::ParametersTemplateCombination
|
34
32
|
# Facets extenstion is applied too early - before the Hostgroup is complete
|
35
33
|
# We redefine thing, so we need to wait until complete definition of Hostgroup
|
36
34
|
# thus separate patching instead of using facet patching
|
data/locale/Makefile
CHANGED
@@ -31,9 +31,16 @@ all-mo: $(MOFILES)
|
|
31
31
|
cat $@
|
32
32
|
! grep -q msgid $@
|
33
33
|
|
34
|
-
%.edit.po:
|
34
|
+
%.edit.po: %.po.time_stamp
|
35
35
|
touch $@
|
36
36
|
|
37
|
+
# gettext will trash the .edit.po file if the time stamp doesn't exist or is older than the po file
|
38
|
+
%.po.time_stamp: %.po
|
39
|
+
touch --reference $< $@
|
40
|
+
|
41
|
+
# Prevent make from treating this as an intermediate file to be cleaned up
|
42
|
+
.PRECIOUS: %.po.time_stamp
|
43
|
+
|
37
44
|
check: $(POXFILES)
|
38
45
|
|
39
46
|
# Unify duplicate translations
|
@@ -43,7 +50,10 @@ uniq-po:
|
|
43
50
|
done
|
44
51
|
|
45
52
|
tx-pull: $(EDITFILES)
|
46
|
-
|
53
|
+
# Initialize new languages
|
54
|
+
cd .. && tx pull -f --all --minimum-perc 50
|
55
|
+
# Force update all existing languages
|
56
|
+
cd .. && tx pull -f --minimum-perc 0
|
47
57
|
for f in $(EDITFILES) ; do \
|
48
58
|
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
49
59
|
done
|
Binary file
|
data/locale/ca/foreman_puppet.po
CHANGED
@@ -4,15 +4,15 @@
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
# Translators:
|
7
|
-
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>,
|
7
|
+
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2023
|
8
8
|
#
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_puppet
|
11
|
+
"Project-Id-Version: foreman_puppet 8.0.0\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
13
|
"PO-Revision-Date: 2021-02-03 16:30+0000\n"
|
14
|
-
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>,
|
15
|
-
"Language-Team: Catalan (https://
|
14
|
+
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2023\n"
|
15
|
+
"Language-Team: Catalan (https://app.transifex.com/foreman/teams/114/ca/)\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -55,9 +55,6 @@ msgstr ""
|
|
55
55
|
msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
|
56
56
|
msgstr ""
|
57
57
|
|
58
|
-
msgid "Action with sub plans"
|
59
|
-
msgstr ""
|
60
|
-
|
61
58
|
msgid "Actions"
|
62
59
|
msgstr "Accions"
|
63
60
|
|
@@ -388,18 +385,12 @@ msgstr ""
|
|
388
385
|
msgid "Import"
|
389
386
|
msgstr "Importa"
|
390
387
|
|
391
|
-
msgid "Import Puppet classes"
|
392
|
-
msgstr ""
|
393
|
-
|
394
388
|
msgid "Import classes from %s"
|
395
389
|
msgstr ""
|
396
390
|
|
397
391
|
msgid "Import environments from %s"
|
398
392
|
msgstr ""
|
399
393
|
|
400
|
-
msgid "Import facts"
|
401
|
-
msgstr ""
|
402
|
-
|
403
394
|
msgid "Import puppet classes from puppet proxy"
|
404
395
|
msgstr ""
|
405
396
|
|
@@ -641,7 +632,7 @@ msgid "Puppet YAML"
|
|
641
632
|
msgstr ""
|
642
633
|
|
643
634
|
msgid "Puppet classes"
|
644
|
-
msgstr ""
|
635
|
+
msgstr "Classes de Puppet"
|
645
636
|
|
646
637
|
msgid "Puppet details"
|
647
638
|
msgstr ""
|
@@ -670,9 +661,6 @@ msgstr "Paràmetre de Puppet"
|
|
670
661
|
msgid "Puppetclass|Name"
|
671
662
|
msgstr "Nom"
|
672
663
|
|
673
|
-
msgid "Remote action:"
|
674
|
-
msgstr ""
|
675
|
-
|
676
664
|
msgid "Remove"
|
677
665
|
msgstr "Suprimeix"
|
678
666
|
|
Binary file
|
@@ -7,15 +7,15 @@
|
|
7
7
|
# Ondřej Ezr <ezrik12@gmail.com>, 2021
|
8
8
|
# Lukáš Zapletal, 2021
|
9
9
|
# mhulan <mhulan@redhat.com>, 2022
|
10
|
-
# Pavel Borecki <pavel.borecki@gmail.com>,
|
10
|
+
# Pavel Borecki <pavel.borecki@gmail.com>, 2023
|
11
11
|
#
|
12
12
|
msgid ""
|
13
13
|
msgstr ""
|
14
|
-
"Project-Id-Version: foreman_puppet
|
14
|
+
"Project-Id-Version: foreman_puppet 8.0.0\n"
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
16
16
|
"PO-Revision-Date: 2021-02-03 16:30+0000\n"
|
17
|
-
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>,
|
18
|
-
"Language-Team: Czech (Czech Republic) (https://
|
17
|
+
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2023\n"
|
18
|
+
"Language-Team: Czech (Czech Republic) (https://app.transifex.com/foreman/teams"
|
19
19
|
"/114/cs_CZ/)\n"
|
20
20
|
"MIME-Version: 1.0\n"
|
21
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -60,9 +60,6 @@ msgstr ""
|
|
60
60
|
msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
|
61
61
|
msgstr ""
|
62
62
|
|
63
|
-
msgid "Action with sub plans"
|
64
|
-
msgstr "Akce s dílčími plány"
|
65
|
-
|
66
63
|
msgid "Actions"
|
67
64
|
msgstr "Akce"
|
68
65
|
|
@@ -154,7 +151,7 @@ msgid "Config Management"
|
|
154
151
|
msgstr "Správa nastavení"
|
155
152
|
|
156
153
|
msgid "Copy to clipboard"
|
157
|
-
msgstr ""
|
154
|
+
msgstr "Zkopírovat do schránky"
|
158
155
|
|
159
156
|
msgid "Corrective Change"
|
160
157
|
msgstr ""
|
@@ -393,18 +390,12 @@ msgstr "Ignorováno:"
|
|
393
390
|
msgid "Import"
|
394
391
|
msgstr "Import"
|
395
392
|
|
396
|
-
msgid "Import Puppet classes"
|
397
|
-
msgstr "Importovat Puppet třídy"
|
398
|
-
|
399
393
|
msgid "Import classes from %s"
|
400
394
|
msgstr "Importovat třídy z %s"
|
401
395
|
|
402
396
|
msgid "Import environments from %s"
|
403
397
|
msgstr ""
|
404
398
|
|
405
|
-
msgid "Import facts"
|
406
|
-
msgstr "Importovat fakta"
|
407
|
-
|
408
399
|
msgid "Import puppet classes from puppet proxy"
|
409
400
|
msgstr "Importovat puppet třídy z puppet proxy"
|
410
401
|
|
@@ -675,9 +666,6 @@ msgstr "Puppet parametr"
|
|
675
666
|
msgid "Puppetclass|Name"
|
676
667
|
msgstr "Puppetclass|Název"
|
677
668
|
|
678
|
-
msgid "Remote action:"
|
679
|
-
msgstr "Akce na protějšku:"
|
680
|
-
|
681
669
|
msgid "Remove"
|
682
670
|
msgstr "Odebrat"
|
683
671
|
|
Binary file
|
data/locale/de/foreman_puppet.po
CHANGED
@@ -11,25 +11,25 @@
|
|
11
11
|
# Wiederoder <stefanwiederoder@googlemail.com>, 2021
|
12
12
|
# 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2021
|
13
13
|
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2021
|
14
|
-
# simon11 <transifex@stieger.co>, 2021
|
15
14
|
# Ettore Atalan <atalanttore@googlemail.com>, 2021
|
15
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
16
16
|
# stbenjam <stephen@redhat.com>, 2021
|
17
17
|
# Christina Gurski <Gurski_christina@yahoo.de>, 2021
|
18
|
-
# Crited <Alexander.Stoll@netways.de>, 2021
|
19
18
|
# Mathias Reichardt, 2022
|
20
19
|
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2022
|
21
20
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
22
|
-
# Patrick Dolinic, 2022
|
23
21
|
# abf90805572190d649c59f7a021d76cb, 2022
|
24
|
-
#
|
22
|
+
# simon11 <transifex@stieger.co>, 2023
|
23
|
+
# Crited <Alexander.Stoll@netways.de>, 2023
|
24
|
+
# pdolinic, 2024
|
25
25
|
#
|
26
26
|
msgid ""
|
27
27
|
msgstr ""
|
28
|
-
"Project-Id-Version: foreman_puppet
|
28
|
+
"Project-Id-Version: foreman_puppet 8.0.0\n"
|
29
29
|
"Report-Msgid-Bugs-To: \n"
|
30
30
|
"PO-Revision-Date: 2021-02-03 16:30+0000\n"
|
31
|
-
"Last-Translator:
|
32
|
-
"Language-Team: German (https://
|
31
|
+
"Last-Translator: pdolinic, 2024\n"
|
32
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
33
33
|
"MIME-Version: 1.0\n"
|
34
34
|
"Content-Type: text/plain; charset=UTF-8\n"
|
35
35
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -76,9 +76,6 @@ msgstr ""
|
|
76
76
|
msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
|
77
77
|
msgstr "Eine Konfigurationsgruppe bietet eine Methode, mit der viele Puppet Klassen einem Host oder einer Hostgruppe zugewiesen werden können. Dadurch kann man typischerweise ein bestimmtes Applikationsprofil oder Stack in einem Schritt zuweisen."
|
78
78
|
|
79
|
-
msgid "Action with sub plans"
|
80
|
-
msgstr "Aktion mit Unterplänen"
|
81
|
-
|
82
79
|
msgid "Actions"
|
83
80
|
msgstr "Aktionen"
|
84
81
|
|
@@ -170,7 +167,7 @@ msgid "Config Management"
|
|
170
167
|
msgstr "Konfigurationsmanagement"
|
171
168
|
|
172
169
|
msgid "Copy to clipboard"
|
173
|
-
msgstr ""
|
170
|
+
msgstr "In Zwischenablage abspeichern"
|
174
171
|
|
175
172
|
msgid "Corrective Change"
|
176
173
|
msgstr ""
|
@@ -409,18 +406,12 @@ msgstr "Ignoriert:"
|
|
409
406
|
msgid "Import"
|
410
407
|
msgstr "Import"
|
411
408
|
|
412
|
-
msgid "Import Puppet classes"
|
413
|
-
msgstr "Puppet-Klassen importieren"
|
414
|
-
|
415
409
|
msgid "Import classes from %s"
|
416
410
|
msgstr "Importiere Klassen von %s"
|
417
411
|
|
418
412
|
msgid "Import environments from %s"
|
419
413
|
msgstr "Importiere Umgebung von %s"
|
420
414
|
|
421
|
-
msgid "Import facts"
|
422
|
-
msgstr "Fakten importieren"
|
423
|
-
|
424
415
|
msgid "Import puppet classes from puppet proxy"
|
425
416
|
msgstr "Puppet-Klassen vom Puppet-Proxy importieren"
|
426
417
|
|
@@ -521,7 +512,7 @@ msgid "Name"
|
|
521
512
|
msgstr "Name"
|
522
513
|
|
523
514
|
msgid "Never"
|
524
|
-
msgstr ""
|
515
|
+
msgstr "Niemals"
|
525
516
|
|
526
517
|
msgid "New"
|
527
518
|
msgstr "Neu"
|
@@ -662,7 +653,7 @@ msgid "Puppet YAML"
|
|
662
653
|
msgstr "Puppet YAML"
|
663
654
|
|
664
655
|
msgid "Puppet classes"
|
665
|
-
msgstr ""
|
656
|
+
msgstr "Puppet-Klassen"
|
666
657
|
|
667
658
|
msgid "Puppet details"
|
668
659
|
msgstr ""
|
@@ -691,9 +682,6 @@ msgstr "Puppet-Parameter"
|
|
691
682
|
msgid "Puppetclass|Name"
|
692
683
|
msgstr "Name"
|
693
684
|
|
694
|
-
msgid "Remote action:"
|
695
|
-
msgstr "Entfernte Aktion:"
|
696
|
-
|
697
685
|
msgid "Remove"
|
698
686
|
msgstr "Entfernen"
|
699
687
|
|
Binary file
|
data/locale/en/foreman_puppet.po
CHANGED
@@ -1,19 +1,21 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# This file is distributed under the same license as foreman_puppet.
|
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.
|
4
5
|
#
|
6
|
+
#, fuzzy
|
5
7
|
msgid ""
|
6
8
|
msgstr ""
|
7
|
-
"Project-Id-Version: foreman_puppet
|
9
|
+
"Project-Id-Version: foreman_puppet 1.0.0\n"
|
8
10
|
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"PO-Revision-Date:
|
10
|
-
"Last-Translator:
|
11
|
-
"Language-Team:
|
11
|
+
"PO-Revision-Date: 2024-09-19 13:06+0200\n"
|
12
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
12
14
|
"Language: \n"
|
13
15
|
"MIME-Version: 1.0\n"
|
14
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
15
17
|
"Content-Transfer-Encoding: 8bit\n"
|
16
|
-
"Plural-Forms: nplurals=
|
18
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
17
19
|
|
18
20
|
msgid " Remove"
|
19
21
|
msgstr ""
|
@@ -51,9 +53,6 @@ msgstr ""
|
|
51
53
|
msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
|
52
54
|
msgstr ""
|
53
55
|
|
54
|
-
msgid "Action with sub plans"
|
55
|
-
msgstr ""
|
56
|
-
|
57
56
|
msgid "Actions"
|
58
57
|
msgstr ""
|
59
58
|
|
@@ -384,18 +383,12 @@ msgstr ""
|
|
384
383
|
msgid "Import"
|
385
384
|
msgstr ""
|
386
385
|
|
387
|
-
msgid "Import Puppet classes"
|
388
|
-
msgstr ""
|
389
|
-
|
390
386
|
msgid "Import classes from %s"
|
391
387
|
msgstr ""
|
392
388
|
|
393
389
|
msgid "Import environments from %s"
|
394
390
|
msgstr ""
|
395
391
|
|
396
|
-
msgid "Import facts"
|
397
|
-
msgstr ""
|
398
|
-
|
399
392
|
msgid "Import puppet classes from puppet proxy"
|
400
393
|
msgstr ""
|
401
394
|
|
@@ -666,9 +659,6 @@ msgstr ""
|
|
666
659
|
msgid "Puppetclass|Name"
|
667
660
|
msgstr ""
|
668
661
|
|
669
|
-
msgid "Remote action:"
|
670
|
-
msgstr ""
|
671
|
-
|
672
662
|
msgid "Remove"
|
673
663
|
msgstr ""
|
674
664
|
|
Binary file
|
@@ -5,15 +5,15 @@
|
|
5
5
|
#
|
6
6
|
# Translators:
|
7
7
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
|
8
|
-
# Andi Chandler <andi@gowling.com>,
|
8
|
+
# Andi Chandler <andi@gowling.com>, 2024
|
9
9
|
#
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_puppet
|
12
|
+
"Project-Id-Version: foreman_puppet 8.0.0\n"
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
14
14
|
"PO-Revision-Date: 2021-02-03 16:30+0000\n"
|
15
|
-
"Last-Translator: Andi Chandler <andi@gowling.com>,
|
16
|
-
"Language-Team: English (United Kingdom) (https://
|
15
|
+
"Last-Translator: Andi Chandler <andi@gowling.com>, 2024\n"
|
16
|
+
"Language-Team: English (United Kingdom) (https://app.transifex.com/foreman/tea"
|
17
17
|
"ms/114/en_GB/)\n"
|
18
18
|
"MIME-Version: 1.0\n"
|
19
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -57,9 +57,6 @@ msgstr ""
|
|
57
57
|
msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
|
58
58
|
msgstr ""
|
59
59
|
|
60
|
-
msgid "Action with sub plans"
|
61
|
-
msgstr "Action with sub plans"
|
62
|
-
|
63
60
|
msgid "Actions"
|
64
61
|
msgstr "Actions"
|
65
62
|
|
@@ -112,7 +109,7 @@ msgid "Change Puppet Master"
|
|
112
109
|
msgstr ""
|
113
110
|
|
114
111
|
msgid "Changed"
|
115
|
-
msgstr ""
|
112
|
+
msgstr "Changed"
|
116
113
|
|
117
114
|
msgid "Changed environments"
|
118
115
|
msgstr ""
|
@@ -253,7 +250,7 @@ msgid "Empty environment"
|
|
253
250
|
msgstr ""
|
254
251
|
|
255
252
|
msgid "Environment"
|
256
|
-
msgstr ""
|
253
|
+
msgstr "Environment"
|
257
254
|
|
258
255
|
msgid "Environment only"
|
259
256
|
msgstr ""
|
@@ -268,7 +265,7 @@ msgid "Error!"
|
|
268
265
|
msgstr ""
|
269
266
|
|
270
267
|
msgid "Facts"
|
271
|
-
msgstr ""
|
268
|
+
msgstr "Facts"
|
272
269
|
|
273
270
|
msgid "Failed"
|
274
271
|
msgstr ""
|
@@ -390,18 +387,12 @@ msgstr ""
|
|
390
387
|
msgid "Import"
|
391
388
|
msgstr ""
|
392
389
|
|
393
|
-
msgid "Import Puppet classes"
|
394
|
-
msgstr "Import Puppet classes"
|
395
|
-
|
396
390
|
msgid "Import classes from %s"
|
397
391
|
msgstr ""
|
398
392
|
|
399
393
|
msgid "Import environments from %s"
|
400
394
|
msgstr ""
|
401
395
|
|
402
|
-
msgid "Import facts"
|
403
|
-
msgstr "Import facts"
|
404
|
-
|
405
396
|
msgid "Import puppet classes from puppet proxy"
|
406
397
|
msgstr ""
|
407
398
|
|
@@ -672,9 +663,6 @@ msgstr ""
|
|
672
663
|
msgid "Puppetclass|Name"
|
673
664
|
msgstr "Class name"
|
674
665
|
|
675
|
-
msgid "Remote action:"
|
676
|
-
msgstr "Remote action:"
|
677
|
-
|
678
666
|
msgid "Remove"
|
679
667
|
msgstr ""
|
680
668
|
|
Binary file
|