hammer_cli_foreman_bootdisk 0.1.3 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +4 -0
  3. data/lib/hammer_cli_foreman_bootdisk/bootdisk.rb +11 -0
  4. data/lib/hammer_cli_foreman_bootdisk/version.rb +1 -1
  5. data/locale/Makefile +2 -61
  6. data/locale/ca/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  7. data/locale/ca/hammer_cli_foreman_bootdisk.po +58 -0
  8. data/locale/de/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  9. data/locale/de/hammer_cli_foreman_bootdisk.po +58 -0
  10. data/locale/en/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  11. data/locale/en/hammer_cli_foreman_bootdisk.po +26 -30
  12. data/locale/en_GB/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  13. data/locale/en_GB/hammer_cli_foreman_bootdisk.po +57 -0
  14. data/locale/es/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  15. data/locale/es/hammer_cli_foreman_bootdisk.po +60 -0
  16. data/locale/fr/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  17. data/locale/fr/hammer_cli_foreman_bootdisk.po +59 -0
  18. data/locale/hammer_cli_foreman_bootdisk.pot +37 -29
  19. data/locale/it/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  20. data/locale/it/hammer_cli_foreman_bootdisk.po +58 -0
  21. data/locale/ja/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  22. data/locale/ja/hammer_cli_foreman_bootdisk.po +58 -0
  23. data/locale/ka/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  24. data/locale/ka/hammer_cli_foreman_bootdisk.po +56 -0
  25. data/locale/ko/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  26. data/locale/ko/hammer_cli_foreman_bootdisk.po +57 -0
  27. data/locale/nl_NL/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  28. data/locale/nl_NL/hammer_cli_foreman_bootdisk.po +57 -0
  29. data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  30. data/locale/pt_BR/hammer_cli_foreman_bootdisk.po +58 -0
  31. data/locale/ru/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  32. data/locale/ru/hammer_cli_foreman_bootdisk.po +59 -0
  33. data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  34. data/locale/zh_CN/hammer_cli_foreman_bootdisk.po +55 -0
  35. data/locale/zh_TW/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo +0 -0
  36. data/locale/zh_TW/hammer_cli_foreman_bootdisk.po +57 -0
  37. metadata +45 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7f614f5923a69be95f1c301101cc58f0f081f7ca
4
- data.tar.gz: 9383f09dab4d2ae59ae51ccd3fbd017bb95b092e
2
+ SHA256:
3
+ metadata.gz: a6a7c3f5abe5275511c75954d6aaa5979dd143fc11fd3b9cae08c7513cf37f41
4
+ data.tar.gz: 9be6c7b102a5e1bd0974c8ab76fb383f12fdc7d948be9f3146fff7bb2ad6da9a
5
5
  SHA512:
6
- metadata.gz: 1fbcf03127704da0956ea45e1e6dc1c74ed866781d26cdabc1b6efe12257003b3e734ea11bbd5843cb85525d600a65c1b64d2116874c7af8e4213b12686ce572
7
- data.tar.gz: 4fb8064a25bda0d9d0826731023bc844d570f642567a5089450237e470157151779540a62861c0df1f1528e379b134004f86a5f46178428b69ce9cb7a3a63904
6
+ metadata.gz: 27dfa33a66f56e5493a2127c2b553a635bcf91137c833998f96b68d44f1daba15472664091340b23c80074634da744849d03d09e4adba0604396aecc0fa4bd0f
7
+ data.tar.gz: 8b78e5216fa350a7040cca19a8981746140f74d164ba9172f8af3f3798509d37269961b7a53150f9fbe6c837cdfd802d40e175fc1b8fe2967df47a6572f2aa13
data/README.md CHANGED
@@ -21,6 +21,10 @@ Or to download a per-host disk, run:
21
21
 
22
22
  hammer bootdisk host --host client.example.com
23
23
 
24
+ Or to download a subnet disk, run:
25
+
26
+ hammer bootdisk subnet --subnet mysubnet
27
+
24
28
  Files will be downloaded into the current directory unless `--file` is used to set the
25
29
  destination:
26
30
 
@@ -22,6 +22,17 @@ module HammerCLIForemanBootdisk
22
22
  build_options
23
23
  end
24
24
 
25
+ class SubnetCommand < HammerCLIForemanBootdisk::DownloadCommand
26
+ resource :subnet_disks
27
+ action :subnet
28
+
29
+ command_name 'subnet'
30
+ success_message _('Successfully downloaded subnet disk image to %s')
31
+ failure_message _('Failed to download subnet disk image')
32
+
33
+ build_options
34
+ end
35
+
25
36
  autoload_subcommands
26
37
  end
27
38
  end
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForemanBootdisk
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.1.3'
3
+ @version ||= Gem::Version.new '0.4.0'
4
4
  end
5
5
  end
data/locale/Makefile CHANGED
@@ -1,65 +1,6 @@
1
1
  #
2
2
  # Makefile for PO merging and MO generation. More info in the README.
3
3
  #
4
- # make all-mo (default) - generate MO files
5
- # make check - check translations using translate-tool
6
- # make tx-update - download and merge translations from Transifex
7
- # make clean - clean everything
4
+ # Run make help to list available targets
8
5
  #
9
- DOMAIN = hammer_cli_foreman_bootdisk
10
- VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_foreman_bootdisk.gemspec");puts spec.version')
11
- POTFILE = $(DOMAIN).pot
12
- MOFILE = $(DOMAIN).mo
13
- POFILES = $(shell find . -name '*.po')
14
- MOFILES = $(patsubst %.po,%.mo,$(POFILES))
15
- POXFILES = $(patsubst %.po,%.pox,$(POFILES))
16
-
17
- %.mo: %.po
18
- mkdir -p $(shell dirname $@)/LC_MESSAGES
19
- msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
20
-
21
- # Generate MO files from PO files
22
- all-mo: $(MOFILES)
23
-
24
- # Check for malformed strings
25
- %.pox: %.po
26
- msgfmt -c $<
27
- pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
28
- -t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
29
- cat $@
30
- ! grep -q msgid $@
31
-
32
- check: $(POXFILES)
33
- msgfmt -c ${POTFILE}
34
-
35
- # Merge PO files
36
- update-po:
37
- for f in $(shell find ./ -name "*.po") ; do \
38
- msgmerge -N --backup=none -U $$f ${POTFILE} ; \
39
- done
40
-
41
- # Unify duplicate translations
42
- uniq-po:
43
- for f in $(shell find ./ -name "*.po") ; do \
44
- msguniq $$f -o $$f ; \
45
- done
46
-
47
- tx-pull:
48
- tx pull -f
49
- for f in $(POFILES) ; do \
50
- sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
51
- done
52
- -git commit -a -m "i18n - extracting new, pulling from tx"
53
-
54
- extract-strings:
55
- bundle exec rake gettext:find
56
-
57
- reset-po:
58
- # merging po files is unnecessary when using transifex.com
59
- git checkout -- ../locale/*/*po
60
-
61
- tx-update: tx-pull extract-strings reset-po $(MOFILES)
62
- # amend mo files
63
- git add ../locale/*/LC_MESSAGES
64
- git commit -a --amend -m "i18n - extracting new, pulling from tx"
65
- -echo Changes commited!
6
+ include $(shell bundle exec ruby -e 'require "hammer_cli"; puts HammerCLI::I18n.main_makefile')
@@ -0,0 +1,58 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015-2016
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, "
14
+ "2015-2016\n"
15
+ "Language-Team: Catalan (http://app.transifex.com/foreman/foreman/language/"
16
+ "ca/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: ca\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ msgid "Download boot disks"
24
+ msgstr "Baixa els discs d'arrencada"
25
+
26
+ msgid "Successfully downloaded generic disk image to %s"
27
+ msgstr "S'ha baixat correctament la imatge genèrica de disc a %s"
28
+
29
+ msgid "Failed to download generic disk image"
30
+ msgstr "No s'ha pogut baixar la imatge genèrica de disc"
31
+
32
+ msgid "Successfully downloaded host disk image to %s"
33
+ msgstr "S'ha baixat correctament la imatge de disc d'amfitrió a %s"
34
+
35
+ msgid "Failed to download host disk image"
36
+ msgstr "No s'ha pogut baixar la imatge de disc d'amfitrió"
37
+
38
+ msgid "Successfully downloaded subnet disk image to %s"
39
+ msgstr "S'ha baixat correctament la imatge de disc de subxarxa a %s"
40
+
41
+ msgid "Failed to download subnet disk image"
42
+ msgstr "No s'ha pogut baixar la imatge de disc de subxarxa"
43
+
44
+ msgid "File or device to write image to"
45
+ msgstr "Fitxer o dispositiu on escriure"
46
+
47
+ msgid "Force writing to existing destination (device etc.)"
48
+ msgstr "Força l'escriptura a una destinació existent (dispositiu, etc.)"
49
+
50
+ msgid "Use sudo to write to device"
51
+ msgstr "Utilitzeu sudo per escriure al disc"
52
+
53
+ msgid ""
54
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
55
+ "are sure you wish to write to it"
56
+ msgstr ""
57
+ "La destinació %s ja existeix i no és un fitxer regular, utilitzeu '--force' "
58
+ "si esteu segur que voleu sobreescriure-ho."
@@ -0,0 +1,58 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ # simon11 <transifex@stieger.co>, 2014
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
13
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
14
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
15
+ "Language-Team: German (http://app.transifex.com/foreman/foreman/language/"
16
+ "de/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: de\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ msgid "Download boot disks"
24
+ msgstr "Startmedien herunterladen"
25
+
26
+ msgid "Successfully downloaded generic disk image to %s"
27
+ msgstr "Generisches Image erfolgreich auf %s heruntergeladen"
28
+
29
+ msgid "Failed to download generic disk image"
30
+ msgstr "Fehler beim Herunterladen von generischem Image"
31
+
32
+ msgid "Successfully downloaded host disk image to %s"
33
+ msgstr "Host-Image erfolgreich auf %s heruntergeladen"
34
+
35
+ msgid "Failed to download host disk image"
36
+ msgstr "Fehler beim Herunterladen von Host-Image"
37
+
38
+ msgid "Successfully downloaded subnet disk image to %s"
39
+ msgstr "Subnetzt-Disk-Image erfolgreich auf %s heruntergeladen"
40
+
41
+ msgid "Failed to download subnet disk image"
42
+ msgstr "Fehler beim Herunterladen von Subnetz-Disk-Image"
43
+
44
+ msgid "File or device to write image to"
45
+ msgstr "Ziel (Datei oder Gerät) zum Schreiben des Images"
46
+
47
+ msgid "Force writing to existing destination (device etc.)"
48
+ msgstr "Schreiben auf vorhandenes Ziel (Gerät etc.) erzwingen"
49
+
50
+ msgid "Use sudo to write to device"
51
+ msgstr "Sudo beim Schreiben auf das Gerät verwenden"
52
+
53
+ msgid ""
54
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
55
+ "are sure you wish to write to it"
56
+ msgstr ""
57
+ "Ziel %s existiert bereits und ist keine reguläre Datei; verwenden Sie \"--"
58
+ "force\", falls Sie darauf schreiben möchten"
@@ -1,57 +1,53 @@
1
- # Hammer CLI Foreman Bootdisk
2
- # Copyright (C) 2014
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 hammer_cli_foreman_bootdisk package.
4
- # Dominic Cleal <dcleal@redhat.com>, 2014
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
- #, fuzzy
7
6
  msgid ""
8
7
  msgstr ""
9
- "Project-Id-Version: hammer_cli_foreman_bootdisk 0.1.0\n"
8
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
9
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-08-08 14:31+0100\n"
12
- "PO-Revision-Date: 2014-08-08 14:24+0100\n"
13
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
14
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
10
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
11
+ "PO-Revision-Date: 2019-06-20 10:23+0200\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
14
  "Language: \n"
16
15
  "MIME-Version: 1.0\n"
17
16
  "Content-Type: text/plain; charset=UTF-8\n"
18
17
  "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
19
 
21
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:6
22
- msgid "File or device to write image to"
20
+ msgid "Download boot disks"
23
21
  msgstr ""
24
22
 
25
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:7
26
- msgid "Force writing to existing destination (device etc.)"
23
+ msgid "Successfully downloaded generic disk image to %s"
27
24
  msgstr ""
28
25
 
29
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:8
30
- msgid "Use sudo to write to device"
26
+ msgid "Failed to download generic disk image"
31
27
  msgstr ""
32
28
 
33
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:14
34
- msgid ""
35
- "Destination %s already exists and isn't a regular file, use '--force' if you "
36
- "are sure you wish to write to it"
29
+ msgid "Successfully downloaded host disk image to %s"
37
30
  msgstr ""
38
31
 
39
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:9
40
- msgid "Successfully downloaded generic disk image to %s"
32
+ msgid "Failed to download host disk image"
41
33
  msgstr ""
42
34
 
43
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:10
44
- msgid "Failed to download generic disk image"
35
+ msgid "Successfully downloaded subnet disk image to %s"
45
36
  msgstr ""
46
37
 
47
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:19
48
- msgid "Successfully downloaded host disk image to %s"
38
+ msgid "Failed to download subnet disk image"
49
39
  msgstr ""
50
40
 
51
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:20
52
- msgid "Failed to download host disk image"
41
+ msgid "File or device to write image to"
53
42
  msgstr ""
54
43
 
55
- #: lib/hammer_cli_foreman_bootdisk.rb:12
56
- msgid "Download boot disks"
44
+ msgid "Force writing to existing destination (device etc.)"
45
+ msgstr ""
46
+
47
+ msgid "Use sudo to write to device"
48
+ msgstr ""
49
+
50
+ msgid ""
51
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
52
+ "are sure you wish to write to it"
57
53
  msgstr ""
@@ -0,0 +1,57 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Andi Chandler <andi@gowling.com>, 2015-2016
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Andi Chandler <andi@gowling.com>, 2015-2016\n"
14
+ "Language-Team: English (United Kingdom) (http://app.transifex.com/foreman/"
15
+ "foreman/language/en_GB/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: en_GB\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+
22
+ msgid "Download boot disks"
23
+ msgstr "Download boot disks"
24
+
25
+ msgid "Successfully downloaded generic disk image to %s"
26
+ msgstr "Successfully downloaded generic disk image to %s"
27
+
28
+ msgid "Failed to download generic disk image"
29
+ msgstr "Failed to download generic disk image"
30
+
31
+ msgid "Successfully downloaded host disk image to %s"
32
+ msgstr "Successfully downloaded host disk image to %s"
33
+
34
+ msgid "Failed to download host disk image"
35
+ msgstr "Failed to download host disk image"
36
+
37
+ msgid "Successfully downloaded subnet disk image to %s"
38
+ msgstr "Successfully downloaded subnet disk image to %s"
39
+
40
+ msgid "Failed to download subnet disk image"
41
+ msgstr "Failed to download subnet disk image"
42
+
43
+ msgid "File or device to write image to"
44
+ msgstr "File or device to write image to"
45
+
46
+ msgid "Force writing to existing destination (device etc.)"
47
+ msgstr "Force writing to existing destination (device etc.)"
48
+
49
+ msgid "Use sudo to write to device"
50
+ msgstr "Use sudo to write to device"
51
+
52
+ msgid ""
53
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
54
+ "are sure you wish to write to it"
55
+ msgstr ""
56
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
57
+ "are sure you wish to write to it"
@@ -0,0 +1,60 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
8
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
12
+ "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
14
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
15
+ "Last-Translator: Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014\n"
16
+ "Language-Team: Spanish (http://app.transifex.com/foreman/foreman/language/"
17
+ "es/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: es\n"
22
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
23
+ "1 : 2;\n"
24
+
25
+ msgid "Download boot disks"
26
+ msgstr "Descargar discos de arranque"
27
+
28
+ msgid "Successfully downloaded generic disk image to %s"
29
+ msgstr "Imagen de disco genérica descargada con éxito en %s"
30
+
31
+ msgid "Failed to download generic disk image"
32
+ msgstr "Falló la descarga de imagen de disco genérica"
33
+
34
+ msgid "Successfully downloaded host disk image to %s"
35
+ msgstr "Imagen de disco host descargada correctamente en %s"
36
+
37
+ msgid "Failed to download host disk image"
38
+ msgstr "Falló la descarga de imagen de disco de host"
39
+
40
+ msgid "Successfully downloaded subnet disk image to %s"
41
+ msgstr "Imagen de disco de subred descargada con éxito en %s"
42
+
43
+ msgid "Failed to download subnet disk image"
44
+ msgstr "Falló la descarga de la imagen de disco de subred"
45
+
46
+ msgid "File or device to write image to"
47
+ msgstr "Archivo o dispositivo para escribir imagen "
48
+
49
+ msgid "Force writing to existing destination (device etc.)"
50
+ msgstr "Forzar escritura al destino existente (dispositivo...)"
51
+
52
+ msgid "Use sudo to write to device"
53
+ msgstr "Use sudo para escribir al dispositivo."
54
+
55
+ msgid ""
56
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
57
+ "are sure you wish to write to it"
58
+ msgstr ""
59
+ "El destino %s ya existe y no es un archivo normal, utilice '--force' si está "
60
+ "seguro de que desea escribir en él."
@@ -0,0 +1,59 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Claer <transiblu@claer.hammock.fr>, 2014,2016
7
+ # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
13
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
14
+ "Last-Translator: Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014\n"
15
+ "Language-Team: French (http://app.transifex.com/foreman/foreman/language/"
16
+ "fr/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: fr\n"
21
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
22
+ "1000000 == 0 ? 1 : 2;\n"
23
+
24
+ msgid "Download boot disks"
25
+ msgstr "Téléchargez les disques de démarrage"
26
+
27
+ msgid "Successfully downloaded generic disk image to %s"
28
+ msgstr "Image de disque générique téléchargée sur %s"
29
+
30
+ msgid "Failed to download generic disk image"
31
+ msgstr "Échec du téléchargement de l'image de disque générique"
32
+
33
+ msgid "Successfully downloaded host disk image to %s"
34
+ msgstr "Image de disque de l'hôte téléchargée sur %s"
35
+
36
+ msgid "Failed to download host disk image"
37
+ msgstr "Échec du téléchargement de l'image de disque de l'hôte"
38
+
39
+ msgid "Successfully downloaded subnet disk image to %s"
40
+ msgstr "Image de disque du sous-réseau téléchargée sur %s"
41
+
42
+ msgid "Failed to download subnet disk image"
43
+ msgstr "Échec du téléchargement de l'image de disque du sous-réseau"
44
+
45
+ msgid "File or device to write image to"
46
+ msgstr "Fichier ou périphérique sur lequel écrire une image"
47
+
48
+ msgid "Force writing to existing destination (device etc.)"
49
+ msgstr "Écriture forcée sur destination existantes (périphériques, etc)"
50
+
51
+ msgid "Use sudo to write to device"
52
+ msgstr "Utilisez sudo pour écrire un périphérique"
53
+
54
+ msgid ""
55
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
56
+ "are sure you wish to write to it"
57
+ msgstr ""
58
+ "La destination %s existe déjà et n'est pas un fichier standard. Utilisez '--"
59
+ "force' si vous êtes sûr de vouloir écrire dessus"
@@ -1,57 +1,65 @@
1
- # Hammer CLI Foreman Bootdisk
2
- # Copyright (C) 2014
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 hammer_cli_foreman_bootdisk package.
4
- # Dominic Cleal <dcleal@redhat.com>, 2014
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer_cli_foreman_bootdisk 0.1.0\n"
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.1.3\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-08-08 14:31+0100\n"
12
- "PO-Revision-Date: 2014-08-08 14:24+0100\n"
13
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
14
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2019-06-20 10:23+0200\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \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"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:6
22
- msgid "File or device to write image to"
21
+ #: ../lib/hammer_cli_foreman_bootdisk.rb:12
22
+ msgid "Download boot disks"
23
23
  msgstr ""
24
24
 
25
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:7
26
- msgid "Force writing to existing destination (device etc.)"
25
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:9
26
+ msgid "Successfully downloaded generic disk image to %s"
27
27
  msgstr ""
28
28
 
29
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:8
30
- msgid "Use sudo to write to device"
29
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:10
30
+ msgid "Failed to download generic disk image"
31
31
  msgstr ""
32
32
 
33
- #: lib/hammer_cli_foreman_bootdisk/commands.rb:14
34
- msgid ""
35
- "Destination %s already exists and isn't a regular file, use '--force' if you "
36
- "are sure you wish to write to it"
33
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:19
34
+ msgid "Successfully downloaded host disk image to %s"
37
35
  msgstr ""
38
36
 
39
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:9
40
- msgid "Successfully downloaded generic disk image to %s"
37
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:20
38
+ msgid "Failed to download host disk image"
41
39
  msgstr ""
42
40
 
43
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:10
44
- msgid "Failed to download generic disk image"
41
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:30
42
+ msgid "Successfully downloaded subnet disk image to %s"
45
43
  msgstr ""
46
44
 
47
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:19
48
- msgid "Successfully downloaded host disk image to %s"
45
+ #: ../lib/hammer_cli_foreman_bootdisk/bootdisk.rb:31
46
+ msgid "Failed to download subnet disk image"
49
47
  msgstr ""
50
48
 
51
- #: lib/hammer_cli_foreman_bootdisk/bootdisk.rb:20
52
- msgid "Failed to download host disk image"
49
+ #: ../lib/hammer_cli_foreman_bootdisk/commands.rb:6
50
+ msgid "File or device to write image to"
53
51
  msgstr ""
54
52
 
55
- #: lib/hammer_cli_foreman_bootdisk.rb:12
56
- msgid "Download boot disks"
53
+ #: ../lib/hammer_cli_foreman_bootdisk/commands.rb:7
54
+ msgid "Force writing to existing destination (device etc.)"
55
+ msgstr ""
56
+
57
+ #: ../lib/hammer_cli_foreman_bootdisk/commands.rb:8
58
+ msgid "Use sudo to write to device"
59
+ msgstr ""
60
+
61
+ #: ../lib/hammer_cli_foreman_bootdisk/commands.rb:14
62
+ msgid ""
63
+ "Destination %s already exists and isn't a regular file, use '--force' if you a"
64
+ "re sure you wish to write to it"
57
65
  msgstr ""
@@ -0,0 +1,58 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
14
+ "Language-Team: Italian (http://app.transifex.com/foreman/foreman/language/"
15
+ "it/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: it\n"
20
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
21
+ "1 : 2;\n"
22
+
23
+ msgid "Download boot disks"
24
+ msgstr "Scarica dischi d'avvio"
25
+
26
+ msgid "Successfully downloaded generic disk image to %s"
27
+ msgstr "Scaricata con successo l'immagine del disco generico su %s"
28
+
29
+ msgid "Failed to download generic disk image"
30
+ msgstr "Download dell'immagine del disco generico fallito"
31
+
32
+ msgid "Successfully downloaded host disk image to %s"
33
+ msgstr "Scaricata con successo l'immagine del disco host su %s"
34
+
35
+ msgid "Failed to download host disk image"
36
+ msgstr "Download dell'immagine del disco host fallito"
37
+
38
+ msgid "Successfully downloaded subnet disk image to %s"
39
+ msgstr ""
40
+
41
+ msgid "Failed to download subnet disk image"
42
+ msgstr ""
43
+
44
+ msgid "File or device to write image to"
45
+ msgstr "File o dispositivo sul quale scrivere l'immagine"
46
+
47
+ msgid "Force writing to existing destination (device etc.)"
48
+ msgstr "Forza la scrittura sulla destinazione esistente (dispositivo ecc.)"
49
+
50
+ msgid "Use sudo to write to device"
51
+ msgstr "Usa sudo per eseguire la scrittura sul dispositivo"
52
+
53
+ msgid ""
54
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
55
+ "are sure you wish to write to it"
56
+ msgstr ""
57
+ "La destinazione %s esiste già e non è un file regolare, usare '--force' se "
58
+ "sei sicuro di voler eseguire il processo di scrittura"
@@ -0,0 +1,58 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ # 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
13
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
14
+ "Last-Translator: 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015\n"
15
+ "Language-Team: Japanese (http://app.transifex.com/foreman/foreman/language/"
16
+ "ja/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: ja\n"
21
+ "Plural-Forms: nplurals=1; plural=0;\n"
22
+
23
+ msgid "Download boot disks"
24
+ msgstr "ブートディスクのダウンロード"
25
+
26
+ msgid "Successfully downloaded generic disk image to %s"
27
+ msgstr "汎用ディスクイメージが正常に %s にダウンロードされました"
28
+
29
+ msgid "Failed to download generic disk image"
30
+ msgstr "汎用ディスクイメージのダウンロードに失敗しました"
31
+
32
+ msgid "Successfully downloaded host disk image to %s"
33
+ msgstr "ホストディスクイメージが正常に %s にダウンロードされました"
34
+
35
+ msgid "Failed to download host disk image"
36
+ msgstr "ホストディスクイメージのダウンロードに失敗しました"
37
+
38
+ msgid "Successfully downloaded subnet disk image to %s"
39
+ msgstr "サブネットディスクイメージが正常に %s にダウンロードされました"
40
+
41
+ msgid "Failed to download subnet disk image"
42
+ msgstr "サブネットディスクイメージのダウンロードに失敗しました"
43
+
44
+ msgid "File or device to write image to"
45
+ msgstr "イメージを書き込むファイルまたはデバイス"
46
+
47
+ msgid "Force writing to existing destination (device etc.)"
48
+ msgstr "既存の書き込み先 (デバイスなど) への書き込みを強制"
49
+
50
+ msgid "Use sudo to write to device"
51
+ msgstr "デバイスへの書き込みに sudo を使用"
52
+
53
+ msgid ""
54
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
55
+ "are sure you wish to write to it"
56
+ msgstr ""
57
+ "書き込み先 %s がすでに存在します。これは通常ファイルではありません。本当にこ"
58
+ "れに書き込む場合は '--force' を使用します"
@@ -0,0 +1,56 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
11
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: Georgian (http://app.transifex.com/foreman/foreman/language/"
14
+ "ka/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: ka\n"
19
+ "Plural-Forms: nplurals=2; plural=(n!=1);\n"
20
+
21
+ msgid "Download boot disks"
22
+ msgstr "ჩატვირთვადი დისკების გადმოწერა"
23
+
24
+ msgid "Successfully downloaded generic disk image to %s"
25
+ msgstr "დისკის ზოგადი ასლი წარმატებით გადმოიწერა %s-ზე"
26
+
27
+ msgid "Failed to download generic disk image"
28
+ msgstr "დისკის ზოგადი ასლის გადმოწერის შეცდომა"
29
+
30
+ msgid "Successfully downloaded host disk image to %s"
31
+ msgstr "ჰოსტის დისკის ასლი წარმატებით გადმოიწერა %s-ზე"
32
+
33
+ msgid "Failed to download host disk image"
34
+ msgstr "ჰოსტის დისკის ასლის გადმოწერის შეცდომა"
35
+
36
+ msgid "Successfully downloaded subnet disk image to %s"
37
+ msgstr "ქვექსელის დისკის ასლი წარმატებით გადმოიწერა %s-ზე"
38
+
39
+ msgid "Failed to download subnet disk image"
40
+ msgstr "ქვექსელის დისკის ასლის გადმოწერის შეცდომა"
41
+
42
+ msgid "File or device to write image to"
43
+ msgstr "ფაილი ან მოწყობილობა ასლის ჩასაწერად"
44
+
45
+ msgid "Force writing to existing destination (device etc.)"
46
+ msgstr "არსებულ ადგილას ძალით ჩაწერა (მოწყობილობა, ა.შ.)"
47
+
48
+ msgid "Use sudo to write to device"
49
+ msgstr "მოწყობილობაზე ჩასაწერად sudo-ის გამოყენება"
50
+
51
+ msgid ""
52
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
53
+ "are sure you wish to write to it"
54
+ msgstr ""
55
+ "სამიზნე %s უკვე არსებობს და არ წარმოდგენს ჩვეულებრივ ფაილს. თუ მაინც გნებავთ "
56
+ "მასში ჩაწერა, გამოიყენეთ --force"
@@ -0,0 +1,57 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
14
+ "Language-Team: Korean (http://app.transifex.com/foreman/foreman/language/"
15
+ "ko/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: ko\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ msgid "Download boot disks"
23
+ msgstr "부팅 디스크 다운로드 "
24
+
25
+ msgid "Successfully downloaded generic disk image to %s"
26
+ msgstr "일반 디스크 이미지가 %s에 성공적으로 다운로드되었습니다 "
27
+
28
+ msgid "Failed to download generic disk image"
29
+ msgstr "일반 디스크 이미지 다운로드에 실패했습니다 "
30
+
31
+ msgid "Successfully downloaded host disk image to %s"
32
+ msgstr "호스트 디스크 이미지가 %s에 성공적으로 다운로드되었습니다 "
33
+
34
+ msgid "Failed to download host disk image"
35
+ msgstr "호스트 디스크 이미지 다운로드에 실패했습니다 "
36
+
37
+ msgid "Successfully downloaded subnet disk image to %s"
38
+ msgstr ""
39
+
40
+ msgid "Failed to download subnet disk image"
41
+ msgstr ""
42
+
43
+ msgid "File or device to write image to"
44
+ msgstr "이미지를 작성할 파일 또는 장치 "
45
+
46
+ msgid "Force writing to existing destination (device etc.)"
47
+ msgstr "기존 대상 파일 (장치 등)에 쓰기를 강제 "
48
+
49
+ msgid "Use sudo to write to device"
50
+ msgstr "장치에 쓰기를 실행하기 위해 sudo 사용"
51
+
52
+ msgid ""
53
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
54
+ "are sure you wish to write to it"
55
+ msgstr ""
56
+ "대상 파일 %s 이 이미 존재하며 이는 일반 파일이 아닙니다. 파일에 쓰기를 실행하"
57
+ "고자 할 경우 '--force'를 사용합니다 "
@@ -0,0 +1,57 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # EmielK <emiel@kremers.us>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: EmielK <emiel@kremers.us>, 2014\n"
14
+ "Language-Team: Dutch (Netherlands) (http://app.transifex.com/foreman/foreman/"
15
+ "language/nl_NL/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: nl_NL\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+
22
+ msgid "Download boot disks"
23
+ msgstr "Download opstart disks"
24
+
25
+ msgid "Successfully downloaded generic disk image to %s"
26
+ msgstr "Generiek disk kopie is succesvol gedownload naar %s"
27
+
28
+ msgid "Failed to download generic disk image"
29
+ msgstr "Generiek disk kopie downloaden is mislukt"
30
+
31
+ msgid "Successfully downloaded host disk image to %s"
32
+ msgstr "Host disk kopie is succesvol gedownload naar %s"
33
+
34
+ msgid "Failed to download host disk image"
35
+ msgstr "Host disk kopie downloaden is mislukt"
36
+
37
+ msgid "Successfully downloaded subnet disk image to %s"
38
+ msgstr ""
39
+
40
+ msgid "Failed to download subnet disk image"
41
+ msgstr ""
42
+
43
+ msgid "File or device to write image to"
44
+ msgstr "Bestand of apparaat om image naartoe te schrijven"
45
+
46
+ msgid "Force writing to existing destination (device etc.)"
47
+ msgstr "Forceer het schrijven naar een bestaand doel (locatie, etc.)"
48
+
49
+ msgid "Use sudo to write to device"
50
+ msgstr "Gebruik sudo om naar apparaat te schrijven"
51
+
52
+ msgid ""
53
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
54
+ "are sure you wish to write to it"
55
+ msgstr ""
56
+ "Doel %s bestaand all en is geen bestand. Gebruik '--force' als je er toch "
57
+ "naartoe wil schrijven"
@@ -0,0 +1,58 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
14
+ "Language-Team: Portuguese (Brazil) (http://app.transifex.com/foreman/foreman/"
15
+ "language/pt_BR/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: pt_BR\n"
20
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
21
+ "1000000 == 0 ? 1 : 2;\n"
22
+
23
+ msgid "Download boot disks"
24
+ msgstr "Baixar discos de inicialização"
25
+
26
+ msgid "Successfully downloaded generic disk image to %s"
27
+ msgstr "Imagem de disco genérica baixada com sucesso para %s"
28
+
29
+ msgid "Failed to download generic disk image"
30
+ msgstr "Falha ao baixar a imagem de disco genérico"
31
+
32
+ msgid "Successfully downloaded host disk image to %s"
33
+ msgstr "Imagem de disco hospedeiro baixada com sucesso para %s"
34
+
35
+ msgid "Failed to download host disk image"
36
+ msgstr "Falha ao baixar a imagem de disco de host"
37
+
38
+ msgid "Successfully downloaded subnet disk image to %s"
39
+ msgstr "Imagem de disco de sub-rede baixada com sucesso para %s"
40
+
41
+ msgid "Failed to download subnet disk image"
42
+ msgstr "Falha ao baixar a imagem de disco de subrede"
43
+
44
+ msgid "File or device to write image to"
45
+ msgstr "Arquivo ou dispositivo onde gravar a imagem"
46
+
47
+ msgid "Force writing to existing destination (device etc.)"
48
+ msgstr "Forçar gravação no destino existente (dispositivo etc.)"
49
+
50
+ msgid "Use sudo to write to device"
51
+ msgstr "Use sudo para gravar no dispositivo"
52
+
53
+ msgid ""
54
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
55
+ "are sure you wish to write to it"
56
+ msgstr ""
57
+ "O destino %s já existe e não é um arquivo regular, use '--force' se você tem "
58
+ "certeza de que deseja escrever para ele"
@@ -0,0 +1,59 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ # Vladimir Pavlov <v.pavlov@i-teco.ru>, 2015
8
+ # Yulia <yulia.poyarkova@redhat.com>, 2016
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
12
+ "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
14
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
15
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
16
+ "Language-Team: Russian (http://app.transifex.com/foreman/foreman/language/"
17
+ "ru/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: ru\n"
22
+ "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
23
+ "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
24
+ "%100>=11 && n%100<=14)? 2 : 3);\n"
25
+
26
+ msgid "Download boot disks"
27
+ msgstr "Загрузить диски"
28
+
29
+ msgid "Successfully downloaded generic disk image to %s"
30
+ msgstr "Стандартный образ загружен в %s"
31
+
32
+ msgid "Failed to download generic disk image"
33
+ msgstr "Не удалось загрузить стандартный образ"
34
+
35
+ msgid "Successfully downloaded host disk image to %s"
36
+ msgstr "Образ узла загружен в %s"
37
+
38
+ msgid "Failed to download host disk image"
39
+ msgstr "Не удалось загрузить образ узла"
40
+
41
+ msgid "Successfully downloaded subnet disk image to %s"
42
+ msgstr "Образ для подсети загружен в %s"
43
+
44
+ msgid "Failed to download subnet disk image"
45
+ msgstr "Не удалось загрузить дисковый образ для подсети"
46
+
47
+ msgid "File or device to write image to"
48
+ msgstr "Файл или устройство для записи образа"
49
+
50
+ msgid "Force writing to existing destination (device etc.)"
51
+ msgstr "Принудительно перезаписать"
52
+
53
+ msgid "Use sudo to write to device"
54
+ msgstr "Запись устройства в режиме sudo"
55
+
56
+ msgid ""
57
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
58
+ "are sure you wish to write to it"
59
+ msgstr "%s уже существует. Чтобы перезаписать, добавьте «--force»"
@@ -0,0 +1,55 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
14
+ "Language-Team: Chinese (China) (http://app.transifex.com/foreman/foreman/"
15
+ "language/zh_CN/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: zh_CN\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ msgid "Download boot disks"
23
+ msgstr "下載開機磁碟"
24
+
25
+ msgid "Successfully downloaded generic disk image to %s"
26
+ msgstr "成功地将通用磁盘镜像下载到 %s"
27
+
28
+ msgid "Failed to download generic disk image"
29
+ msgstr "下载通用磁盘镜像失败"
30
+
31
+ msgid "Successfully downloaded host disk image to %s"
32
+ msgstr "成功地将主机磁盘镜像下载到 %s"
33
+
34
+ msgid "Failed to download host disk image"
35
+ msgstr "下载主机磁盘镜像失败"
36
+
37
+ msgid "Successfully downloaded subnet disk image to %s"
38
+ msgstr "成功地将子网磁盘镜像下载到 %s"
39
+
40
+ msgid "Failed to download subnet disk image"
41
+ msgstr "下载子网磁盘镜像失败"
42
+
43
+ msgid "File or device to write image to"
44
+ msgstr "用來寫入映像檔的檔案或裝置"
45
+
46
+ msgid "Force writing to existing destination (device etc.)"
47
+ msgstr "強制寫入既有的目的地(裝置等等)"
48
+
49
+ msgid "Use sudo to write to device"
50
+ msgstr "使用 sudo 來寫入裝置"
51
+
52
+ msgid ""
53
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
54
+ "are sure you wish to write to it"
55
+ msgstr "目标 %s 已存在且不是一个常规文件,如果您确定要写入它,则使用 '-force'"
@@ -0,0 +1,57 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_bootdisk package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_bootdisk 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-06-20 10:23+0200\n"
12
+ "PO-Revision-Date: 2014-08-08 16:21+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>, 2014\n"
14
+ "Language-Team: Chinese (Taiwan) (http://app.transifex.com/foreman/foreman/"
15
+ "language/zh_TW/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: zh_TW\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ msgid "Download boot disks"
23
+ msgstr "下載開機磁碟"
24
+
25
+ msgid "Successfully downloaded generic disk image to %s"
26
+ msgstr "已成功下載泛型磁碟映像檔至 %s"
27
+
28
+ msgid "Failed to download generic disk image"
29
+ msgstr "下載泛型磁碟映像檔失敗"
30
+
31
+ msgid "Successfully downloaded host disk image to %s"
32
+ msgstr "已成功下載主機磁碟映像檔至 %s"
33
+
34
+ msgid "Failed to download host disk image"
35
+ msgstr "下載主機磁碟映像檔失敗"
36
+
37
+ msgid "Successfully downloaded subnet disk image to %s"
38
+ msgstr "已成功下載子網路磁碟映像檔至 %s"
39
+
40
+ msgid "Failed to download subnet disk image"
41
+ msgstr "下載子網路磁碟映像檔失敗"
42
+
43
+ msgid "File or device to write image to"
44
+ msgstr "用來寫入映像檔的檔案或裝置"
45
+
46
+ msgid "Force writing to existing destination (device etc.)"
47
+ msgstr "強制寫入既有的目的地(裝置等等)"
48
+
49
+ msgid "Use sudo to write to device"
50
+ msgstr "使用 sudo 來寫入裝置"
51
+
52
+ msgid ""
53
+ "Destination %s already exists and isn't a regular file, use '--force' if you "
54
+ "are sure you wish to write to it"
55
+ msgstr ""
56
+ "目的地 %s 早已存在,並且不是個正規檔案,若您確定您要寫入它的話,請使用 '--"
57
+ "force'。"
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_foreman_bootdisk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominic Cleal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-01 00:00:00.000000000 Z
11
+ date: 2024-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hammer_cli_foreman
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.1.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.1.2
27
27
  description: Foreman boot disk commands for Hammer CLI
@@ -32,22 +32,50 @@ extra_rdoc_files:
32
32
  - LICENSE
33
33
  - README.md
34
34
  files:
35
+ - LICENSE
36
+ - README.md
35
37
  - config/foreman_bootdisk.yml
36
- - lib/hammer_cli_foreman_bootdisk/version.rb
37
- - lib/hammer_cli_foreman_bootdisk/i18n.rb
38
- - lib/hammer_cli_foreman_bootdisk/commands.rb
39
- - lib/hammer_cli_foreman_bootdisk/bootdisk.rb
40
38
  - lib/hammer_cli_foreman_bootdisk.rb
41
- - locale/README.md
39
+ - lib/hammer_cli_foreman_bootdisk/bootdisk.rb
40
+ - lib/hammer_cli_foreman_bootdisk/commands.rb
41
+ - lib/hammer_cli_foreman_bootdisk/i18n.rb
42
+ - lib/hammer_cli_foreman_bootdisk/version.rb
42
43
  - locale/Makefile
43
- - locale/en/hammer_cli_foreman_bootdisk.po
44
+ - locale/README.md
45
+ - locale/ca/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
46
+ - locale/ca/hammer_cli_foreman_bootdisk.po
47
+ - locale/de/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
48
+ - locale/de/hammer_cli_foreman_bootdisk.po
44
49
  - locale/en/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
50
+ - locale/en/hammer_cli_foreman_bootdisk.po
51
+ - locale/en_GB/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
52
+ - locale/en_GB/hammer_cli_foreman_bootdisk.po
53
+ - locale/es/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
54
+ - locale/es/hammer_cli_foreman_bootdisk.po
55
+ - locale/fr/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
56
+ - locale/fr/hammer_cli_foreman_bootdisk.po
45
57
  - locale/hammer_cli_foreman_bootdisk.pot
46
- - LICENSE
47
- - README.md
48
- homepage: http://github.com/theforeman/hammer_cli_foreman_bootdisk
58
+ - locale/it/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
59
+ - locale/it/hammer_cli_foreman_bootdisk.po
60
+ - locale/ja/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
61
+ - locale/ja/hammer_cli_foreman_bootdisk.po
62
+ - locale/ka/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
63
+ - locale/ka/hammer_cli_foreman_bootdisk.po
64
+ - locale/ko/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
65
+ - locale/ko/hammer_cli_foreman_bootdisk.po
66
+ - locale/nl_NL/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
67
+ - locale/nl_NL/hammer_cli_foreman_bootdisk.po
68
+ - locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
69
+ - locale/pt_BR/hammer_cli_foreman_bootdisk.po
70
+ - locale/ru/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
71
+ - locale/ru/hammer_cli_foreman_bootdisk.po
72
+ - locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
73
+ - locale/zh_CN/hammer_cli_foreman_bootdisk.po
74
+ - locale/zh_TW/LC_MESSAGES/hammer_cli_foreman_bootdisk.mo
75
+ - locale/zh_TW/hammer_cli_foreman_bootdisk.po
76
+ homepage: https://github.com/theforeman/hammer_cli_foreman_bootdisk
49
77
  licenses:
50
- - GPL v3+
78
+ - GPL-3.0+
51
79
  metadata: {}
52
80
  post_install_message:
53
81
  rdoc_options: []
@@ -55,17 +83,16 @@ require_paths:
55
83
  - lib
56
84
  required_ruby_version: !ruby/object:Gem::Requirement
57
85
  requirements:
58
- - - '>='
86
+ - - ">="
59
87
  - !ruby/object:Gem::Version
60
88
  version: '0'
61
89
  required_rubygems_version: !ruby/object:Gem::Requirement
62
90
  requirements:
63
- - - '>='
91
+ - - ">="
64
92
  - !ruby/object:Gem::Version
65
93
  version: '0'
66
94
  requirements: []
67
- rubyforge_project:
68
- rubygems_version: 2.0.6
95
+ rubygems_version: 3.2.33
69
96
  signing_key:
70
97
  specification_version: 4
71
98
  summary: Foreman boot disk commands for Hammer