foreman_bootdisk 22.0.0 → 22.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_bootdisk/locale/ca/foreman_bootdisk.js +108 -120
  3. data/app/assets/javascripts/foreman_bootdisk/locale/cs_CZ/foreman_bootdisk.js +105 -117
  4. data/app/assets/javascripts/foreman_bootdisk/locale/de/foreman_bootdisk.js +158 -170
  5. data/app/assets/javascripts/foreman_bootdisk/locale/en/foreman_bootdisk.js +85 -97
  6. data/app/assets/javascripts/foreman_bootdisk/locale/en_GB/foreman_bootdisk.js +157 -169
  7. data/app/assets/javascripts/foreman_bootdisk/locale/es/foreman_bootdisk.js +158 -170
  8. data/app/assets/javascripts/foreman_bootdisk/locale/fr/foreman_bootdisk.js +158 -170
  9. data/app/assets/javascripts/foreman_bootdisk/locale/it/foreman_bootdisk.js +118 -130
  10. data/app/assets/javascripts/foreman_bootdisk/locale/ja/foreman_bootdisk.js +157 -169
  11. data/app/assets/javascripts/foreman_bootdisk/locale/ka/foreman_bootdisk.js +157 -169
  12. data/app/assets/javascripts/foreman_bootdisk/locale/ko/foreman_bootdisk.js +158 -170
  13. data/app/assets/javascripts/foreman_bootdisk/locale/pt_BR/foreman_bootdisk.js +157 -169
  14. data/app/assets/javascripts/foreman_bootdisk/locale/ru/foreman_bootdisk.js +131 -143
  15. data/app/assets/javascripts/foreman_bootdisk/locale/sv_SE/foreman_bootdisk.js +103 -115
  16. data/app/assets/javascripts/foreman_bootdisk/locale/zh_CN/foreman_bootdisk.js +156 -168
  17. data/app/assets/javascripts/foreman_bootdisk/locale/zh_TW/foreman_bootdisk.js +129 -141
  18. data/app/lib/foreman_bootdisk/scope/bootdisk.rb +0 -42
  19. data/app/lib/foreman_bootdisk/template_helpers.rb +48 -0
  20. data/lib/foreman_bootdisk/engine.rb +3 -1
  21. data/lib/foreman_bootdisk/engine.rb.orig +159 -0
  22. data/lib/foreman_bootdisk/version.rb +1 -1
  23. data/locale/Makefile +12 -2
  24. data/locale/ca/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  25. data/locale/ca/foreman_bootdisk.po +1 -13
  26. data/locale/cs_CZ/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  27. data/locale/cs_CZ/foreman_bootdisk.po +30 -40
  28. data/locale/de/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  29. data/locale/de/foreman_bootdisk.po +3 -15
  30. data/locale/en/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  31. data/locale/en/foreman_bootdisk.po +9 -19
  32. data/locale/en_GB/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  33. data/locale/en_GB/foreman_bootdisk.po +1 -13
  34. data/locale/es/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  35. data/locale/es/foreman_bootdisk.po +6 -16
  36. data/locale/fr/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  37. data/locale/fr/foreman_bootdisk.po +6 -16
  38. data/locale/it/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  39. data/locale/it/foreman_bootdisk.po +1 -13
  40. data/locale/ja/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  41. data/locale/ja/foreman_bootdisk.po +7 -18
  42. data/locale/ka/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  43. data/locale/ka/foreman_bootdisk.po +1 -13
  44. data/locale/ko/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  45. data/locale/ko/foreman_bootdisk.po +47 -59
  46. data/locale/pt_BR/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  47. data/locale/pt_BR/foreman_bootdisk.po +1 -13
  48. data/locale/ru/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  49. data/locale/ru/foreman_bootdisk.po +1 -13
  50. data/locale/sv_SE/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  51. data/locale/sv_SE/foreman_bootdisk.po +1 -13
  52. data/locale/zh_CN/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  53. data/locale/zh_CN/foreman_bootdisk.po +2 -14
  54. data/locale/zh_TW/LC_MESSAGES/foreman_bootdisk.mo +0 -0
  55. data/locale/zh_TW/foreman_bootdisk.po +1 -13
  56. metadata +4 -3
  57. data/locale/action_names.rb +0 -5
@@ -0,0 +1,159 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'foreman_bootdisk'
4
+ require 'fast_gettext'
5
+ require 'gettext_i18n_rails'
6
+
7
+ module ForemanBootdisk
8
+ class Engine < ::Rails::Engine
9
+ engine_name 'foreman_bootdisk'
10
+ isolate_namespace ForemanBootdisk
11
+
12
+ initializer 'foreman_bootdisk.mount_engine' do |app|
13
+ app.routes_reloader.paths << "#{ForemanBootdisk::Engine.root}/config/routes/mount_engine.rb"
14
+ end
15
+
16
+ initializer 'foreman_bootdisk.load_app_instance_data' do |app|
17
+ ForemanBootdisk::Engine.paths['db/migrate'].existent.each do |path|
18
+ app.config.paths['db/migrate'] << path
19
+ end
20
+ end
21
+
22
+ initializer 'foreman_bootdisk.apipie' do
23
+ Apipie.configuration.checksum_path += ['/bootdisk/api/']
24
+ end
25
+
26
+ initializer 'foreman_bootdisk.register_plugin', before: :finisher_hook do |app|
27
+ app.reloader.to_prepare do
28
+ Foreman::Plugin.register :foreman_bootdisk do
29
+ requires_foreman '>= 3.13'
30
+ # Add Global files for extending foreman-core components and routes
31
+ register_global_js_file 'global'
32
+ register_gettext
33
+
34
+ security_block :bootdisk do |_map|
35
+ permission :download_bootdisk, 'foreman_bootdisk/disks': %i[generic host full_host help bootdisk_options],
36
+ 'foreman_bootdisk/subnet_disks': [:subnet],
37
+ 'foreman_bootdisk/api/v2/disks': %i[generic host],
38
+ 'foreman_bootdisk/api/v2/subnet_disks': [:subnet]
39
+ end
40
+
41
+ role 'Boot disk access', [:download_bootdisk], 'Role granting permissions to download bootdisks'
42
+ add_all_permissions_to_default_roles
43
+
44
+ apipie_documented_controllers ["#{ForemanBootdisk::Engine.root}/app/controllers/foreman_bootdisk/api/v2/*.rb"]
45
+ ApipieDSL.configuration.dsl_classes_matchers += [
46
+ "#{ForemanBootdisk::Engine.root}/app/lib/foreman_bootdisk/scope/*.rb"
47
+ ]
48
+ provision_method 'bootdisk', N_('Boot disk based')
49
+ allowed_template_helpers :bootdisk_chain_url, :bootdisk_raise
50
+
51
+ <<<<<<< HEAD
52
+ extend_page "subnets/index" do |cx|
53
+ cx.add_pagelet :subnet_index_action_buttons, name: 'Bootdisk', partial: 'subnets/bootdisk_action_buttons'
54
+ cx.add_pagelet :subnet_index_title_buttons, name: 'Bootdisk', partial: 'subnets/bootdisk_title_buttons'
55
+ end
56
+ =======
57
+ apipie_documented_controllers ["#{ForemanBootdisk::Engine.root}/app/controllers/foreman_bootdisk/api/v2/*.rb"]
58
+ ApipieDSL.configuration.dsl_classes_matchers += [
59
+ "#{ForemanBootdisk::Engine.root}/app/lib/foreman_bootdisk/scope/*.rb"
60
+ ]
61
+ provision_method 'bootdisk', N_('Boot disk based')
62
+ extend_template_helpers ForemanBootdisk::TemplateHelpers
63
+ >>>>>>> 968ca20 (Fixes #37792 - Safe mode and bootdisk_* template helpers)
64
+
65
+ settings do
66
+ category :bootdisk, N_("Boot disk") do
67
+ ipxe = ['/usr/lib/ipxe'].find { |p| File.exist?(p) } || '/usr/share/ipxe'
68
+ isolinux = ['/usr/lib/ISOLINUX'].find { |p| File.exist?(p) } || '/usr/share/syslinux'
69
+ syslinux = ['/usr/lib/syslinux/modules/bios', '/usr/lib/syslinux'].find { |p| File.exist?(p) } || '/usr/share/syslinux'
70
+ grub2 = ['/var/lib/tftpboot/grub2'].find { |p| File.exist?(p) } || '/var/lib/foreman/bootdisk'
71
+ templates = -> {
72
+ Hash[ProvisioningTemplate.where(template_kind: TemplateKind.where(name: 'Bootdisk')).map { |temp| [temp[:name], temp[:name]] }]
73
+ }
74
+
75
+ setting "bootdisk_ipxe_dir",
76
+ type: :string,
77
+ default: ipxe,
78
+ full_name: N_("iPXE directory"),
79
+ description: N_("Path to directory containing iPXE images")
80
+
81
+ setting "bootdisk_isolinux_dir",
82
+ type: :string,
83
+ default: isolinux,
84
+ full_name: N_("ISOLINUX directory"),
85
+ description: N_("Path to directory containing isolinux images")
86
+
87
+ setting "bootdisk_syslinux_dir",
88
+ type: :string,
89
+ default: syslinux,
90
+ full_name: N_("SYSLINUX directory"),
91
+ description: N_("Path to directory containing syslinux images")
92
+
93
+ setting "bootdisk_grub2_dir",
94
+ type: :string,
95
+ default: grub2,
96
+ full_name: N_("Grub2 directory"),
97
+ description: N_("Path to directory containing grubx64.efi and shimx64.efi")
98
+
99
+ setting "bootdisk_host_template",
100
+ type: :string,
101
+ collection: templates,
102
+ default: "Boot disk iPXE - host",
103
+ full_name: N_("Host image template"),
104
+ description: N_("iPXE template to use for host-specific boot disks")
105
+
106
+ setting "bootdisk_generic_host_template",
107
+ type: :string,
108
+ collection: templates,
109
+ default: "Boot disk iPXE - generic host",
110
+ full_name: N_("Generic image template"),
111
+ description: N_("iPXE template to use for generic host boot disks")
112
+
113
+ setting "bootdisk_generic_efi_host_template",
114
+ type: :string,
115
+ collection: templates,
116
+ default: "Boot disk Grub2 EFI - generic host",
117
+ full_name: N_("Generic Grub2 EFI image template"),
118
+ description: N_("iPXE template to use for generic EFI host boot disks")
119
+
120
+ setting "bootdisk_mkiso_command",
121
+ type: :string,
122
+ default: "genisoimage",
123
+ full_name: N_("ISO generation command"),
124
+ description: N_("Command to generate ISO image, use genisoimage or mkisofs")
125
+
126
+ setting "bootdisk_cache_media",
127
+ type: :boolean,
128
+ default: true,
129
+ full_name: N_("Installation media caching"),
130
+ description: N_("Installation media files will be cached for full host images")
131
+
132
+ setting "bootdisk_allowed_types",
133
+ type: :array,
134
+ default: Setting::Bootdisk.bootdisk_types,
135
+ full_name: N_("Allowed bootdisk types"),
136
+ description: N_("List of allowed bootdisk types, remove type to disable it")
137
+ end
138
+ end
139
+ end
140
+ end
141
+ end
142
+
143
+ config.to_prepare do
144
+ begin
145
+ ::HostsHelper.prepend ForemanBootdisk::HostsHelperExt
146
+ ::SubnetsHelper.include ForemanBootdisk::SubnetsHelperExt
147
+ Host::Managed.prepend ForemanBootdisk::HostExt
148
+ Host::Managed.include ForemanBootdisk::Orchestration::Compute
149
+ Foreman::Model::Vmware.prepend ForemanBootdisk::ComputeResources::Vmware if Foreman::Model::Vmware.available?
150
+ rescue StandardError => e
151
+ Rails.logger.warn "#{ForemanBootdisk::ENGINE_NAME}: skipping engine hook (#{e})"
152
+ end
153
+ end
154
+ end
155
+
156
+ def self.logger
157
+ Foreman::Logging.logger('foreman_bootdisk')
158
+ end
159
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanBootdisk
4
- VERSION = '22.0.0'
4
+ VERSION = '22.0.1'
5
5
  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
- cd .. && tx pull -f --all
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
@@ -7,7 +7,7 @@
7
7
  # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015-2016
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_bootdisk 21.0.4\n"
10
+ "Project-Id-Version: foreman_bootdisk 22.0.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "PO-Revision-Date: 2014-02-13 12:12+0000\n"
13
13
  "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2017\n"
@@ -25,9 +25,6 @@ msgstr ""
25
25
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
26
26
  msgstr ""
27
27
 
28
- msgid "Action with sub plans"
29
- msgstr ""
30
-
31
28
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
32
29
  msgstr ""
33
30
 
@@ -160,12 +157,6 @@ msgstr ""
160
157
  msgid "ISOLINUX directory"
161
158
  msgstr ""
162
159
 
163
- msgid "Import Puppet classes"
164
- msgstr ""
165
-
166
- msgid "Import facts"
167
- msgstr ""
168
-
169
160
  msgid "Installation media caching"
170
161
  msgstr ""
171
162
 
@@ -205,9 +196,6 @@ msgstr ""
205
196
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
206
197
  msgstr ""
207
198
 
208
- msgid "Remote action:"
209
- msgstr ""
210
-
211
199
  msgid "SYSLINUX directory"
212
200
  msgstr ""
213
201
 
@@ -1,21 +1,23 @@
1
- # Czech translations for foreman_bootdisk package.
2
- # Copyright (C) 2023 THE PACKAGE'S COPYRIGHT HOLDER
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_bootdisk package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
5
4
  #
5
+ # Translators:
6
+ # Pavel Borecki <pavel.borecki@gmail.com>, 2018-2020
6
7
  msgid ""
7
8
  msgstr ""
8
- "Project-Id-Version: foreman_bootdisk 1.0.0\n"
9
+ "Project-Id-Version: foreman_bootdisk 22.0.0\n"
9
10
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2023-05-15 15:36+0200\n"
11
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
- "Language-Team: Czech\n"
13
- "Language: cs_CZ\n"
11
+ "PO-Revision-Date: 2014-02-13 12:12+0000\n"
12
+ "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018-2020\n"
13
+ "Language-Team: Czech (Czech Republic) (http://app.transifex.com/foreman/forema"
14
+ "n/language/cs_CZ/)\n"
14
15
  "MIME-Version: 1.0\n"
15
16
  "Content-Type: text/plain; charset=UTF-8\n"
16
17
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=; plural=;\n"
18
- "\n"
18
+ "Language: cs_CZ\n"
19
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
20
+ "4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
19
21
 
20
22
  msgid "* - These bootdisk types were disabled, you can enable them in Administer - Settings."
21
23
  msgstr ""
@@ -23,9 +25,6 @@ msgstr ""
23
25
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
24
26
  msgstr ""
25
27
 
26
- msgid "Action with sub plans"
27
- msgstr ""
28
-
29
28
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
30
29
  msgstr ""
31
30
 
@@ -36,16 +35,16 @@ msgid "Attach ISO image to CDROM drive for %s"
36
35
  msgstr ""
37
36
 
38
37
  msgid "Back"
39
- msgstr ""
38
+ msgstr "Zpět"
40
39
 
41
40
  msgid "Boot disk"
42
- msgstr ""
41
+ msgstr "Disk pro zavádění systému"
43
42
 
44
43
  msgid "Boot disk Help"
45
44
  msgstr ""
46
45
 
47
46
  msgid "Boot disk based"
48
- msgstr ""
47
+ msgstr "Založeno na zaváděcím disku"
49
48
 
50
49
  msgid "Boot disk download not available for %s architecture"
51
50
  msgstr ""
@@ -57,7 +56,7 @@ msgid "Boot disks"
57
56
  msgstr ""
58
57
 
59
58
  msgid "Command to generate ISO image, use genisoimage or mkisofs"
60
- msgstr ""
59
+ msgstr "Příkaz pro vytvoření ISO obrazu, použijte genisoimage nebo mkisofs"
61
60
 
62
61
  msgid "Creating new image failed, install truncate utility"
63
62
  msgstr ""
@@ -111,10 +110,10 @@ msgid "Generic Grub2 EFI image template"
111
110
  msgstr ""
112
111
 
113
112
  msgid "Generic image"
114
- msgstr ""
113
+ msgstr "Obecný obraz"
115
114
 
116
115
  msgid "Generic image template"
117
- msgstr ""
116
+ msgstr "Šablona obecného obrazu"
118
117
 
119
118
  msgid "Generic images"
120
119
  msgstr ""
@@ -126,13 +125,13 @@ msgid "Grub2 directory"
126
125
  msgstr ""
127
126
 
128
127
  msgid "Host '%s' image"
129
- msgstr ""
128
+ msgstr "Obraz stroje „%s“"
130
129
 
131
130
  msgid "Host image"
132
- msgstr ""
131
+ msgstr "Obraz stroje"
133
132
 
134
133
  msgid "Host image template"
135
- msgstr ""
134
+ msgstr "Šablona obrazu stroje"
136
135
 
137
136
  msgid "Host images"
138
137
  msgstr ""
@@ -147,25 +146,19 @@ msgid "Host is not in build mode."
147
146
  msgstr ""
148
147
 
149
148
  msgid "ISO build failed"
150
- msgstr ""
149
+ msgstr "Sestavení ISO se nezdařilo"
151
150
 
152
151
  msgid "ISO generation command"
153
- msgstr ""
152
+ msgstr "příkaz pro vytváření ISO obrazu"
154
153
 
155
154
  msgid "ISO hybrid conversion failed: %s"
156
155
  msgstr ""
157
156
 
158
157
  msgid "ISOLINUX directory"
159
- msgstr ""
160
-
161
- msgid "Import Puppet classes"
162
- msgstr ""
163
-
164
- msgid "Import facts"
165
- msgstr ""
158
+ msgstr "ISOLINUX složka"
166
159
 
167
160
  msgid "Installation media caching"
168
- msgstr ""
161
+ msgstr "Mezipaměť pro instalační médium"
169
162
 
170
163
  msgid "Installation media files will be cached for full host images"
171
164
  msgstr ""
@@ -183,13 +176,13 @@ msgid "Path to directory containing grubx64.efi and shimx64.efi"
183
176
  msgstr ""
184
177
 
185
178
  msgid "Path to directory containing iPXE images"
186
- msgstr ""
179
+ msgstr "Popis umístění složky obsahující iPXE obrazy"
187
180
 
188
181
  msgid "Path to directory containing isolinux images"
189
182
  msgstr ""
190
183
 
191
184
  msgid "Path to directory containing syslinux images"
192
- msgstr ""
185
+ msgstr "Popis umístění obsahující syslinux obrazy"
193
186
 
194
187
  msgid "Per-host images contain data about a particular host registered in Foreman and set up fully static networking, avoiding the requirement for DHCP. After networking is configured, they chainload from Foreman, picking up the current OS configuration and build state from the server."
195
188
  msgstr ""
@@ -203,11 +196,8 @@ msgstr ""
203
196
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
204
197
  msgstr ""
205
198
 
206
- msgid "Remote action:"
207
- msgstr ""
208
-
209
199
  msgid "SYSLINUX directory"
210
- msgstr ""
200
+ msgstr "složka se SYSLINUX"
211
201
 
212
202
  msgid "Subnet '%s' generic image"
213
203
  msgstr ""
@@ -246,7 +236,7 @@ msgid "True for full, false for basic reusable image"
246
236
  msgstr ""
247
237
 
248
238
  msgid "Unable to find template specified by %s setting"
249
- msgstr ""
239
+ msgstr "Nedaří se nalézt šablonu určenou nastavením %s"
250
240
 
251
241
  msgid "Unable to generate disk %{kind} template: %{error}"
252
242
  msgstr ""
@@ -264,7 +254,7 @@ msgid "Various types of boot disks can be created to provision hosts without the
264
254
  msgstr ""
265
255
 
266
256
  msgid "iPXE directory"
267
- msgstr ""
257
+ msgstr "iPXE složka"
268
258
 
269
259
  msgid "iPXE template to use for generic EFI host boot disks"
270
260
  msgstr ""
@@ -6,17 +6,17 @@
6
6
  # Christina Gurski <Gurski_christina@yahoo.de>, 2015
7
7
  # Ettore Atalan <atalanttore@googlemail.com>, 2014,2016
8
8
  # Martin Zimmermann <martin.zimmermann@gmx.com>, 2018
9
- # Patrick Dolinic, 2021
9
+ # pdolinic, 2021
10
10
  # Paul Puschmann, 2014
11
11
  # abf90805572190d649c59f7a021d76cb, 2014
12
12
  # simon11 <transifex@stieger.co>, 2014
13
13
  # simon11 <transifex@stieger.co>, 2014
14
14
  msgid ""
15
15
  msgstr ""
16
- "Project-Id-Version: foreman_bootdisk 21.0.4\n"
16
+ "Project-Id-Version: foreman_bootdisk 22.0.0\n"
17
17
  "Report-Msgid-Bugs-To: \n"
18
18
  "PO-Revision-Date: 2014-02-13 12:12+0000\n"
19
- "Last-Translator: Patrick Dolinic, 2021\n"
19
+ "Last-Translator: pdolinic, 2021\n"
20
20
  "Language-Team: German (http://app.transifex.com/foreman/foreman/language/de/)\n"
21
21
  "MIME-Version: 1.0\n"
22
22
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,9 +30,6 @@ msgstr "* - Diese Bootdisk-Typen wurden deaktiviert, Sie können sie unter Verwa
30
30
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
31
31
  msgstr "Eine Variante des Abbildes pro Host mit im im Medium eingebetteten Betriebssystem-Bootloader. Dies ist hilfreich, falls Chainloading auf einer bestimmten Hardware fehlschlägt, hat jedoch den Nachteil, dass das Abbild bei jeglicher Änderung von Betriebssystem, Bootloader oder PXELinux-Vorlagen neu generiert werden muss."
32
32
 
33
- msgid "Action with sub plans"
34
- msgstr "Aktion mit Unterplänen"
35
-
36
33
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
37
34
  msgstr "Alle Abbilder können entweder als ISOs oder als Festplattenabbilder verwendet werden und auch mit `dd` auf eine USB-Festplatte geschrieben."
38
35
 
@@ -165,12 +162,6 @@ msgstr "ISO-Hybrid-Konvertierung fehlgeschlagen: %s"
165
162
  msgid "ISOLINUX directory"
166
163
  msgstr "ISOLINUX-Verzeichnis"
167
164
 
168
- msgid "Import Puppet classes"
169
- msgstr "Puppet-Klassen importieren"
170
-
171
- msgid "Import facts"
172
- msgstr "Fakten importieren"
173
-
174
165
  msgid "Installation media caching"
175
166
  msgstr "Installationsmedien-Dateien Caching"
176
167
 
@@ -210,9 +201,6 @@ msgstr "Bitte die Installation des/der ISOLINUX/SYSLINUX Paket(e) sicherstellen.
210
201
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
211
202
  msgstr "Plugin für Foreman, welches iPXE-basierte Startmedien erstellt, um Hosts ohne die Notwendigkeit einer PXE-Infrastruktur bereitzustellen."
212
203
 
213
- msgid "Remote action:"
214
- msgstr "Entfernte Aktion:"
215
-
216
204
  msgid "SYSLINUX directory"
217
205
  msgstr "SYSLINUX-Verzeichnis"
218
206
 
@@ -1,14 +1,16 @@
1
- # foreman_bootdisk
2
- #
3
- # This file is distributed under the same license as foreman_bootdisk.
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_bootdisk package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
5
  #
6
+ #, fuzzy
5
7
  msgid ""
6
8
  msgstr ""
7
- "Project-Id-Version: foreman_bootdisk 21.0.4\n"
9
+ "Project-Id-Version: foreman_bootdisk 1.0.0\n"
8
10
  "Report-Msgid-Bugs-To: \n"
9
- "PO-Revision-Date: 2014-02-13 12:09+0000\n"
10
- "Last-Translator: Dominic Cleal <dcleal@redhat.com>\n"
11
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "PO-Revision-Date: 2024-09-19 13:05+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"
@@ -21,9 +23,6 @@ msgstr ""
21
23
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
22
24
  msgstr ""
23
25
 
24
- msgid "Action with sub plans"
25
- msgstr ""
26
-
27
26
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
28
27
  msgstr ""
29
28
 
@@ -156,12 +155,6 @@ msgstr ""
156
155
  msgid "ISOLINUX directory"
157
156
  msgstr ""
158
157
 
159
- msgid "Import Puppet classes"
160
- msgstr ""
161
-
162
- msgid "Import facts"
163
- msgstr ""
164
-
165
158
  msgid "Installation media caching"
166
159
  msgstr ""
167
160
 
@@ -201,9 +194,6 @@ msgstr ""
201
194
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
202
195
  msgstr ""
203
196
 
204
- msgid "Remote action:"
205
- msgstr ""
206
-
207
197
  msgid "SYSLINUX directory"
208
198
  msgstr ""
209
199
 
@@ -8,7 +8,7 @@
8
8
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2016
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_bootdisk 21.0.4\n"
11
+ "Project-Id-Version: foreman_bootdisk 22.0.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
13
  "PO-Revision-Date: 2014-02-13 12:12+0000\n"
14
14
  "Last-Translator: Andi Chandler <andi@gowling.com>, 2015-2017,2023\n"
@@ -26,9 +26,6 @@ msgstr "* - These bootdisk types were disabled, you can enable them in Administe
26
26
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
27
27
  msgstr "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
28
28
 
29
- msgid "Action with sub plans"
30
- msgstr "Action with sub plans"
31
-
32
29
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
33
30
  msgstr "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
34
31
 
@@ -161,12 +158,6 @@ msgstr "ISO hybrid conversion failed: %s"
161
158
  msgid "ISOLINUX directory"
162
159
  msgstr "ISOLINUX directory"
163
160
 
164
- msgid "Import Puppet classes"
165
- msgstr "Import Puppet classes"
166
-
167
- msgid "Import facts"
168
- msgstr "Import facts"
169
-
170
161
  msgid "Installation media caching"
171
162
  msgstr "Installation media caching"
172
163
 
@@ -206,9 +197,6 @@ msgstr "Please ensure the isolinux/syslinux package(s) are installed."
206
197
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
207
198
  msgstr "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
208
199
 
209
- msgid "Remote action:"
210
- msgstr "Remote action:"
211
-
212
200
  msgid "SYSLINUX directory"
213
201
  msgstr "SYSLINUX directory"
214
202
 
@@ -3,15 +3,17 @@
3
3
  # This file is distributed under the same license as the foreman_bootdisk package.
4
4
  #
5
5
  # Translators:
6
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
6
7
  # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
7
8
  # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014-2015
8
9
  # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
9
10
  msgid ""
10
11
  msgstr ""
11
- "Project-Id-Version: foreman_bootdisk 21.0.4\n"
12
+ "Project-Id-Version: foreman_bootdisk 22.0.0\n"
12
13
  "Report-Msgid-Bugs-To: \n"
13
14
  "PO-Revision-Date: 2014-02-13 12:12+0000\n"
14
- "Last-Translator: Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014\n"
15
+ "Last-Translator: Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarde"
16
+ "n.nl>, 2024\n"
15
17
  "Language-Team: Spanish (http://app.transifex.com/foreman/foreman/language/es/)"
16
18
  "\n"
17
19
  "MIME-Version: 1.0\n"
@@ -27,9 +29,6 @@ msgstr "* - Estos tipos de discos de arranque estaban desactivados, puede activa
27
29
  msgid "A variant of the per-host image which contains the OS bootloader embedded inside the disk. This may be useful if chainloading fails on certain hardware, but has the downside that the image must be regenerated for any change in the OS, bootloader or PXELinux templates."
28
30
  msgstr "Una variante de la imagen por host que contiene el cargador de arranque del sistema operativo incluido en el disco. Esto puede resultar útil si se produce un error en el hardware de la cadena de arranque. No obstante, tiene la particularidad de que la imagen debe regenerarse para cualquier cambio que se produzca en el sistema operativo, en el cargador de arranque o en las plantillas PXELinux."
29
31
 
30
- msgid "Action with sub plans"
31
- msgstr "Acción con subplanes"
32
-
33
32
  msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
34
33
  msgstr "Todas las imágenes pueden utilizarse como ISO o como imágenes de disco, incluso tras copiarlas en un disco USB con `dd`"
35
34
 
@@ -52,7 +51,7 @@ msgid "Boot disk based"
52
51
  msgstr "Basado en el disco de arranque"
53
52
 
54
53
  msgid "Boot disk download not available for %s architecture"
55
- msgstr "La descarga del disco de arranque no está disponible para la arquitectura %s "
54
+ msgstr "La descarga del disco de arranque no está disponible para la arquitectura %s"
56
55
 
57
56
  msgid "Boot disk help"
58
57
  msgstr "Ayuda para el disco de arranque"
@@ -162,12 +161,6 @@ msgstr "La conversión híbrida ISO ha fallado: %s"
162
161
  msgid "ISOLINUX directory"
163
162
  msgstr "Directorio ISOLINUX"
164
163
 
165
- msgid "Import Puppet classes"
166
- msgstr "Importar clases Puppet"
167
-
168
- msgid "Import facts"
169
- msgstr "Importar datos"
170
-
171
164
  msgid "Installation media caching"
172
165
  msgstr "Habilitando caché de medios de instalación"
173
166
 
@@ -207,9 +200,6 @@ msgstr "Asegúrese de que el(los) paquete(s) isolinux/syslinux estén instalados
207
200
  msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
208
201
  msgstr "Plugin para Foreman que crea discos de arranque iPXE para provisionar hosts sin necesidad de infraestructura PXE"
209
202
 
210
- msgid "Remote action:"
211
- msgstr "Acción remota:"
212
-
213
203
  msgid "SYSLINUX directory"
214
204
  msgstr "Directorio SYSLINUX"
215
205
 
@@ -250,7 +240,7 @@ msgid "True for full, false for basic reusable image"
250
240
  msgstr "Verdadero para completo, falso para imagen básica reutilizable"
251
241
 
252
242
  msgid "Unable to find template specified by %s setting"
253
- msgstr "No se puede encontrar la plantilla especificada en %s "
243
+ msgstr "No se puede encontrar la plantilla especificada en %s"
254
244
 
255
245
  msgid "Unable to generate disk %{kind} template: %{error}"
256
246
  msgstr "No se ha podido generar el disco %{kind} plantilla: %{error}"