foreman_puppet 8.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 +2 -1
- 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/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
|
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
|
data/locale/es/foreman_puppet.po
CHANGED
@@ -10,19 +10,20 @@
|
|
10
10
|
# Gustavo Varela <gustavo.varela@gmail.com>, 2021
|
11
11
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2021
|
12
12
|
# elobato <elobatocs@gmail.com>, 2021
|
13
|
-
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
14
|
-
# Carmela Rubiños <carmela.rubinos@gmail.com>, 2022
|
15
13
|
# Jared Nelson <jared@ajpadilla.com>, 2022
|
16
|
-
#
|
17
|
-
#
|
14
|
+
# Carmela Rubiños <carmela.rubinos@gmail.com>, 2023
|
15
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2023
|
16
|
+
# Amit Upadhye <aupadhye@redhat.com>, 2024
|
17
|
+
# Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
|
18
18
|
#
|
19
19
|
msgid ""
|
20
20
|
msgstr ""
|
21
|
-
"Project-Id-Version: foreman_puppet
|
21
|
+
"Project-Id-Version: foreman_puppet 8.0.0\n"
|
22
22
|
"Report-Msgid-Bugs-To: \n"
|
23
23
|
"PO-Revision-Date: 2021-02-03 16:30+0000\n"
|
24
|
-
"Last-Translator:
|
25
|
-
"
|
24
|
+
"Last-Translator: Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarde"
|
25
|
+
"n.nl>, 2024\n"
|
26
|
+
"Language-Team: Spanish (https://app.transifex.com/foreman/teams/114/es/)\n"
|
26
27
|
"MIME-Version: 1.0\n"
|
27
28
|
"Content-Type: text/plain; charset=UTF-8\n"
|
28
29
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -37,7 +38,7 @@ msgid "%s is not in environment"
|
|
37
38
|
msgstr "%s no está en el entorno"
|
38
39
|
|
39
40
|
msgid "%s out of sync disabled"
|
40
|
-
msgstr "%s
|
41
|
+
msgstr "%s fuera de sincronización deshabilitado"
|
41
42
|
|
42
43
|
msgid "%{model} with id '%{id}' was not found"
|
43
44
|
msgstr "%{model} con id '%{id}' no se encontró"
|
@@ -66,9 +67,6 @@ msgstr ""
|
|
66
67
|
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."
|
67
68
|
msgstr "Un grupo de configuración permite asociar muchas clases Puppet a un host o grupo de hosts en un solo paso. Normalmente, esto se utilizaría para añadir un perfil de aplicación particular o una pila en un solo paso."
|
68
69
|
|
69
|
-
msgid "Action with sub plans"
|
70
|
-
msgstr "Acción con subplanes"
|
71
|
-
|
72
70
|
msgid "Actions"
|
73
71
|
msgstr "Acciones"
|
74
72
|
|
@@ -121,7 +119,7 @@ msgid "Change Puppet Master"
|
|
121
119
|
msgstr "Cambiar Puppetmaster"
|
122
120
|
|
123
121
|
msgid "Changed"
|
124
|
-
msgstr ""
|
122
|
+
msgstr "已改变"
|
125
123
|
|
126
124
|
msgid "Changed environments"
|
127
125
|
msgstr "Entornos modificados"
|
@@ -160,7 +158,7 @@ msgid "Config Management"
|
|
160
158
|
msgstr "Administración de configuración"
|
161
159
|
|
162
160
|
msgid "Copy to clipboard"
|
163
|
-
msgstr ""
|
161
|
+
msgstr "Copiar al portapapeles"
|
164
162
|
|
165
163
|
msgid "Corrective Change"
|
166
164
|
msgstr ""
|
@@ -238,7 +236,7 @@ msgid "Description of smart class"
|
|
238
236
|
msgstr "Descripción de clase inteligente"
|
239
237
|
|
240
238
|
msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
|
241
|
-
msgstr "
|
239
|
+
msgstr "Deshabilitar el estado de configuración de host que pasa a fuera de sincronización para %s si el informe no llega dentro del intervalo configurado"
|
242
240
|
|
243
241
|
msgid "Display hidden values"
|
244
242
|
msgstr "Mostrar valores ocultos"
|
@@ -256,7 +254,7 @@ msgid "Edit %s"
|
|
256
254
|
msgstr "Editar %s"
|
257
255
|
|
258
256
|
msgid "Edit Puppet Class %s"
|
259
|
-
msgstr "Editar clase
|
257
|
+
msgstr "Editar clase Puppet %s"
|
260
258
|
|
261
259
|
msgid "Empty environment"
|
262
260
|
msgstr "Entorno vacío"
|
@@ -292,10 +290,10 @@ msgid "Failed to start"
|
|
292
290
|
msgstr ""
|
293
291
|
|
294
292
|
msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
|
295
|
-
msgstr "
|
293
|
+
msgstr "Ocurrió un error al actualizar los entornos y las clases Puppet en la instalación de Puppet en el disco: %s"
|
296
294
|
|
297
295
|
msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
|
298
|
-
msgstr "Error al actualizar los entornos y
|
296
|
+
msgstr "Error al actualizar los entornos y clases Puppet desde el disco de instalación de puppet: %s"
|
299
297
|
|
300
298
|
msgid "Filter by name"
|
301
299
|
msgstr "Filtrar por nombre"
|
@@ -391,7 +389,7 @@ msgid "Ignored environment names resulting in booleans found. Please quote strin
|
|
391
389
|
msgstr "Se hallaron nombres de entornos ignorados que resultaron en valores booleanos. Mencione las cadenas como verdadero/falso y sí/no en config/ignored_environments.yml"
|
392
390
|
|
393
391
|
msgid "Ignored environments: %s"
|
394
|
-
msgstr "
|
392
|
+
msgstr "Entorno ignorado: %s"
|
395
393
|
|
396
394
|
msgid "Ignored:"
|
397
395
|
msgstr "Ignorado:"
|
@@ -399,18 +397,12 @@ msgstr "Ignorado:"
|
|
399
397
|
msgid "Import"
|
400
398
|
msgstr "Importar"
|
401
399
|
|
402
|
-
msgid "Import Puppet classes"
|
403
|
-
msgstr "Importar clases Puppet"
|
404
|
-
|
405
400
|
msgid "Import classes from %s"
|
406
|
-
msgstr "Importar clases
|
401
|
+
msgstr "Importar clases desde %s"
|
407
402
|
|
408
403
|
msgid "Import environments from %s"
|
409
404
|
msgstr "Importar entornos desde %s"
|
410
405
|
|
411
|
-
msgid "Import facts"
|
412
|
-
msgstr "Importar datos"
|
413
|
-
|
414
406
|
msgid "Import puppet classes from puppet proxy"
|
415
407
|
msgstr "Importar clases puppet desde el proxy de puppet"
|
416
408
|
|
@@ -511,7 +503,7 @@ msgid "Name"
|
|
511
503
|
msgstr "Nombre"
|
512
504
|
|
513
505
|
msgid "Never"
|
514
|
-
msgstr ""
|
506
|
+
msgstr "Nunca"
|
515
507
|
|
516
508
|
msgid "New"
|
517
509
|
msgstr "Nuevo"
|
@@ -529,7 +521,7 @@ msgid "No environments found"
|
|
529
521
|
msgstr "No se encontraron entornos"
|
530
522
|
|
531
523
|
msgid "No parameters to override for Puppet class %s"
|
532
|
-
msgstr "No hay parámetros para la clase Puppet %s"
|
524
|
+
msgstr "No hay parámetros para sobrescribir la clase Puppet %s"
|
533
525
|
|
534
526
|
msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
|
535
527
|
msgstr "No se encontró el Proxy para importar clases, asegúrese de que el proxy inteligente tenga la funcionalidad Puppet habilitada."
|
@@ -652,7 +644,7 @@ msgid "Puppet YAML"
|
|
652
644
|
msgstr ""
|
653
645
|
|
654
646
|
msgid "Puppet classes"
|
655
|
-
msgstr ""
|
647
|
+
msgstr "Clases Puppet"
|
656
648
|
|
657
649
|
msgid "Puppet details"
|
658
650
|
msgstr ""
|
@@ -681,9 +673,6 @@ msgstr "Parámetro Puppet"
|
|
681
673
|
msgid "Puppetclass|Name"
|
682
674
|
msgstr "Nombre"
|
683
675
|
|
684
|
-
msgid "Remote action:"
|
685
|
-
msgstr "Acción remota:"
|
686
|
-
|
687
676
|
msgid "Remove"
|
688
677
|
msgstr "Eliminar"
|
689
678
|
|
@@ -772,10 +761,10 @@ msgid "Successfully copied to clipboard!"
|
|
772
761
|
msgstr ""
|
773
762
|
|
774
763
|
msgid "Successfully overridden all parameters of Puppet class %s"
|
775
|
-
msgstr "Se han sobrescrito
|
764
|
+
msgstr "Se han sobrescrito con éxito todos los parámetros de clase Puppet %s"
|
776
765
|
|
777
766
|
msgid "Successfully reset all parameters of Puppet class %s to their default values"
|
778
|
-
msgstr "
|
767
|
+
msgstr "Se han restablecido con éxito todos los parámetros de la clase Puppet %s a sus valores predeterminados"
|
779
768
|
|
780
769
|
msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
|
781
770
|
msgstr "Se actualizaron los entornos y clases Puppet con éxito desde la instalación de Puppet en disco"
|
@@ -798,7 +787,7 @@ msgid "The class could not be saved because of an error in one of the class para
|
|
798
787
|
msgstr "La clase no se pudo guardar debido a un error en uno de los parámetros de clase."
|
799
788
|
|
800
789
|
msgid "The final entry, Operating System default, can be set by editing the %s page."
|
801
|
-
msgstr "La última entrada,
|
790
|
+
msgstr "La última entrada, sistema operativo predeterminado, puede configurarse al editar la página %s."
|
802
791
|
|
803
792
|
msgid "The order in which values are resolved"
|
804
793
|
msgstr "El orden en el cual se resuelven los valores"
|
@@ -816,10 +805,10 @@ msgid "This tab is still a work in progress"
|
|
816
805
|
msgstr ""
|
817
806
|
|
818
807
|
msgid "This will reset parameters of the class %s to their default values. Continue?"
|
819
|
-
msgstr "Esto restablecerá los parámetros de la clase %s a
|
808
|
+
msgstr "Esto restablecerá los parámetros de la clase %s a los valores predeterminados. ¿Continuar?"
|
820
809
|
|
821
810
|
msgid "This will set all parameters of the class %s as overridden. Continue?"
|
822
|
-
msgstr "
|
811
|
+
msgstr "Se establecerán todos los parámetros de la clase %s. ¿Continuar?"
|
823
812
|
|
824
813
|
msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
|
825
814
|
msgstr "Para actualizar la firma de clase, seleccione \"Importar\" en la página de clases Puppet."
|
@@ -915,4 +904,4 @@ msgid "must be true to edit the parameter"
|
|
915
904
|
msgstr "Debe ser verdadero para modificar el parámetro"
|
916
905
|
|
917
906
|
msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
|
918
|
-
msgstr "con
|
907
|
+
msgstr "con ID %{object_id} no existe o no está asignado a la organización o ubicación adecuada"
|
Binary file
|