hammer_cli_foreman_templates 0.2.0 → 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 (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_foreman_templates/exception_handler.rb +1 -1
  3. data/lib/hammer_cli_foreman_templates/export.rb +1 -1
  4. data/lib/hammer_cli_foreman_templates/i18n.rb +1 -4
  5. data/lib/hammer_cli_foreman_templates/version.rb +1 -2
  6. data/locale/de/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  7. data/locale/de/hammer_cli_foreman_templates.po +84 -0
  8. data/locale/en/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  9. data/locale/en/hammer_cli_foreman_templates.po +72 -0
  10. data/locale/en_GB/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  11. data/locale/en_GB/hammer_cli_foreman_templates.po +78 -0
  12. data/locale/es/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  13. data/locale/es/hammer_cli_foreman_templates.po +77 -0
  14. data/locale/fr/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  15. data/locale/fr/hammer_cli_foreman_templates.po +80 -0
  16. data/locale/hammer_cli_foreman_templates.pot +94 -0
  17. data/locale/ja/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  18. data/locale/ja/hammer_cli_foreman_templates.po +81 -0
  19. data/locale/ka/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  20. data/locale/ka/hammer_cli_foreman_templates.po +76 -0
  21. data/locale/ko/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  22. data/locale/ko/hammer_cli_foreman_templates.po +78 -0
  23. data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  24. data/locale/pt_BR/hammer_cli_foreman_templates.po +80 -0
  25. data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_templates.mo +0 -0
  26. data/locale/zh_CN/hammer_cli_foreman_templates.po +79 -0
  27. data/test/test_helper.rb +1 -1
  28. metadata +42 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c942b3b1e39098509aa6505178a1d003806dcd7b7f97181e788bde8301651fd4
4
- data.tar.gz: 0a7a69d47088739aba4eb91e11d460a3415699df612785c496300e635fd99241
3
+ metadata.gz: 78ea1263f5de80f76c7e519755ebf965f4a1e62400edff20120b0e4a6eaf85e8
4
+ data.tar.gz: 902f1f5118f2f4c8c735134b67d68bfa88c65d40619447c4960179abc78b7b16
5
5
  SHA512:
6
- metadata.gz: 7cc9e4c357c77ee4981077d39d172d6eb36b3517f7997d48c3f370dea9eca5d865090ff5ddcb1bb70f86e7d0a8f7eeeefca4009583317dfdef38f6a0695e1f66
7
- data.tar.gz: 9d105b8ee6354f7caac753d370b281a65cd3f86039088280967f986080a3edc7b5b998fb3b2fd0f3aea26ccbab0d2cb827ab84b366250c065c5b6f49bc06c513
6
+ metadata.gz: 85b2765efd9a1f69cfe5f01d2c8ee0fee9e9436799b7c771922a28245dbf54fd3c4a1a9ed5ba9560b8edbb9a9187e37e0d665f379574a80ac8c9019943d66584
7
+ data.tar.gz: 0a176b69ebdfb5998e9c89258847a11f4ef59a80810c95a8d65e44da01ac9a89d99bf7f18748f68513d26e5b69a7d0e8f70b6879b609e8dcb2edb015dd4f6046
@@ -2,7 +2,7 @@ module HammerCLIForemanTemplates
2
2
  class ExceptionHandler < HammerCLIForeman::ExceptionHandler
3
3
  def mappings
4
4
  [
5
- [RestClient::InternalServerError, :handle_internal_error]
5
+ [RestClient::InternalServerError, :handle_internal_error],
6
6
  ] + super
7
7
  end
8
8
 
@@ -9,7 +9,7 @@ module HammerCLIForemanTemplates
9
9
  failure_message _('Could not export')
10
10
 
11
11
  option '--verbose', 'BE_VERBOSE', _('Be verbose'),
12
- format: HammerCLI::Options::Normalizers::Bool.new
12
+ format: HammerCLI::Options::Normalizers::Bool.new
13
13
 
14
14
  output do
15
15
  field :id, _('Id'), Fields::Id
@@ -2,9 +2,7 @@ require 'hammer_cli/i18n'
2
2
 
3
3
  module HammerCLIForemanTemplates
4
4
  module I18n
5
-
6
5
  class LocaleDomain < HammerCLI::I18n::LocaleDomain
7
-
8
6
  def translated_files
9
7
  Dir.glob(File.join(File.dirname(__FILE__), '../**/*.rb'))
10
8
  end
@@ -17,8 +15,7 @@ module HammerCLIForemanTemplates
17
15
  'hammer_cli_foreman_templates'
18
16
  end
19
17
  end
20
-
21
18
  end
22
19
  end
23
20
 
24
- HammerCLI::I18n.add_domain(HammerCLIForemanTemplates::I18n::LocaleDomain.new)
21
+ HammerCLI::I18n.add_domain(HammerCLIForemanTemplates::I18n::LocaleDomain.new)
@@ -1,6 +1,5 @@
1
-
2
1
  module HammerCLIForemanTemplates
3
2
  def self.version
4
- @version ||= Gem::Version.new '0.2.0'
3
+ @version ||= Gem::Version.new '0.4.0'
5
4
  end
6
5
  end
@@ -0,0 +1,84 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Ettore Atalan <atalanttore@googlemail.com>, 2020
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
9
+ # mbacovsky <martin.bacovsky@gmail.com>, 2020
10
+ # 47388d0d0847859fcc07f8955b27d2a7_d1cb104 <93875580def0fcc1a566b016c3948752_122921>, 2020
11
+ #
12
+ #, fuzzy
13
+ msgid ""
14
+ msgstr ""
15
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
16
+ "Report-Msgid-Bugs-To: \n"
17
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
18
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
19
+ "Last-Translator: 47388d0d0847859fcc07f8955b27d2a7_d1cb104 "
20
+ "<93875580def0fcc1a566b016c3948752_122921>, 2020\n"
21
+ "Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
22
+ "MIME-Version: 1.0\n"
23
+ "Content-Type: text/plain; charset=UTF-8\n"
24
+ "Content-Transfer-Encoding: 8bit\n"
25
+ "Language: de\n"
26
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
27
+
28
+ msgid "Export templates to a git repo or a directory on the server"
29
+ msgstr ""
30
+ "Exportieren der Templates in ein git Repository oder in ein Verzeichnis auf "
31
+ "dem Server."
32
+
33
+ msgid "Export finished."
34
+ msgstr "Export beendet."
35
+
36
+ msgid "Could not export"
37
+ msgstr "Export kann nicht durchgeführt werden"
38
+
39
+ msgid "Be verbose"
40
+ msgstr "Ausführliche Ausgabe"
41
+
42
+ msgid "Id"
43
+ msgstr "ID"
44
+
45
+ msgid "Name"
46
+ msgstr "Name"
47
+
48
+ msgid "Type"
49
+ msgstr "Typ"
50
+
51
+ msgid "Exported"
52
+ msgstr "Exportiert"
53
+
54
+ msgid "Import templates from a git repo or a directory on the server"
55
+ msgstr ""
56
+ "Importieren von Templates aus einem git Repository oder einem Verzeichnis "
57
+ "auf dem Server."
58
+
59
+ msgid "Import finished."
60
+ msgstr "Import beendet."
61
+
62
+ msgid "Could not import"
63
+ msgstr "Import kann nicht durchgeführt werden."
64
+
65
+ msgid "Imported"
66
+ msgstr "Importiert"
67
+
68
+ msgid "Changed"
69
+ msgstr "Geändert "
70
+
71
+ msgid "Changes"
72
+ msgstr "Änderungen"
73
+
74
+ msgid "Errors"
75
+ msgstr "Fehler"
76
+
77
+ msgid "Validation"
78
+ msgstr "Validierung"
79
+
80
+ msgid "Additional"
81
+ msgstr "Weitere Schritte"
82
+
83
+ msgid "Exception"
84
+ msgstr "Ausnahme"
@@ -0,0 +1,72 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2024-11-11 20:03+0100\n"
11
+ "PO-Revision-Date: 2023-07-12 16:50+0000\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
+
20
+ msgid "Export templates to a git repo or a directory on the server"
21
+ msgstr ""
22
+
23
+ msgid "Export finished."
24
+ msgstr ""
25
+
26
+ msgid "Could not export"
27
+ msgstr ""
28
+
29
+ msgid "Be verbose"
30
+ msgstr ""
31
+
32
+ msgid "Id"
33
+ msgstr ""
34
+
35
+ msgid "Name"
36
+ msgstr ""
37
+
38
+ msgid "Type"
39
+ msgstr ""
40
+
41
+ msgid "Exported"
42
+ msgstr ""
43
+
44
+ msgid "Import templates from a git repo or a directory on the server"
45
+ msgstr ""
46
+
47
+ msgid "Import finished."
48
+ msgstr ""
49
+
50
+ msgid "Could not import"
51
+ msgstr ""
52
+
53
+ msgid "Imported"
54
+ msgstr ""
55
+
56
+ msgid "Changed"
57
+ msgstr ""
58
+
59
+ msgid "Changes"
60
+ msgstr ""
61
+
62
+ msgid "Errors"
63
+ msgstr ""
64
+
65
+ msgid "Validation"
66
+ msgstr ""
67
+
68
+ msgid "Additional"
69
+ msgstr ""
70
+
71
+ msgid "Exception"
72
+ msgstr ""
@@ -0,0 +1,78 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2020
8
+ # Andi Chandler <andi@gowling.com>, 2023
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
14
+ "Report-Msgid-Bugs-To: \n"
15
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
16
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
17
+ "Last-Translator: Andi Chandler <andi@gowling.com>, 2023\n"
18
+ "Language-Team: English (United Kingdom) (https://app.transifex.com/foreman/"
19
+ "teams/114/en_GB/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: en_GB\n"
24
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
25
+
26
+ msgid "Export templates to a git repo or a directory on the server"
27
+ msgstr "Export templates to a git repo or a directory on the server"
28
+
29
+ msgid "Export finished."
30
+ msgstr "Export finished."
31
+
32
+ msgid "Could not export"
33
+ msgstr "Could not export"
34
+
35
+ msgid "Be verbose"
36
+ msgstr "Be verbose"
37
+
38
+ msgid "Id"
39
+ msgstr "Id"
40
+
41
+ msgid "Name"
42
+ msgstr "Name"
43
+
44
+ msgid "Type"
45
+ msgstr "Type"
46
+
47
+ msgid "Exported"
48
+ msgstr "Exported"
49
+
50
+ msgid "Import templates from a git repo or a directory on the server"
51
+ msgstr "Import templates from a git repo or a directory on the server"
52
+
53
+ msgid "Import finished."
54
+ msgstr "Import finished."
55
+
56
+ msgid "Could not import"
57
+ msgstr "Could not import"
58
+
59
+ msgid "Imported"
60
+ msgstr "Imported"
61
+
62
+ msgid "Changed"
63
+ msgstr "Changed"
64
+
65
+ msgid "Changes"
66
+ msgstr "Changes"
67
+
68
+ msgid "Errors"
69
+ msgstr "Errors"
70
+
71
+ msgid "Validation"
72
+ msgstr "Validation"
73
+
74
+ msgid "Additional"
75
+ msgstr "Additional"
76
+
77
+ msgid "Exception"
78
+ msgstr "Exception"
@@ -0,0 +1,77 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
15
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
16
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2023\n"
17
+ "Language-Team: Spanish (https://app.transifex.com/foreman/teams/114/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 "Export templates to a git repo or a directory on the server"
26
+ msgstr "将模板导出到一个 git 仓库或服务器上的一个目录"
27
+
28
+ msgid "Export finished."
29
+ msgstr "导出完成。"
30
+
31
+ msgid "Could not export"
32
+ msgstr "无法导出"
33
+
34
+ msgid "Be verbose"
35
+ msgstr "详细"
36
+
37
+ msgid "Id"
38
+ msgstr "ID"
39
+
40
+ msgid "Name"
41
+ msgstr "名称"
42
+
43
+ msgid "Type"
44
+ msgstr "类型"
45
+
46
+ msgid "Exported"
47
+ msgstr "已导出"
48
+
49
+ msgid "Import templates from a git repo or a directory on the server"
50
+ msgstr "从 git repo 或服务器上的目录导入模板"
51
+
52
+ msgid "Import finished."
53
+ msgstr "导入完成。"
54
+
55
+ msgid "Could not import"
56
+ msgstr "无法导入"
57
+
58
+ msgid "Imported"
59
+ msgstr "导入"
60
+
61
+ msgid "Changed"
62
+ msgstr "已改变"
63
+
64
+ msgid "Changes"
65
+ msgstr "修改"
66
+
67
+ msgid "Errors"
68
+ msgstr "错误"
69
+
70
+ msgid "Validation"
71
+ msgstr "验证"
72
+
73
+ msgid "Additional"
74
+ msgstr "额外"
75
+
76
+ msgid "Exception"
77
+ msgstr "例外"
@@ -0,0 +1,80 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Claer <transiblu@claer.hammock.fr>, 2020
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
9
+ # Amit Upadhye <aupadhye@redhat.com>, 2021
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
17
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
18
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2021\n"
19
+ "Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: fr\n"
24
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
25
+ "1000000 == 0 ? 1 : 2;\n"
26
+
27
+ msgid "Export templates to a git repo or a directory on the server"
28
+ msgstr "Exporter les modèles vers un repo git ou un répertoire sur le serveur"
29
+
30
+ msgid "Export finished."
31
+ msgstr "L'exportation est terminée."
32
+
33
+ msgid "Could not export"
34
+ msgstr "Impossible d'exporter"
35
+
36
+ msgid "Be verbose"
37
+ msgstr "Soyez prolixe"
38
+
39
+ msgid "Id"
40
+ msgstr "Id"
41
+
42
+ msgid "Name"
43
+ msgstr "Nom"
44
+
45
+ msgid "Type"
46
+ msgstr "Type"
47
+
48
+ msgid "Exported"
49
+ msgstr "Exporté"
50
+
51
+ msgid "Import templates from a git repo or a directory on the server"
52
+ msgstr ""
53
+ "Importer des modèles à partir d'un repo git ou d'un répertoire sur le serveur"
54
+
55
+ msgid "Import finished."
56
+ msgstr "Importation terminée."
57
+
58
+ msgid "Could not import"
59
+ msgstr "Impossible d'importer"
60
+
61
+ msgid "Imported"
62
+ msgstr "Importé"
63
+
64
+ msgid "Changed"
65
+ msgstr "Modifié"
66
+
67
+ msgid "Changes"
68
+ msgstr "Modifications"
69
+
70
+ msgid "Errors"
71
+ msgstr "Erreurs"
72
+
73
+ msgid "Validation"
74
+ msgstr "Validation"
75
+
76
+ msgid "Additional"
77
+ msgstr "Informations complémentaires"
78
+
79
+ msgid "Exception"
80
+ msgstr "Exception"
@@ -0,0 +1,94 @@
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_templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2024-11-11 20:03+0100\n"
12
+ "PO-Revision-Date: 2024-11-11 20:03+0100\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: ../lib/hammer_cli_foreman_templates/export.rb:4
22
+ msgid "Export templates to a git repo or a directory on the server"
23
+ msgstr ""
24
+
25
+ #: ../lib/hammer_cli_foreman_templates/export.rb:8
26
+ msgid "Export finished."
27
+ msgstr ""
28
+
29
+ #: ../lib/hammer_cli_foreman_templates/export.rb:9
30
+ msgid "Could not export"
31
+ msgstr ""
32
+
33
+ #: ../lib/hammer_cli_foreman_templates/export.rb:11
34
+ msgid "Be verbose"
35
+ msgstr ""
36
+
37
+ #: ../lib/hammer_cli_foreman_templates/export.rb:15
38
+ #: ../lib/hammer_cli_foreman_templates/import.rb:12
39
+ msgid "Id"
40
+ msgstr ""
41
+
42
+ #: ../lib/hammer_cli_foreman_templates/export.rb:16
43
+ #: ../lib/hammer_cli_foreman_templates/import.rb:13
44
+ msgid "Name"
45
+ msgstr ""
46
+
47
+ #: ../lib/hammer_cli_foreman_templates/export.rb:17
48
+ #: ../lib/hammer_cli_foreman_templates/import.rb:14
49
+ msgid "Type"
50
+ msgstr ""
51
+
52
+ #: ../lib/hammer_cli_foreman_templates/export.rb:18
53
+ msgid "Exported"
54
+ msgstr ""
55
+
56
+ #: ../lib/hammer_cli_foreman_templates/import.rb:4
57
+ msgid "Import templates from a git repo or a directory on the server"
58
+ msgstr ""
59
+
60
+ #: ../lib/hammer_cli_foreman_templates/import.rb:8
61
+ msgid "Import finished."
62
+ msgstr ""
63
+
64
+ #: ../lib/hammer_cli_foreman_templates/import.rb:9
65
+ msgid "Could not import"
66
+ msgstr ""
67
+
68
+ #: ../lib/hammer_cli_foreman_templates/import.rb:15
69
+ msgid "Imported"
70
+ msgstr ""
71
+
72
+ #: ../lib/hammer_cli_foreman_templates/import.rb:16
73
+ msgid "Changed"
74
+ msgstr ""
75
+
76
+ #: ../lib/hammer_cli_foreman_templates/import.rb:17
77
+ msgid "Changes"
78
+ msgstr ""
79
+
80
+ #: ../lib/hammer_cli_foreman_templates/import.rb:20
81
+ msgid "Errors"
82
+ msgstr ""
83
+
84
+ #: ../lib/hammer_cli_foreman_templates/import.rb:21
85
+ msgid "Validation"
86
+ msgstr ""
87
+
88
+ #: ../lib/hammer_cli_foreman_templates/import.rb:24
89
+ msgid "Additional"
90
+ msgstr ""
91
+
92
+ #: ../lib/hammer_cli_foreman_templates/import.rb:25
93
+ msgid "Exception"
94
+ msgstr ""
@@ -0,0 +1,81 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2020
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
9
+ # 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2020
10
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
11
+ #
12
+ #, fuzzy
13
+ msgid ""
14
+ msgstr ""
15
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
16
+ "Report-Msgid-Bugs-To: \n"
17
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
18
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
19
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
20
+ "Language-Team: Japanese (https://app.transifex.com/foreman/teams/114/ja/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: ja\n"
25
+ "Plural-Forms: nplurals=1; plural=0;\n"
26
+
27
+ msgid "Export templates to a git repo or a directory on the server"
28
+ msgstr ""
29
+ "テンプレートを git repo またはサーバー上のディレクトリーにエクスポートします"
30
+
31
+ msgid "Export finished."
32
+ msgstr "エクスポートが終了しました。"
33
+
34
+ msgid "Could not export"
35
+ msgstr "エクスポートできませんでした"
36
+
37
+ msgid "Be verbose"
38
+ msgstr "冗長化"
39
+
40
+ msgid "Id"
41
+ msgstr "ID"
42
+
43
+ msgid "Name"
44
+ msgstr "名前"
45
+
46
+ msgid "Type"
47
+ msgstr "タイプ"
48
+
49
+ msgid "Exported"
50
+ msgstr "エクスポート済み"
51
+
52
+ msgid "Import templates from a git repo or a directory on the server"
53
+ msgstr ""
54
+ "テンプレートを git repo またはサーバー上のディレクトリーからインポートします"
55
+
56
+ msgid "Import finished."
57
+ msgstr "インポートが終了しました。"
58
+
59
+ msgid "Could not import"
60
+ msgstr "インポートできませんでした"
61
+
62
+ msgid "Imported"
63
+ msgstr "インポート済み"
64
+
65
+ msgid "Changed"
66
+ msgstr "変更済み"
67
+
68
+ msgid "Changes"
69
+ msgstr "変更"
70
+
71
+ msgid "Errors"
72
+ msgstr "エラー"
73
+
74
+ msgid "Validation"
75
+ msgstr "検証"
76
+
77
+ msgid "Additional"
78
+ msgstr "追加"
79
+
80
+ msgid "Exception"
81
+ msgstr "例外"
@@ -0,0 +1,76 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
15
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
16
+ "Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022\n"
17
+ "Language-Team: Georgian (https://app.transifex.com/foreman/teams/114/ka/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: ka\n"
22
+ "Plural-Forms: nplurals=2; plural=(n!=1);\n"
23
+
24
+ msgid "Export templates to a git repo or a directory on the server"
25
+ msgstr "შაბლონების საქაღალდეში სერვერზე ან Git-ის რეპოში გატანა"
26
+
27
+ msgid "Export finished."
28
+ msgstr "გატანა დასრულდა."
29
+
30
+ msgid "Could not export"
31
+ msgstr "გატანა შეუძლებელია"
32
+
33
+ msgid "Be verbose"
34
+ msgstr "დამატებითი შეტყობინებები"
35
+
36
+ msgid "Id"
37
+ msgstr "ID"
38
+
39
+ msgid "Name"
40
+ msgstr "სახელი"
41
+
42
+ msgid "Type"
43
+ msgstr "ტიპი"
44
+
45
+ msgid "Exported"
46
+ msgstr "გატანილია"
47
+
48
+ msgid "Import templates from a git repo or a directory on the server"
49
+ msgstr "შაბლონების სერვერის საქაღალდიდან ან Git-ის რეპოდან შემოტანა"
50
+
51
+ msgid "Import finished."
52
+ msgstr "შემოტანა დასრულებულია."
53
+
54
+ msgid "Could not import"
55
+ msgstr "შემოტანის შეცდომა"
56
+
57
+ msgid "Imported"
58
+ msgstr "შემოტანილია"
59
+
60
+ msgid "Changed"
61
+ msgstr "შეცვლილია"
62
+
63
+ msgid "Changes"
64
+ msgstr "ცვლილებები"
65
+
66
+ msgid "Errors"
67
+ msgstr "შედომები"
68
+
69
+ msgid "Validation"
70
+ msgstr "შემოწმება"
71
+
72
+ msgid "Additional"
73
+ msgstr "დამატებით"
74
+
75
+ msgid "Exception"
76
+ msgstr "გამონაკლისი"
@@ -0,0 +1,78 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
8
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
14
+ "Report-Msgid-Bugs-To: \n"
15
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
16
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
17
+ "Last-Translator: Ewoud Kohl van Wijngaarden "
18
+ "<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
19
+ "Language-Team: Korean (https://app.transifex.com/foreman/teams/114/ko/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: ko\n"
24
+ "Plural-Forms: nplurals=1; plural=0;\n"
25
+
26
+ msgid "Export templates to a git repo or a directory on the server"
27
+ msgstr "템플릿을 git repo 또는 서버의 디렉토리로 내보내기"
28
+
29
+ msgid "Export finished."
30
+ msgstr "내보내기가 완료되었습니다."
31
+
32
+ msgid "Could not export"
33
+ msgstr "내보낼 수 없습니다"
34
+
35
+ msgid "Be verbose"
36
+ msgstr "자세한 설명"
37
+
38
+ msgid "Id"
39
+ msgstr "ID"
40
+
41
+ msgid "Name"
42
+ msgstr "이름 "
43
+
44
+ msgid "Type"
45
+ msgstr "유형 "
46
+
47
+ msgid "Exported"
48
+ msgstr "내보내기됨"
49
+
50
+ msgid "Import templates from a git repo or a directory on the server"
51
+ msgstr "git repo 또는 서버의 디렉토리에서 템플릿 가져오기"
52
+
53
+ msgid "Import finished."
54
+ msgstr "가져오기가 완료되었습니다."
55
+
56
+ msgid "Could not import"
57
+ msgstr "가져올 수 없습니다"
58
+
59
+ msgid "Imported"
60
+ msgstr "가져오기됨"
61
+
62
+ msgid "Changed"
63
+ msgstr "변경됨"
64
+
65
+ msgid "Changes"
66
+ msgstr "변경"
67
+
68
+ msgid "Errors"
69
+ msgstr "오류"
70
+
71
+ msgid "Validation"
72
+ msgstr "확인"
73
+
74
+ msgid "Additional"
75
+ msgstr "추가"
76
+
77
+ msgid "Exception"
78
+ msgstr "예외"
@@ -0,0 +1,80 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Flamarion Jorge <jorge.flamarion@gmail.com>, 2020
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
9
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
17
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
18
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
19
+ "Language-Team: Portuguese (Brazil) (https://app.transifex.com/foreman/"
20
+ "teams/114/pt_BR/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: pt_BR\n"
25
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
26
+ "1000000 == 0 ? 1 : 2;\n"
27
+
28
+ msgid "Export templates to a git repo or a directory on the server"
29
+ msgstr "Modelos de exportação para um repo git ou um diretório no servidor"
30
+
31
+ msgid "Export finished."
32
+ msgstr "Exportação concluída."
33
+
34
+ msgid "Could not export"
35
+ msgstr "Não poderia exportar"
36
+
37
+ msgid "Be verbose"
38
+ msgstr "Seja verboso"
39
+
40
+ msgid "Id"
41
+ msgstr "Id"
42
+
43
+ msgid "Name"
44
+ msgstr "Nome"
45
+
46
+ msgid "Type"
47
+ msgstr "Tipo"
48
+
49
+ msgid "Exported"
50
+ msgstr "Exportado"
51
+
52
+ msgid "Import templates from a git repo or a directory on the server"
53
+ msgstr "Importar modelos de um repo ou de um diretório no servidor"
54
+
55
+ msgid "Import finished."
56
+ msgstr "Importação terminada."
57
+
58
+ msgid "Could not import"
59
+ msgstr "Não poderia importar"
60
+
61
+ msgid "Imported"
62
+ msgstr "Importado"
63
+
64
+ msgid "Changed"
65
+ msgstr "Alterado(a)"
66
+
67
+ msgid "Changes"
68
+ msgstr "Alterações"
69
+
70
+ msgid "Errors"
71
+ msgstr "Erros"
72
+
73
+ msgid "Validation"
74
+ msgstr "Validação"
75
+
76
+ msgid "Additional"
77
+ msgstr "Adicional"
78
+
79
+ msgid "Exception"
80
+ msgstr "Exceção"
@@ -0,0 +1,79 @@
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-templates package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Martin Liu <liuzh66@gmail.com>, 2020
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
9
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: hammer_cli_foreman_templates 0.3.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "POT-Creation-Date: 2023-07-12 16:50+0000\n"
17
+ "PO-Revision-Date: 2020-08-11 10:12+0000\n"
18
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
19
+ "Language-Team: Chinese (China) (https://app.transifex.com/foreman/teams/114/"
20
+ "zh_CN/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: zh_CN\n"
25
+ "Plural-Forms: nplurals=1; plural=0;\n"
26
+
27
+ msgid "Export templates to a git repo or a directory on the server"
28
+ msgstr "将模板导出到一个 git 仓库或服务器上的一个目录"
29
+
30
+ msgid "Export finished."
31
+ msgstr "导出完成。"
32
+
33
+ msgid "Could not export"
34
+ msgstr "无法导出"
35
+
36
+ msgid "Be verbose"
37
+ msgstr "详细"
38
+
39
+ msgid "Id"
40
+ msgstr "ID"
41
+
42
+ msgid "Name"
43
+ msgstr "名称"
44
+
45
+ msgid "Type"
46
+ msgstr "类型"
47
+
48
+ msgid "Exported"
49
+ msgstr "已导出"
50
+
51
+ msgid "Import templates from a git repo or a directory on the server"
52
+ msgstr "从 git repo 或服务器上的目录导入模板"
53
+
54
+ msgid "Import finished."
55
+ msgstr "导入完成。"
56
+
57
+ msgid "Could not import"
58
+ msgstr "无法导入"
59
+
60
+ msgid "Imported"
61
+ msgstr "导入"
62
+
63
+ msgid "Changed"
64
+ msgstr "已改变"
65
+
66
+ msgid "Changes"
67
+ msgstr "修改"
68
+
69
+ msgid "Errors"
70
+ msgstr "错误"
71
+
72
+ msgid "Validation"
73
+ msgstr "验证"
74
+
75
+ msgid "Additional"
76
+ msgstr "额外"
77
+
78
+ msgid "Exception"
79
+ msgstr "例外"
data/test/test_helper.rb CHANGED
@@ -23,4 +23,4 @@ else
23
23
  )
24
24
  end
25
25
 
26
- require 'hammer_cli_foreman_templates'
26
+ require 'hammer_cli_foreman_templates'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_foreman_templates
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Foreman team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-28 00:00:00.000000000 Z
11
+ date: 2025-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hammer_cli_foreman
@@ -16,18 +16,24 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 3.0.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 4.0.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: 0.11.0
29
+ version: 3.0.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 4.0.0
27
33
  description: 'CLI plugin with import and export commands for Hammer_CLI_Foreman
28
34
 
29
- '
30
- email:
35
+ '
36
+ email:
31
37
  executables: []
32
38
  extensions: []
33
39
  extra_rdoc_files:
@@ -43,12 +49,33 @@ files:
43
49
  - lib/hammer_cli_foreman_templates/i18n.rb
44
50
  - lib/hammer_cli_foreman_templates/import.rb
45
51
  - lib/hammer_cli_foreman_templates/version.rb
52
+ - locale/de/LC_MESSAGES/hammer_cli_foreman_templates.mo
53
+ - locale/de/hammer_cli_foreman_templates.po
54
+ - locale/en/LC_MESSAGES/hammer_cli_foreman_templates.mo
55
+ - locale/en/hammer_cli_foreman_templates.po
56
+ - locale/en_GB/LC_MESSAGES/hammer_cli_foreman_templates.mo
57
+ - locale/en_GB/hammer_cli_foreman_templates.po
58
+ - locale/es/LC_MESSAGES/hammer_cli_foreman_templates.mo
59
+ - locale/es/hammer_cli_foreman_templates.po
60
+ - locale/fr/LC_MESSAGES/hammer_cli_foreman_templates.mo
61
+ - locale/fr/hammer_cli_foreman_templates.po
62
+ - locale/hammer_cli_foreman_templates.pot
63
+ - locale/ja/LC_MESSAGES/hammer_cli_foreman_templates.mo
64
+ - locale/ja/hammer_cli_foreman_templates.po
65
+ - locale/ka/LC_MESSAGES/hammer_cli_foreman_templates.mo
66
+ - locale/ka/hammer_cli_foreman_templates.po
67
+ - locale/ko/LC_MESSAGES/hammer_cli_foreman_templates.mo
68
+ - locale/ko/hammer_cli_foreman_templates.po
69
+ - locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_templates.mo
70
+ - locale/pt_BR/hammer_cli_foreman_templates.po
71
+ - locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_templates.mo
72
+ - locale/zh_CN/hammer_cli_foreman_templates.po
46
73
  - test/test_helper.rb
47
74
  homepage: https://github.com/theforeman/hammer-cli-foreman-templates
48
75
  licenses:
49
- - GPL-3.0
76
+ - GPL-3.0-only
50
77
  metadata: {}
51
- post_install_message:
78
+ post_install_message:
52
79
  rdoc_options: []
53
80
  require_paths:
54
81
  - lib
@@ -56,16 +83,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
56
83
  requirements:
57
84
  - - ">="
58
85
  - !ruby/object:Gem::Version
59
- version: '0'
86
+ version: '2.7'
87
+ - - "<"
88
+ - !ruby/object:Gem::Version
89
+ version: '4'
60
90
  required_rubygems_version: !ruby/object:Gem::Requirement
61
91
  requirements:
62
92
  - - ">="
63
93
  - !ruby/object:Gem::Version
64
94
  version: '0'
65
95
  requirements: []
66
- rubyforge_project:
67
- rubygems_version: 2.7.10
68
- signing_key:
96
+ rubygems_version: 3.2.33
97
+ signing_key:
69
98
  specification_version: 4
70
99
  summary: Foreman Hammer commands for exporting and importing templates
71
100
  test_files: