hammer_cli_foreman 0.0.18 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of hammer_cli_foreman might be problematic. Click here for more details.

Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_foreman.rb +39 -27
  3. data/lib/hammer_cli_foreman/architecture.rb +14 -14
  4. data/lib/hammer_cli_foreman/associating_commands.rb +46 -40
  5. data/lib/hammer_cli_foreman/auth.rb +49 -0
  6. data/lib/hammer_cli_foreman/commands.rb +82 -29
  7. data/lib/hammer_cli_foreman/common_parameter.rb +13 -17
  8. data/lib/hammer_cli_foreman/compute_resource.rb +23 -23
  9. data/lib/hammer_cli_foreman/credentials.rb +36 -0
  10. data/lib/hammer_cli_foreman/domain.rb +32 -35
  11. data/lib/hammer_cli_foreman/environment.rb +14 -19
  12. data/lib/hammer_cli_foreman/exception_handler.rb +30 -8
  13. data/lib/hammer_cli_foreman/fact.rb +5 -5
  14. data/lib/hammer_cli_foreman/host.rb +178 -105
  15. data/lib/hammer_cli_foreman/hostgroup.rb +59 -37
  16. data/lib/hammer_cli_foreman/i18n.rb +24 -0
  17. data/lib/hammer_cli_foreman/image.rb +24 -24
  18. data/lib/hammer_cli_foreman/location.rb +13 -13
  19. data/lib/hammer_cli_foreman/media.rb +21 -16
  20. data/lib/hammer_cli_foreman/model.rb +16 -16
  21. data/lib/hammer_cli_foreman/operating_system.rb +39 -39
  22. data/lib/hammer_cli_foreman/organization.rb +13 -13
  23. data/lib/hammer_cli_foreman/output/fields.rb +2 -2
  24. data/lib/hammer_cli_foreman/output/formatters.rb +15 -4
  25. data/lib/hammer_cli_foreman/parameter.rb +13 -11
  26. data/lib/hammer_cli_foreman/partition_table.rb +17 -18
  27. data/lib/hammer_cli_foreman/puppet_class.rb +9 -9
  28. data/lib/hammer_cli_foreman/report.rb +38 -38
  29. data/lib/hammer_cli_foreman/resource_supported_test.rb +1 -1
  30. data/lib/hammer_cli_foreman/smart_class_parameter.rb +36 -36
  31. data/lib/hammer_cli_foreman/smart_proxy.rb +22 -21
  32. data/lib/hammer_cli_foreman/subnet.rb +29 -31
  33. data/lib/hammer_cli_foreman/template.rb +45 -43
  34. data/lib/hammer_cli_foreman/user.rb +20 -23
  35. data/lib/hammer_cli_foreman/version.rb +1 -1
  36. data/locale/Makefile +64 -0
  37. data/locale/hammer-cli-foreman.pot +1573 -0
  38. data/locale/zanata.xml +29 -0
  39. data/test/unit/apipie_resource_mock.rb +44 -72
  40. data/test/unit/architecture_test.rb +1 -2
  41. data/test/unit/commands_test.rb +23 -21
  42. data/test/unit/common_parameter_test.rb +15 -10
  43. data/test/unit/compute_resource_test.rb +1 -2
  44. data/test/unit/credentials_test.rb +46 -0
  45. data/test/unit/data/1.4/foreman_api.json +10387 -0
  46. data/test/unit/domain_test.rb +2 -5
  47. data/test/unit/environment_test.rb +2 -3
  48. data/test/unit/exception_handler_test.rb +29 -4
  49. data/test/unit/fact_test.rb +0 -1
  50. data/test/unit/helpers/command.rb +20 -4
  51. data/test/unit/helpers/resource_disabled.rb +2 -2
  52. data/test/unit/host_test.rb +24 -12
  53. data/test/unit/hostgroup_test.rb +7 -8
  54. data/test/unit/image_test.rb +6 -7
  55. data/test/unit/location_test.rb +9 -5
  56. data/test/unit/media_test.rb +1 -9
  57. data/test/unit/model_test.rb +1 -3
  58. data/test/unit/operating_system_test.rb +7 -9
  59. data/test/unit/organization_test.rb +12 -6
  60. data/test/unit/output/formatters_test.rb +5 -0
  61. data/test/unit/partition_table_test.rb +1 -2
  62. data/test/unit/puppet_class_test.rb +2 -3
  63. data/test/unit/report_test.rb +1 -2
  64. data/test/unit/smart_class_parameter_test.rb +9 -4
  65. data/test/unit/smart_proxy_test.rb +1 -2
  66. data/test/unit/subnet_test.rb +2 -3
  67. data/test/unit/template_test.rb +23 -8
  68. data/test/unit/test_helper.rb +13 -0
  69. data/test/unit/test_output_adapter.rb +1 -1
  70. data/test/unit/user_test.rb +1 -2
  71. metadata +17 -7
@@ -1,22 +1,39 @@
1
1
  module HammerCLIForeman
2
2
 
3
- class Template < HammerCLI::Apipie::Command
3
+ class Template < HammerCLIForeman::Command
4
4
 
5
- resource ForemanApi::Resources::ConfigTemplate
5
+ resource :config_templates
6
+
7
+ module TemplateCreateUpdateCommons
8
+
9
+ def option_snippet
10
+ option_type == "snippet"
11
+ end
12
+
13
+ def option_template_kind_id
14
+ kinds = HammerCLIForeman.collection_to_common_format(
15
+ HammerCLIForeman.foreman_resource(:template_kinds).call(:index))
16
+ table = kinds.inject({}){ |result, k| result.update(k["name"] => k["id"]) }
17
+ table[option_type]
18
+ end
19
+
20
+ end
6
21
 
7
22
  class ListCommand < HammerCLIForeman::ListCommand
8
23
 
9
24
  output do
10
- field :id, "Id"
11
- field :name, "Name"
12
- field :type, "Type"
25
+ field :id, _("Id")
26
+ field :name, _("Name")
27
+ field :type, _("Type")
13
28
  end
14
29
 
15
30
  def extend_data(tpl)
16
31
  if tpl["snippet"]
17
32
  tpl["type"] = "snippet"
33
+ elsif tpl["template_kind"]
34
+ tpl["type"] = tpl["template_kind"]["name"]
18
35
  else
19
- tpl["type"] = tpl["template_kind"]["name"] if tpl["template_kind"]
36
+ tpl["type"] = tpl["template_kind_name"]
20
37
  end
21
38
  tpl
22
39
  end
@@ -32,15 +49,18 @@ module HammerCLIForeman
32
49
  identifiers :id
33
50
 
34
51
  output ListCommand.output_definition do
35
- field :operatingsystem_ids, "OS ids", Fields::List
52
+ field :operatingsystem_ids, _("OS ids"), Fields::List
36
53
  end
37
54
 
38
55
  def extend_data(tpl)
39
56
  if tpl["snippet"]
40
57
  tpl["type"] = "snippet"
58
+ elsif tpl["template_kind"]
59
+ tpl["type"] = tpl["template_kind"]["name"]
41
60
  else
42
- tpl["type"] = tpl["template_kind"]["name"] if tpl["template_kind"]
61
+ tpl["type"] = tpl["template_kind_name"]
43
62
  end
63
+ tpl['operatingsystem_ids'] = tpl['operatingsystems'].map { |os| os['id'] } rescue []
44
64
  tpl
45
65
  end
46
66
 
@@ -51,10 +71,10 @@ module HammerCLIForeman
51
71
  class ListKindsCommand < HammerCLIForeman::ListCommand
52
72
 
53
73
  command_name "kinds"
54
- desc "List available config template kinds."
74
+ desc _("List available config template kinds.")
55
75
 
56
76
  output do
57
- field :name, "Name"
77
+ field :name, _("Name")
58
78
  end
59
79
 
60
80
  def retrieve_data
@@ -63,14 +83,14 @@ module HammerCLIForeman
63
83
  kinds
64
84
  end
65
85
 
66
- resource ForemanApi::Resources::TemplateKind, "index"
86
+ resource :template_kinds, :index
67
87
  end
68
88
 
69
89
 
70
90
  class DumpCommand < HammerCLIForeman::InfoCommand
71
91
 
72
92
  command_name "dump"
73
- desc "View config template content."
93
+ desc _("View config template content.")
74
94
 
75
95
  identifiers :id
76
96
 
@@ -84,23 +104,14 @@ module HammerCLIForeman
84
104
 
85
105
  class CreateCommand < HammerCLIForeman::CreateCommand
86
106
 
87
- option "--file", "TEMPLATE", "Path to a file that contains the template", :attribute_name => :template, :required => true,
107
+ option "--file", "TEMPLATE", _("Path to a file that contains the template"), :attribute_name => :option_template, :required => true,
88
108
  :format => HammerCLI::Options::Normalizers::File.new
89
- option "--type", "TYPE", "Template type. Eg. snippet, script, provision", :required => true
109
+ option "--type", "TYPE", _("Template type. Eg. snippet, script, provision"), :required => true
90
110
 
91
- success_message "Config template created"
92
- failure_message "Could not create the config template"
111
+ success_message _("Config template created")
112
+ failure_message _("Could not create the config template")
93
113
 
94
- def snippet
95
- type == "snippet"
96
- end
97
-
98
- def template_kind_id
99
- kinds = HammerCLIForeman.collection_to_common_format(
100
- ForemanApi::Resources::TemplateKind.new(resource_config).index()[0])
101
- table = kinds.inject({}){ |result, k| result.update(k["name"] => k["id"]) }
102
- table[type]
103
- end
114
+ include TemplateCreateUpdateCommons
104
115
 
105
116
  apipie_options :without => [:template_combinations_attributes, :template, :snippet, :template_kind_id]
106
117
  end
@@ -108,25 +119,16 @@ module HammerCLIForeman
108
119
 
109
120
  class UpdateCommand < HammerCLIForeman::UpdateCommand
110
121
 
111
- option "--file", "TEMPLATE", "Path to a file that contains the template", :attribute_name => :template,
122
+ option "--file", "TEMPLATE", _("Path to a file that contains the template"), :attribute_name => :option_template,
112
123
  :format => HammerCLI::Options::Normalizers::File.new
113
- option "--type", "TYPE", "Template type. Eg. snippet, script, provision"
124
+ option "--type", "TYPE", _("Template type. Eg. snippet, script, provision")
114
125
 
115
126
  identifiers :id
116
127
 
117
- success_message "Config template updated"
118
- failure_message "Could not update the config template"
128
+ success_message _("Config template updated")
129
+ failure_message _("Could not update the config template")
119
130
 
120
- def snippet
121
- type == "snippet"
122
- end
123
-
124
- def template_kind_id
125
- kinds = HammerCLIForeman.collection_to_common_format(
126
- ForemanApi::Resources::TemplateKind.new(resource_config).index()[0])
127
- table = kinds.inject({}){ |result, k| result.update(k["name"] => k["id"]) }
128
- table[type]
129
- end
131
+ include TemplateCreateUpdateCommons
130
132
 
131
133
  apipie_options :without => [:template_combinations_attributes, :template, :snippet, :template_kind_id]
132
134
  end
@@ -136,8 +138,8 @@ module HammerCLIForeman
136
138
 
137
139
  identifiers :id
138
140
 
139
- success_message "Config template deleted"
140
- failure_message "Could not delete the config template"
141
+ success_message _("Config template deleted")
142
+ failure_message _("Could not delete the config template")
141
143
 
142
144
  apipie_options
143
145
  end
@@ -152,5 +154,5 @@ module HammerCLIForeman
152
154
 
153
155
  end
154
156
 
155
- HammerCLI::MainCommand.subcommand 'template', "Manipulate config templates.", HammerCLIForeman::Template
157
+ HammerCLI::MainCommand.subcommand 'template', _("Manipulate config templates."), HammerCLIForeman::Template
156
158
 
@@ -1,15 +1,16 @@
1
1
  module HammerCLIForeman
2
2
 
3
- class User < HammerCLI::Apipie::Command
4
- resource ForemanApi::Resources::User
3
+ class User < HammerCLIForeman::Command
4
+
5
+ resource :users
5
6
 
6
7
  class ListCommand < HammerCLIForeman::ListCommand
7
8
 
8
9
  output do
9
- field :id, "Id"
10
- field :login, "Login"
11
- field :full_name, "Name"
12
- field :mail, "Email"
10
+ field :id, _("Id")
11
+ field :login, _("Login")
12
+ field :full_name, _("Name")
13
+ field :mail, _("Email")
13
14
  end
14
15
 
15
16
  def extend_data(user)
@@ -25,14 +26,14 @@ module HammerCLIForeman
25
26
 
26
27
  identifiers :id, :login
27
28
 
28
- option '--login', 'LOGIN', "User login" do |value|
29
+ option '--login', 'LOGIN', _("User login") do |value|
29
30
  name_to_id(value, "login", resource)
30
31
  end
31
32
 
32
33
  output ListCommand.output_definition do
33
- field :last_login_on, "Last login", Fields::Date
34
- field :created_at, "Created at", Fields::Date
35
- field :updated_at, "Updated at", Fields::Date
34
+ field :last_login_on, _("Last login"), Fields::Date
35
+ field :created_at, _("Created at"), Fields::Date
36
+ field :updated_at, _("Updated at"), Fields::Date
36
37
  end
37
38
 
38
39
  def extend_data(user)
@@ -46,9 +47,8 @@ module HammerCLIForeman
46
47
 
47
48
  class CreateCommand < HammerCLIForeman::CreateCommand
48
49
 
49
- success_message "User created"
50
- failure_message "Could not create the user"
51
- resource ForemanApi::Resources::User, "create"
50
+ success_message _("User created")
51
+ failure_message _("Could not create the user")
52
52
 
53
53
  apipie_options
54
54
  end
@@ -58,13 +58,12 @@ module HammerCLIForeman
58
58
 
59
59
  identifiers :id, :login
60
60
 
61
- option '--login', 'LOGIN', "User login" do |value|
61
+ option '--login', 'LOGIN', _("User login") do |value|
62
62
  name_to_id(value, "login", resource)
63
63
  end
64
64
 
65
- success_message "User updated"
66
- failure_message "Could not update the user"
67
- resource ForemanApi::Resources::User, "update"
65
+ success_message _("User updated")
66
+ failure_message _("Could not update the user")
68
67
 
69
68
  apipie_options
70
69
  end
@@ -74,13 +73,12 @@ module HammerCLIForeman
74
73
 
75
74
  identifiers :id, :login
76
75
 
77
- option '--login', 'LOGIN', "User login" do |value|
76
+ option '--login', 'LOGIN', _("User login") do |value|
78
77
  name_to_id(value, "login", resource)
79
78
  end
80
79
 
81
- success_message "User deleted"
82
- failure_message "Could not delete the user"
83
- resource ForemanApi::Resources::User, "destroy"
80
+ success_message _("User deleted")
81
+ failure_message _("Could not delete the user")
84
82
 
85
83
  apipie_options
86
84
  end
@@ -90,5 +88,4 @@ module HammerCLIForeman
90
88
 
91
89
  end
92
90
 
93
- HammerCLI::MainCommand.subcommand 'user', "Manipulate users.", HammerCLIForeman::User
94
-
91
+ HammerCLI::MainCommand.subcommand 'user', _("Manipulate users."), HammerCLIForeman::User
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.0.18'
3
+ @version ||= Gem::Version.new '0.1.0'
4
4
  end
5
5
  end
@@ -0,0 +1,64 @@
1
+ #
2
+ # Makefile for PO merging and MO generation.
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
8
+ #
9
+ DOMAIN = hammer-cli-foreman
10
+ POTFILE = $(DOMAIN).pot
11
+ MOFILE = $(DOMAIN).mo
12
+ POFILES = $(shell find . -name '*.po')
13
+ MOFILES = $(patsubst %.po,%.mo,$(POFILES))
14
+ POXFILES = $(patsubst %.po,%.pox,$(POFILES))
15
+
16
+ %.mo: %.po
17
+ mkdir -p $(shell dirname $@)/LC_MESSAGES
18
+ msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
19
+
20
+ # Generate MO files from PO files
21
+ all-mo: $(MOFILES)
22
+
23
+ # Check for malformed strings
24
+ %.pox: %.po
25
+ msgfmt -c $<
26
+ pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
27
+ -t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
28
+ cat $@
29
+ ! grep -q msgid $@
30
+
31
+ check: $(POXFILES)
32
+ msgfmt -c ${POTFILE}
33
+
34
+ # Merge PO files
35
+ update-po:
36
+ for f in $(shell find ./ -name "*.po") ; do \
37
+ msgmerge -N --backup=none -U $$f ${POTFILE} ; \
38
+ done
39
+
40
+ # Unify duplicate translations
41
+ uniq-po:
42
+ for f in $(shell find ./ -name "*.po") ; do \
43
+ msguniq $$f -o $$f ; \
44
+ done
45
+
46
+ tx-pull:
47
+ tx pull -f
48
+ -git commit -a -m "i18n - extracting new, pulling from tx"
49
+
50
+ extract-strings:
51
+ bundle exec rake locale:find DOMAIN=$(DOMAIN) SKIP_MODEL=1
52
+
53
+ tx-update: tx-pull extract-strings
54
+ # merging po files is unnecessary when using transifex.com (amend that)
55
+ git checkout -- ../locale/*/*po
56
+ git commit -a --amend -m "i18n - extracting new, pulling from tx"
57
+ -echo Changes commited!
58
+
59
+ # Remove all MO files
60
+ clean:
61
+ -rm -f messages.mo
62
+ find . \( -name "*.mo" -o -name "*.pox" \) -exec rm -f '{}' ';'
63
+ find . -path *LC_MESSAGES | xargs rm -rf
64
+
@@ -0,0 +1,1573 @@
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 package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer-cli-foreman 0.0.18\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-03-10 15:19+0000\n"
12
+ "PO-Revision-Date: 2014-03-04 16:47+0000\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: \n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: lib/hammer_cli_foreman/environment.rb:14
22
+ #: lib/hammer_cli_foreman/hostgroup.rb:20
23
+ #: lib/hammer_cli_foreman/location.rb:13
24
+ #: lib/hammer_cli_foreman/smart_proxy.rb:12 lib/hammer_cli_foreman/media.rb:9
25
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:8
26
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:60
27
+ #: lib/hammer_cli_foreman/organization.rb:13
28
+ #: lib/hammer_cli_foreman/operating_system.rb:10
29
+ #: lib/hammer_cli_foreman/report.rb:10 lib/hammer_cli_foreman/report.rb:32
30
+ #: lib/hammer_cli_foreman/domain.rb:8 lib/hammer_cli_foreman/template.rb:34
31
+ #: lib/hammer_cli_foreman/puppet_class.rb:12
32
+ #: lib/hammer_cli_foreman/architecture.rb:10
33
+ #: lib/hammer_cli_foreman/model.rb:10
34
+ #: lib/hammer_cli_foreman/partition_table.rb:10
35
+ #: lib/hammer_cli_foreman/host.rb:106 lib/hammer_cli_foreman/user.rb:9
36
+ #: lib/hammer_cli_foreman/subnet.rb:8 lib/hammer_cli_foreman/image.rb:32
37
+ #: lib/hammer_cli_foreman/compute_resource.rb:11
38
+ msgid "Id"
39
+ msgstr ""
40
+
41
+ #: lib/hammer_cli_foreman/environment.rb:15
42
+ #: lib/hammer_cli_foreman/hostgroup.rb:21
43
+ #: lib/hammer_cli_foreman/location.rb:14
44
+ #: lib/hammer_cli_foreman/smart_proxy.rb:13 lib/hammer_cli_foreman/media.rb:10
45
+ #: lib/hammer_cli_foreman/organization.rb:14
46
+ #: lib/hammer_cli_foreman/operating_system.rb:11
47
+ #: lib/hammer_cli_foreman/domain.rb:9 lib/hammer_cli_foreman/template.rb:35
48
+ #: lib/hammer_cli_foreman/template.rb:86
49
+ #: lib/hammer_cli_foreman/puppet_class.rb:13
50
+ #: lib/hammer_cli_foreman/architecture.rb:11
51
+ #: lib/hammer_cli_foreman/model.rb:11
52
+ #: lib/hammer_cli_foreman/partition_table.rb:11
53
+ #: lib/hammer_cli_foreman/host.rb:107 lib/hammer_cli_foreman/user.rb:11
54
+ #: lib/hammer_cli_foreman/subnet.rb:9 lib/hammer_cli_foreman/image.rb:33
55
+ #: lib/hammer_cli_foreman/image.rb:79
56
+ #: lib/hammer_cli_foreman/common_parameter.rb:13
57
+ #: lib/hammer_cli_foreman/compute_resource.rb:12
58
+ msgid "Name"
59
+ msgstr ""
60
+
61
+ #: lib/hammer_cli_foreman/environment.rb:26
62
+ #: lib/hammer_cli_foreman/location.rb:25
63
+ #: lib/hammer_cli_foreman/smart_proxy.rb:27 lib/hammer_cli_foreman/media.rb:22
64
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:66
65
+ #: lib/hammer_cli_foreman/organization.rb:25
66
+ #: lib/hammer_cli_foreman/domain.rb:23
67
+ #: lib/hammer_cli_foreman/architecture.rb:22
68
+ #: lib/hammer_cli_foreman/model.rb:24
69
+ #: lib/hammer_cli_foreman/partition_table.rb:22
70
+ #: lib/hammer_cli_foreman/host.rb:147 lib/hammer_cli_foreman/user.rb:34
71
+ #: lib/hammer_cli_foreman/image.rb:57
72
+ #: lib/hammer_cli_foreman/compute_resource.rb:47
73
+ msgid "Created at"
74
+ msgstr ""
75
+
76
+ #: lib/hammer_cli_foreman/environment.rb:27
77
+ #: lib/hammer_cli_foreman/location.rb:26
78
+ #: lib/hammer_cli_foreman/smart_proxy.rb:28 lib/hammer_cli_foreman/media.rb:23
79
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
80
+ #: lib/hammer_cli_foreman/organization.rb:26
81
+ #: lib/hammer_cli_foreman/domain.rb:24
82
+ #: lib/hammer_cli_foreman/architecture.rb:23
83
+ #: lib/hammer_cli_foreman/model.rb:25
84
+ #: lib/hammer_cli_foreman/partition_table.rb:23
85
+ #: lib/hammer_cli_foreman/host.rb:148 lib/hammer_cli_foreman/user.rb:35
86
+ #: lib/hammer_cli_foreman/image.rb:58
87
+ #: lib/hammer_cli_foreman/compute_resource.rb:48
88
+ msgid "Updated at"
89
+ msgstr ""
90
+
91
+ #: lib/hammer_cli_foreman/environment.rb:36
92
+ msgid "Environment created"
93
+ msgstr ""
94
+
95
+ #: lib/hammer_cli_foreman/environment.rb:37
96
+ msgid "Could not create the environment"
97
+ msgstr ""
98
+
99
+ #: lib/hammer_cli_foreman/environment.rb:46
100
+ msgid "Environment updated"
101
+ msgstr ""
102
+
103
+ #: lib/hammer_cli_foreman/environment.rb:47
104
+ msgid "Could not update the environment"
105
+ msgstr ""
106
+
107
+ #: lib/hammer_cli_foreman/environment.rb:56
108
+ msgid "Environment deleted"
109
+ msgstr ""
110
+
111
+ #: lib/hammer_cli_foreman/environment.rb:57
112
+ msgid "Could not delete the environment"
113
+ msgstr ""
114
+
115
+ #: lib/hammer_cli_foreman/environment.rb:66
116
+ msgid "environment id/name"
117
+ msgstr ""
118
+
119
+ #: lib/hammer_cli_foreman/hostgroup.rb:22
120
+ msgid "Label"
121
+ msgstr ""
122
+
123
+ #: lib/hammer_cli_foreman/hostgroup.rb:23 lib/hammer_cli_foreman/host.rb:108
124
+ #: lib/hammer_cli_foreman/image.rb:34
125
+ msgid "Operating System Id"
126
+ msgstr ""
127
+
128
+ #: lib/hammer_cli_foreman/hostgroup.rb:24 lib/hammer_cli_foreman/host.rb:156
129
+ msgid "Subnet Id"
130
+ msgstr ""
131
+
132
+ #: lib/hammer_cli_foreman/hostgroup.rb:25 lib/hammer_cli_foreman/host.rb:157
133
+ msgid "Domain Id"
134
+ msgstr ""
135
+
136
+ #: lib/hammer_cli_foreman/hostgroup.rb:26 lib/hammer_cli_foreman/host.rb:161
137
+ #: lib/hammer_cli_foreman/image.rb:55
138
+ msgid "Architecture Id"
139
+ msgstr ""
140
+
141
+ #: lib/hammer_cli_foreman/hostgroup.rb:27 lib/hammer_cli_foreman/host.rb:160
142
+ msgid "Partition Table Id"
143
+ msgstr ""
144
+
145
+ #: lib/hammer_cli_foreman/hostgroup.rb:28 lib/hammer_cli_foreman/host.rb:153
146
+ msgid "Medium Id"
147
+ msgstr ""
148
+
149
+ #: lib/hammer_cli_foreman/hostgroup.rb:29 lib/hammer_cli_foreman/host.rb:152
150
+ msgid "Puppet CA Proxy Id"
151
+ msgstr ""
152
+
153
+ #: lib/hammer_cli_foreman/hostgroup.rb:30
154
+ msgid "Puppet Master Proxy Id"
155
+ msgstr ""
156
+
157
+ #: lib/hammer_cli_foreman/hostgroup.rb:31 lib/hammer_cli_foreman/host.rb:131
158
+ msgid "Environment Id"
159
+ msgstr ""
160
+
161
+ #: lib/hammer_cli_foreman/hostgroup.rb:32
162
+ msgid "Puppetclass Ids"
163
+ msgstr ""
164
+
165
+ #: lib/hammer_cli_foreman/hostgroup.rb:33
166
+ msgid "Ancestry"
167
+ msgstr ""
168
+
169
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
170
+ #: lib/hammer_cli_foreman/operating_system.rb:34
171
+ #: lib/hammer_cli_foreman/domain.rb:25 lib/hammer_cli_foreman/host.rb:167
172
+ msgid "Parameters"
173
+ msgstr ""
174
+
175
+ #: lib/hammer_cli_foreman/hostgroup.rb:67
176
+ msgid "Hostgroup created"
177
+ msgstr ""
178
+
179
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
180
+ msgid "Could not create the hostgroup"
181
+ msgstr ""
182
+
183
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
184
+ msgid "Hostgroup updated"
185
+ msgstr ""
186
+
187
+ #: lib/hammer_cli_foreman/hostgroup.rb:85
188
+ msgid "Could not update the hostgroup"
189
+ msgstr ""
190
+
191
+ #: lib/hammer_cli_foreman/hostgroup.rb:96
192
+ msgid "Hostgroup deleted"
193
+ msgstr ""
194
+
195
+ #: lib/hammer_cli_foreman/hostgroup.rb:97
196
+ msgid "Could not delete the hostgroup"
197
+ msgstr ""
198
+
199
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
200
+ msgid "Create or update parameter for a hostgroup."
201
+ msgstr ""
202
+
203
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
204
+ msgid "id of the hostgroup the parameter is being set for"
205
+ msgstr ""
206
+
207
+ #: lib/hammer_cli_foreman/hostgroup.rb:135
208
+ msgid "Hostgroup parameter updated"
209
+ msgstr ""
210
+
211
+ #: lib/hammer_cli_foreman/hostgroup.rb:136
212
+ msgid "New hostgroup parameter created"
213
+ msgstr ""
214
+
215
+ #: lib/hammer_cli_foreman/hostgroup.rb:137
216
+ msgid "Could not set hostgroup parameter"
217
+ msgstr ""
218
+
219
+ #: lib/hammer_cli_foreman/hostgroup.rb:151
220
+ msgid "Delete parameter for a hostgroup."
221
+ msgstr ""
222
+
223
+ #: lib/hammer_cli_foreman/hostgroup.rb:153
224
+ msgid "id of the hostgroup the parameter is being deleted for"
225
+ msgstr ""
226
+
227
+ #: lib/hammer_cli_foreman/hostgroup.rb:155
228
+ msgid "Hostgroup parameter deleted"
229
+ msgstr ""
230
+
231
+ #: lib/hammer_cli_foreman/hostgroup.rb:168
232
+ msgid "hostgroup id/name"
233
+ msgstr ""
234
+
235
+ #: lib/hammer_cli_foreman/hostgroup.rb:178
236
+ msgid "Manipulate hostgroups."
237
+ msgstr ""
238
+
239
+ #: lib/hammer_cli_foreman/location.rb:36
240
+ msgid "Location created"
241
+ msgstr ""
242
+
243
+ #: lib/hammer_cli_foreman/location.rb:37
244
+ msgid "Could not create the location"
245
+ msgstr ""
246
+
247
+ #: lib/hammer_cli_foreman/location.rb:46
248
+ msgid "Location updated"
249
+ msgstr ""
250
+
251
+ #: lib/hammer_cli_foreman/location.rb:47
252
+ msgid "Could not update the location"
253
+ msgstr ""
254
+
255
+ #: lib/hammer_cli_foreman/location.rb:56
256
+ msgid "Location deleted"
257
+ msgstr ""
258
+
259
+ #: lib/hammer_cli_foreman/location.rb:57
260
+ msgid "Could not delete the location"
261
+ msgstr ""
262
+
263
+ #: lib/hammer_cli_foreman/location.rb:78
264
+ msgid "Manipulate locations."
265
+ msgstr ""
266
+
267
+ #: lib/hammer_cli_foreman/smart_proxy.rb:14
268
+ msgid "URL"
269
+ msgstr ""
270
+
271
+ #: lib/hammer_cli_foreman/smart_proxy.rb:26
272
+ msgid "Features"
273
+ msgstr ""
274
+
275
+ #: lib/hammer_cli_foreman/smart_proxy.rb:44
276
+ msgid "Smart proxy created"
277
+ msgstr ""
278
+
279
+ #: lib/hammer_cli_foreman/smart_proxy.rb:45
280
+ msgid "Could not create the proxy"
281
+ msgstr ""
282
+
283
+ #: lib/hammer_cli_foreman/smart_proxy.rb:55
284
+ msgid "Smart proxy updated"
285
+ msgstr ""
286
+
287
+ #: lib/hammer_cli_foreman/smart_proxy.rb:56
288
+ msgid "Could not update the proxy"
289
+ msgstr ""
290
+
291
+ #: lib/hammer_cli_foreman/smart_proxy.rb:66
292
+ msgid "Smart proxy deleted"
293
+ msgstr ""
294
+
295
+ #: lib/hammer_cli_foreman/smart_proxy.rb:67
296
+ msgid "Could not delete the proxy"
297
+ msgstr ""
298
+
299
+ #: lib/hammer_cli_foreman/smart_proxy.rb:78
300
+ msgid "Puppet classes were imported"
301
+ msgstr ""
302
+
303
+ #: lib/hammer_cli_foreman/smart_proxy.rb:79
304
+ msgid "Import of puppet classes failed"
305
+ msgstr ""
306
+
307
+ #: lib/hammer_cli_foreman/smart_proxy.rb:81
308
+ msgid "Do not run the import"
309
+ msgstr ""
310
+
311
+ #: lib/hammer_cli_foreman/smart_proxy.rb:97
312
+ msgid "Manipulate smart proxies."
313
+ msgstr ""
314
+
315
+ #: lib/hammer_cli_foreman/media.rb:11
316
+ msgid "Path"
317
+ msgstr ""
318
+
319
+ #: lib/hammer_cli_foreman/media.rb:20
320
+ #: lib/hammer_cli_foreman/partition_table.rb:12
321
+ msgid "OS Family"
322
+ msgstr ""
323
+
324
+ #: lib/hammer_cli_foreman/media.rb:21
325
+ msgid "OS IDs"
326
+ msgstr ""
327
+
328
+ #: lib/hammer_cli_foreman/media.rb:37
329
+ msgid "Installation medium created"
330
+ msgstr ""
331
+
332
+ #: lib/hammer_cli_foreman/media.rb:38
333
+ msgid "Could not create the installation medium"
334
+ msgstr ""
335
+
336
+ #: lib/hammer_cli_foreman/media.rb:47
337
+ msgid "Installation medium updated"
338
+ msgstr ""
339
+
340
+ #: lib/hammer_cli_foreman/media.rb:48
341
+ msgid "Could not update the installation media"
342
+ msgstr ""
343
+
344
+ #: lib/hammer_cli_foreman/media.rb:57
345
+ msgid "Installation medium deleted"
346
+ msgstr ""
347
+
348
+ #: lib/hammer_cli_foreman/media.rb:58
349
+ msgid "Could not delete the installation media"
350
+ msgstr ""
351
+
352
+ #: lib/hammer_cli_foreman/media.rb:71
353
+ msgid "Manipulate installation media."
354
+ msgstr ""
355
+
356
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
357
+ #: lib/hammer_cli_foreman/puppet_class.rb:37
358
+ msgid "Parameter"
359
+ msgstr ""
360
+
361
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
362
+ msgid "Default Value"
363
+ msgstr ""
364
+
365
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
366
+ msgid "Override"
367
+ msgstr ""
368
+
369
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:28
370
+ msgid "Puppet class"
371
+ msgstr ""
372
+
373
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:29
374
+ msgid "Class Id"
375
+ msgstr ""
376
+
377
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:46
378
+ #: lib/hammer_cli_foreman/domain.rb:21
379
+ #: lib/hammer_cli_foreman/compute_resource.rb:45
380
+ msgid "Description"
381
+ msgstr ""
382
+
383
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:47
384
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:52
385
+ #: lib/hammer_cli_foreman/template.rb:36
386
+ msgid "Type"
387
+ msgstr ""
388
+
389
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:48
390
+ msgid "Required"
391
+ msgstr ""
392
+
393
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:49
394
+ msgid "Environments"
395
+ msgstr ""
396
+
397
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:50
398
+ msgid "Environment Ids"
399
+ msgstr ""
400
+
401
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:51
402
+ msgid "Validator"
403
+ msgstr ""
404
+
405
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
406
+ msgid "Rule"
407
+ msgstr ""
408
+
409
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
410
+ msgid "Override values"
411
+ msgstr ""
412
+
413
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:56
414
+ msgid "Order"
415
+ msgstr ""
416
+
417
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
418
+ msgid "Count"
419
+ msgstr ""
420
+
421
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
422
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
423
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:238
424
+ #: lib/hammer_cli_foreman/common_parameter.rb:14
425
+ msgid "Value"
426
+ msgstr ""
427
+
428
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
429
+ msgid "Match"
430
+ msgstr ""
431
+
432
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:82
433
+ msgid "Parameter updated"
434
+ msgstr ""
435
+
436
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:83
437
+ msgid "Could not update the parameter"
438
+ msgstr ""
439
+
440
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
441
+ msgid "Override this parameter."
442
+ msgstr ""
443
+
444
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:89
445
+ msgid "This parameter is required."
446
+ msgstr ""
447
+
448
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
449
+ msgid "Type of the parameter."
450
+ msgstr ""
451
+
452
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:94
453
+ msgid "Type of the validator."
454
+ msgstr ""
455
+
456
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:103
457
+ msgid "Manipulate smart class parameters."
458
+ msgstr ""
459
+
460
+ #: lib/hammer_cli_foreman/organization.rb:36
461
+ msgid "Organization created"
462
+ msgstr ""
463
+
464
+ #: lib/hammer_cli_foreman/organization.rb:37
465
+ msgid "Could not create the organization"
466
+ msgstr ""
467
+
468
+ #: lib/hammer_cli_foreman/organization.rb:46
469
+ msgid "Organization updated"
470
+ msgstr ""
471
+
472
+ #: lib/hammer_cli_foreman/organization.rb:47
473
+ msgid "Could not update the organization"
474
+ msgstr ""
475
+
476
+ #: lib/hammer_cli_foreman/organization.rb:56
477
+ msgid "Organization deleted"
478
+ msgstr ""
479
+
480
+ #: lib/hammer_cli_foreman/organization.rb:57
481
+ msgid "Could not delete the organization"
482
+ msgstr ""
483
+
484
+ #: lib/hammer_cli_foreman/organization.rb:77
485
+ msgid "Manipulate organizations."
486
+ msgstr ""
487
+
488
+ #: lib/hammer_cli_foreman/operating_system.rb:12
489
+ msgid "Release name"
490
+ msgstr ""
491
+
492
+ #: lib/hammer_cli_foreman/operating_system.rb:13
493
+ msgid "Family"
494
+ msgstr ""
495
+
496
+ #: lib/hammer_cli_foreman/operating_system.rb:30
497
+ msgid "Installation media"
498
+ msgstr ""
499
+
500
+ #: lib/hammer_cli_foreman/operating_system.rb:31
501
+ msgid "Architectures"
502
+ msgstr ""
503
+
504
+ #: lib/hammer_cli_foreman/operating_system.rb:32
505
+ msgid "Partition tables"
506
+ msgstr ""
507
+
508
+ #: lib/hammer_cli_foreman/operating_system.rb:33
509
+ msgid "Config templates"
510
+ msgstr ""
511
+
512
+ #: lib/hammer_cli_foreman/operating_system.rb:57
513
+ #: lib/hammer_cli_foreman/operating_system.rb:85
514
+ msgid "set associated architectures"
515
+ msgstr ""
516
+
517
+ #: lib/hammer_cli_foreman/operating_system.rb:59
518
+ #: lib/hammer_cli_foreman/operating_system.rb:87
519
+ msgid "set associated templates"
520
+ msgstr ""
521
+
522
+ #: lib/hammer_cli_foreman/operating_system.rb:61
523
+ #: lib/hammer_cli_foreman/operating_system.rb:89
524
+ msgid "set associated installation media"
525
+ msgstr ""
526
+
527
+ #: lib/hammer_cli_foreman/operating_system.rb:63
528
+ #: lib/hammer_cli_foreman/operating_system.rb:91
529
+ msgid "set associated partition tables"
530
+ msgstr ""
531
+
532
+ #: lib/hammer_cli_foreman/operating_system.rb:66
533
+ msgid "Operating system created"
534
+ msgstr ""
535
+
536
+ #: lib/hammer_cli_foreman/operating_system.rb:67
537
+ msgid "Could not create the operating system"
538
+ msgstr ""
539
+
540
+ #: lib/hammer_cli_foreman/operating_system.rb:96
541
+ msgid "Operating system updated"
542
+ msgstr ""
543
+
544
+ #: lib/hammer_cli_foreman/operating_system.rb:97
545
+ msgid "Could not update the operating system"
546
+ msgstr ""
547
+
548
+ #: lib/hammer_cli_foreman/operating_system.rb:116
549
+ msgid "Operating system deleted"
550
+ msgstr ""
551
+
552
+ #: lib/hammer_cli_foreman/operating_system.rb:117
553
+ msgid "Could not delete the operating system"
554
+ msgstr ""
555
+
556
+ #: lib/hammer_cli_foreman/operating_system.rb:126
557
+ msgid "Create or update parameter for an operating system."
558
+ msgstr ""
559
+
560
+ #: lib/hammer_cli_foreman/operating_system.rb:129
561
+ msgid "id of the operating system the parameter is being set for"
562
+ msgstr ""
563
+
564
+ #: lib/hammer_cli_foreman/operating_system.rb:131
565
+ msgid "Operating system parameter updated"
566
+ msgstr ""
567
+
568
+ #: lib/hammer_cli_foreman/operating_system.rb:132
569
+ msgid "New operating system parameter created"
570
+ msgstr ""
571
+
572
+ #: lib/hammer_cli_foreman/operating_system.rb:133
573
+ msgid "Could not set operating system parameter"
574
+ msgstr ""
575
+
576
+ #: lib/hammer_cli_foreman/operating_system.rb:152
577
+ msgid "Delete parameter for an operating system."
578
+ msgstr ""
579
+
580
+ #: lib/hammer_cli_foreman/operating_system.rb:155
581
+ msgid "id of the operating system the parameter is being deleted for"
582
+ msgstr ""
583
+
584
+ #: lib/hammer_cli_foreman/operating_system.rb:156
585
+ msgid "operating system parameter deleted"
586
+ msgstr ""
587
+
588
+ #: lib/hammer_cli_foreman/report.rb:11 lib/hammer_cli_foreman/report.rb:33
589
+ #: lib/hammer_cli_foreman/fact.rb:12
590
+ msgid "Host"
591
+ msgstr ""
592
+
593
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:150
594
+ msgid "Last report"
595
+ msgstr ""
596
+
597
+ #: lib/hammer_cli_foreman/report.rb:14 lib/hammer_cli_foreman/report.rb:37
598
+ msgid "Applied"
599
+ msgstr ""
600
+
601
+ #: lib/hammer_cli_foreman/report.rb:15 lib/hammer_cli_foreman/report.rb:38
602
+ msgid "Restarted"
603
+ msgstr ""
604
+
605
+ #: lib/hammer_cli_foreman/report.rb:16 lib/hammer_cli_foreman/report.rb:39
606
+ msgid "Failed"
607
+ msgstr ""
608
+
609
+ #: lib/hammer_cli_foreman/report.rb:17 lib/hammer_cli_foreman/report.rb:40
610
+ msgid "Restart Failures"
611
+ msgstr ""
612
+
613
+ #: lib/hammer_cli_foreman/report.rb:18 lib/hammer_cli_foreman/report.rb:41
614
+ msgid "Skipped"
615
+ msgstr ""
616
+
617
+ #: lib/hammer_cli_foreman/report.rb:19 lib/hammer_cli_foreman/report.rb:42
618
+ msgid "Pending"
619
+ msgstr ""
620
+
621
+ #: lib/hammer_cli_foreman/report.rb:34
622
+ msgid "Reported at"
623
+ msgstr ""
624
+
625
+ #: lib/hammer_cli_foreman/report.rb:35
626
+ msgid "Report status"
627
+ msgstr ""
628
+
629
+ #: lib/hammer_cli_foreman/report.rb:45
630
+ msgid "Report metrics"
631
+ msgstr ""
632
+
633
+ #: lib/hammer_cli_foreman/report.rb:48
634
+ msgid "config_retrieval"
635
+ msgstr ""
636
+
637
+ #: lib/hammer_cli_foreman/report.rb:49
638
+ msgid "exec"
639
+ msgstr ""
640
+
641
+ #: lib/hammer_cli_foreman/report.rb:50
642
+ msgid "file"
643
+ msgstr ""
644
+
645
+ #: lib/hammer_cli_foreman/report.rb:51
646
+ msgid "package"
647
+ msgstr ""
648
+
649
+ #: lib/hammer_cli_foreman/report.rb:52
650
+ msgid "service"
651
+ msgstr ""
652
+
653
+ #: lib/hammer_cli_foreman/report.rb:53
654
+ msgid "user"
655
+ msgstr ""
656
+
657
+ #: lib/hammer_cli_foreman/report.rb:54
658
+ msgid "yumrepo"
659
+ msgstr ""
660
+
661
+ #: lib/hammer_cli_foreman/report.rb:55
662
+ msgid "filebucket"
663
+ msgstr ""
664
+
665
+ #: lib/hammer_cli_foreman/report.rb:56
666
+ msgid "cron"
667
+ msgstr ""
668
+
669
+ #: lib/hammer_cli_foreman/report.rb:57
670
+ msgid "total"
671
+ msgstr ""
672
+
673
+ #: lib/hammer_cli_foreman/report.rb:61
674
+ msgid "Logs"
675
+ msgstr ""
676
+
677
+ #: lib/hammer_cli_foreman/report.rb:64
678
+ msgid "Resource"
679
+ msgstr ""
680
+
681
+ #: lib/hammer_cli_foreman/report.rb:67
682
+ msgid "Message"
683
+ msgstr ""
684
+
685
+ #: lib/hammer_cli_foreman/report.rb:79
686
+ msgid "Report has been deleted"
687
+ msgstr ""
688
+
689
+ #: lib/hammer_cli_foreman/report.rb:80
690
+ msgid "Could not delete the report"
691
+ msgstr ""
692
+
693
+ #: lib/hammer_cli_foreman/report.rb:91
694
+ msgid "Browse and read reports."
695
+ msgstr ""
696
+
697
+ #: lib/hammer_cli_foreman/domain.rb:22
698
+ msgid "DNS Id"
699
+ msgstr ""
700
+
701
+ #: lib/hammer_cli_foreman/domain.rb:41
702
+ msgid "Domain [%{name}s] created"
703
+ msgstr ""
704
+
705
+ #: lib/hammer_cli_foreman/domain.rb:42
706
+ msgid "Could not create the domain"
707
+ msgstr ""
708
+
709
+ #: lib/hammer_cli_foreman/domain.rb:46 lib/hammer_cli_foreman/domain.rb:57
710
+ msgid "Full name describing the domain"
711
+ msgstr ""
712
+
713
+ #: lib/hammer_cli_foreman/domain.rb:52
714
+ msgid "Domain [%{name}s] updated"
715
+ msgstr ""
716
+
717
+ #: lib/hammer_cli_foreman/domain.rb:53
718
+ msgid "Could not update the domain"
719
+ msgstr ""
720
+
721
+ #: lib/hammer_cli_foreman/domain.rb:63
722
+ msgid "Domain [%{name}s] deleted"
723
+ msgstr ""
724
+
725
+ #: lib/hammer_cli_foreman/domain.rb:64
726
+ msgid "Could not delete the domain"
727
+ msgstr ""
728
+
729
+ #: lib/hammer_cli_foreman/domain.rb:75
730
+ msgid "Create or update parameter for a domain."
731
+ msgstr ""
732
+
733
+ #: lib/hammer_cli_foreman/domain.rb:77
734
+ msgid "name of the domain the parameter is being set for"
735
+ msgstr ""
736
+
737
+ #: lib/hammer_cli_foreman/domain.rb:78
738
+ msgid "id of the domain the parameter is being set for"
739
+ msgstr ""
740
+
741
+ #: lib/hammer_cli_foreman/domain.rb:80
742
+ msgid "Domain parameter updated"
743
+ msgstr ""
744
+
745
+ #: lib/hammer_cli_foreman/domain.rb:81
746
+ msgid "New domain parameter created"
747
+ msgstr ""
748
+
749
+ #: lib/hammer_cli_foreman/domain.rb:82
750
+ msgid "Could not set domain parameter"
751
+ msgstr ""
752
+
753
+ #: lib/hammer_cli_foreman/domain.rb:101
754
+ msgid "Delete parameter for a domain."
755
+ msgstr ""
756
+
757
+ #: lib/hammer_cli_foreman/domain.rb:103
758
+ msgid "name of the domain the parameter is being deleted for"
759
+ msgstr ""
760
+
761
+ #: lib/hammer_cli_foreman/domain.rb:104
762
+ msgid "id of the domain the parameter is being deleted for"
763
+ msgstr ""
764
+
765
+ #: lib/hammer_cli_foreman/domain.rb:106
766
+ msgid "Domain parameter deleted"
767
+ msgstr ""
768
+
769
+ #: lib/hammer_cli_foreman/domain.rb:125
770
+ msgid "Manipulate domains."
771
+ msgstr ""
772
+
773
+ #: lib/hammer_cli_foreman/template.rb:61
774
+ #: lib/hammer_cli_foreman/architecture.rb:21
775
+ msgid "OS ids"
776
+ msgstr ""
777
+
778
+ #: lib/hammer_cli_foreman/template.rb:83
779
+ msgid "List available config template kinds."
780
+ msgstr ""
781
+
782
+ #: lib/hammer_cli_foreman/template.rb:102
783
+ msgid "View config template content."
784
+ msgstr ""
785
+
786
+ #: lib/hammer_cli_foreman/template.rb:116
787
+ #: lib/hammer_cli_foreman/template.rb:131
788
+ msgid "Path to a file that contains the template"
789
+ msgstr ""
790
+
791
+ #: lib/hammer_cli_foreman/template.rb:118
792
+ #: lib/hammer_cli_foreman/template.rb:133
793
+ msgid "Template type. Eg. snippet, script, provision"
794
+ msgstr ""
795
+
796
+ #: lib/hammer_cli_foreman/template.rb:120
797
+ msgid "Config template created"
798
+ msgstr ""
799
+
800
+ #: lib/hammer_cli_foreman/template.rb:121
801
+ msgid "Could not create the config template"
802
+ msgstr ""
803
+
804
+ #: lib/hammer_cli_foreman/template.rb:137
805
+ msgid "Config template updated"
806
+ msgstr ""
807
+
808
+ #: lib/hammer_cli_foreman/template.rb:138
809
+ msgid "Could not update the config template"
810
+ msgstr ""
811
+
812
+ #: lib/hammer_cli_foreman/template.rb:150
813
+ msgid "Config template deleted"
814
+ msgstr ""
815
+
816
+ #: lib/hammer_cli_foreman/template.rb:151
817
+ msgid "Could not delete the config template"
818
+ msgstr ""
819
+
820
+ #: lib/hammer_cli_foreman/template.rb:166
821
+ msgid "Manipulate config templates."
822
+ msgstr ""
823
+
824
+ #: lib/hammer_cli_foreman/parameter.rb:30
825
+ #: lib/hammer_cli_foreman/parameter.rb:90
826
+ #: lib/hammer_cli_foreman/common_parameter.rb:30
827
+ msgid "parameter name"
828
+ msgstr ""
829
+
830
+ #: lib/hammer_cli_foreman/parameter.rb:31
831
+ #: lib/hammer_cli_foreman/common_parameter.rb:31
832
+ msgid "parameter value"
833
+ msgstr ""
834
+
835
+ #: lib/hammer_cli_foreman/credentials.rb:10
836
+ msgid "[Foreman] username: "
837
+ msgstr ""
838
+
839
+ #: lib/hammer_cli_foreman/credentials.rb:15
840
+ msgid "[Foreman] password for %s: "
841
+ msgstr ""
842
+
843
+ #: lib/hammer_cli_foreman/puppet_class.rb:35
844
+ msgid "Smart variables"
845
+ msgstr ""
846
+
847
+ #: lib/hammer_cli_foreman/puppet_class.rb:38
848
+ msgid "Default value"
849
+ msgstr ""
850
+
851
+ #: lib/hammer_cli_foreman/puppet_class.rb:50
852
+ msgid "puppet class id/name"
853
+ msgstr ""
854
+
855
+ #: lib/hammer_cli_foreman/puppet_class.rb:60
856
+ msgid "Search puppet modules."
857
+ msgstr ""
858
+
859
+ #: lib/hammer_cli_foreman/architecture.rb:31
860
+ msgid "Architecture created"
861
+ msgstr ""
862
+
863
+ #: lib/hammer_cli_foreman/architecture.rb:32
864
+ msgid "Could not create the architecture"
865
+ msgstr ""
866
+
867
+ #: lib/hammer_cli_foreman/architecture.rb:39
868
+ msgid "Architecture deleted"
869
+ msgstr ""
870
+
871
+ #: lib/hammer_cli_foreman/architecture.rb:40
872
+ msgid "Could not delete the architecture"
873
+ msgstr ""
874
+
875
+ #: lib/hammer_cli_foreman/architecture.rb:47
876
+ msgid "Architecture updated"
877
+ msgstr ""
878
+
879
+ #: lib/hammer_cli_foreman/architecture.rb:48
880
+ msgid "Could not update the architecture"
881
+ msgstr ""
882
+
883
+ #: lib/hammer_cli_foreman/architecture.rb:60
884
+ msgid "Manipulate architectures."
885
+ msgstr ""
886
+
887
+ #: lib/hammer_cli_foreman/model.rb:12
888
+ msgid "Vendor class"
889
+ msgstr ""
890
+
891
+ #: lib/hammer_cli_foreman/model.rb:13
892
+ msgid "HW model"
893
+ msgstr ""
894
+
895
+ #: lib/hammer_cli_foreman/model.rb:23
896
+ msgid "Info"
897
+ msgstr ""
898
+
899
+ #: lib/hammer_cli_foreman/model.rb:33
900
+ msgid "Hardware model created"
901
+ msgstr ""
902
+
903
+ #: lib/hammer_cli_foreman/model.rb:34
904
+ msgid "Could not create the hardware model"
905
+ msgstr ""
906
+
907
+ #: lib/hammer_cli_foreman/model.rb:40
908
+ msgid "Hardware model deleted"
909
+ msgstr ""
910
+
911
+ #: lib/hammer_cli_foreman/model.rb:41
912
+ msgid "Could not delete the hardware model"
913
+ msgstr ""
914
+
915
+ #: lib/hammer_cli_foreman/model.rb:48
916
+ msgid "Hardware model updated"
917
+ msgstr ""
918
+
919
+ #: lib/hammer_cli_foreman/model.rb:49
920
+ msgid "Could not update the hardware model"
921
+ msgstr ""
922
+
923
+ #: lib/hammer_cli_foreman/model.rb:60
924
+ msgid "Manipulate hardware models."
925
+ msgstr ""
926
+
927
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:237
928
+ msgid "Fact"
929
+ msgstr ""
930
+
931
+ #: lib/hammer_cli_foreman/fact.rb:36
932
+ msgid "Search facts."
933
+ msgstr ""
934
+
935
+ #: lib/hammer_cli_foreman/commands.rb:45
936
+ msgid "Received data of unknown format"
937
+ msgstr ""
938
+
939
+ #: lib/hammer_cli_foreman/commands.rb:113
940
+ msgid "List next page? (%s): "
941
+ msgstr ""
942
+
943
+ #: lib/hammer_cli_foreman/commands.rb:187
944
+ msgid "new name for the resource"
945
+ msgstr ""
946
+
947
+ #: lib/hammer_cli_foreman/commands.rb:317
948
+ msgid "Associate a resource"
949
+ msgstr ""
950
+
951
+ #: lib/hammer_cli_foreman/commands.rb:337
952
+ msgid "Disassociate a resource"
953
+ msgstr ""
954
+
955
+ #: lib/hammer_cli_foreman/associating_commands.rb:149
956
+ msgid "Operating system has been associated"
957
+ msgstr ""
958
+
959
+ #: lib/hammer_cli_foreman/associating_commands.rb:150
960
+ msgid "Could not associate the operating system"
961
+ msgstr ""
962
+
963
+ #: lib/hammer_cli_foreman/associating_commands.rb:160
964
+ msgid "Operating system has been disassociated"
965
+ msgstr ""
966
+
967
+ #: lib/hammer_cli_foreman/associating_commands.rb:161
968
+ msgid "Could not disassociate the operating system"
969
+ msgstr ""
970
+
971
+ #: lib/hammer_cli_foreman/associating_commands.rb:170
972
+ msgid "Architecture has been associated"
973
+ msgstr ""
974
+
975
+ #: lib/hammer_cli_foreman/associating_commands.rb:171
976
+ msgid "Could not associate the architecture"
977
+ msgstr ""
978
+
979
+ #: lib/hammer_cli_foreman/associating_commands.rb:179
980
+ msgid "Architecture has been disassociated"
981
+ msgstr ""
982
+
983
+ #: lib/hammer_cli_foreman/associating_commands.rb:180
984
+ msgid "Could not disassociate the architecture"
985
+ msgstr ""
986
+
987
+ #: lib/hammer_cli_foreman/associating_commands.rb:189
988
+ msgid "Partition table has been associated"
989
+ msgstr ""
990
+
991
+ #: lib/hammer_cli_foreman/associating_commands.rb:190
992
+ msgid "Could not associate the partition table"
993
+ msgstr ""
994
+
995
+ #: lib/hammer_cli_foreman/associating_commands.rb:198
996
+ msgid "Partition table has been disassociated"
997
+ msgstr ""
998
+
999
+ #: lib/hammer_cli_foreman/associating_commands.rb:199
1000
+ msgid "Could not disassociate the partition table"
1001
+ msgstr ""
1002
+
1003
+ #: lib/hammer_cli_foreman/partition_table.rb:33
1004
+ msgid "View partition table content."
1005
+ msgstr ""
1006
+
1007
+ #: lib/hammer_cli_foreman/partition_table.rb:45
1008
+ #: lib/hammer_cli_foreman/partition_table.rb:57
1009
+ msgid "Path to a file that contains the partition layout"
1010
+ msgstr ""
1011
+
1012
+ #: lib/hammer_cli_foreman/partition_table.rb:48
1013
+ msgid "Partition table created"
1014
+ msgstr ""
1015
+
1016
+ #: lib/hammer_cli_foreman/partition_table.rb:49
1017
+ msgid "Could not create the partition table"
1018
+ msgstr ""
1019
+
1020
+ #: lib/hammer_cli_foreman/partition_table.rb:60
1021
+ msgid "Partition table updated"
1022
+ msgstr ""
1023
+
1024
+ #: lib/hammer_cli_foreman/partition_table.rb:61
1025
+ msgid "Could not update the partition table"
1026
+ msgstr ""
1027
+
1028
+ #: lib/hammer_cli_foreman/partition_table.rb:68
1029
+ msgid "Partition table deleted"
1030
+ msgstr ""
1031
+
1032
+ #: lib/hammer_cli_foreman/partition_table.rb:69
1033
+ msgid "Could not delete the partition table"
1034
+ msgstr ""
1035
+
1036
+ #: lib/hammer_cli_foreman/partition_table.rb:83
1037
+ msgid "Manipulate partition tables."
1038
+ msgstr ""
1039
+
1040
+ #: lib/hammer_cli_foreman/auth.rb:7
1041
+ msgid "Set credentials"
1042
+ msgstr ""
1043
+
1044
+ #: lib/hammer_cli_foreman/auth.rb:20
1045
+ msgid "Wipe your credentials"
1046
+ msgstr ""
1047
+
1048
+ #: lib/hammer_cli_foreman/auth.rb:26
1049
+ msgid "Credentials deleted."
1050
+ msgstr ""
1051
+
1052
+ #: lib/hammer_cli_foreman/auth.rb:33
1053
+ msgid "Information about current connections"
1054
+ msgstr ""
1055
+
1056
+ #: lib/hammer_cli_foreman/auth.rb:37
1057
+ msgid "You are logged in as '%s'"
1058
+ msgstr ""
1059
+
1060
+ #: lib/hammer_cli_foreman/auth.rb:39
1061
+ msgid ""
1062
+ "You are currently not logged in to any service.\\nUse the service to set "
1063
+ "credentials."
1064
+ msgstr ""
1065
+
1066
+ #: lib/hammer_cli_foreman/auth.rb:48
1067
+ msgid "Foreman connection login/logout."
1068
+ msgstr ""
1069
+
1070
+ #: lib/hammer_cli_foreman/host.rb:43
1071
+ msgid "Host parameters."
1072
+ msgstr ""
1073
+
1074
+ #: lib/hammer_cli_foreman/host.rb:45
1075
+ msgid "Compute resource attributes."
1076
+ msgstr ""
1077
+
1078
+ #: lib/hammer_cli_foreman/host.rb:47
1079
+ msgid "Volume parameters"
1080
+ msgstr ""
1081
+
1082
+ #: lib/hammer_cli_foreman/host.rb:49
1083
+ msgid "Interface parameters."
1084
+ msgstr ""
1085
+
1086
+ #: lib/hammer_cli_foreman/host.rb:109
1087
+ msgid "Host Group Id"
1088
+ msgstr ""
1089
+
1090
+ #: lib/hammer_cli_foreman/host.rb:110
1091
+ msgid "IP"
1092
+ msgstr ""
1093
+
1094
+ #: lib/hammer_cli_foreman/host.rb:111
1095
+ msgid "MAC"
1096
+ msgstr ""
1097
+
1098
+ #: lib/hammer_cli_foreman/host.rb:127 lib/hammer_cli_foreman/image.rb:36
1099
+ #: lib/hammer_cli_foreman/image.rb:80
1100
+ #: lib/hammer_cli_foreman/compute_resource.rb:24
1101
+ #: lib/hammer_cli_foreman/compute_resource.rb:30
1102
+ msgid "UUID"
1103
+ msgstr ""
1104
+
1105
+ #: lib/hammer_cli_foreman/host.rb:128
1106
+ msgid "Cert name"
1107
+ msgstr ""
1108
+
1109
+ #: lib/hammer_cli_foreman/host.rb:130
1110
+ msgid "Environment"
1111
+ msgstr ""
1112
+
1113
+ #: lib/hammer_cli_foreman/host.rb:133
1114
+ msgid "Managed"
1115
+ msgstr ""
1116
+
1117
+ #: lib/hammer_cli_foreman/host.rb:134
1118
+ msgid "Enabled"
1119
+ msgstr ""
1120
+
1121
+ #: lib/hammer_cli_foreman/host.rb:135
1122
+ msgid "Build"
1123
+ msgstr ""
1124
+
1125
+ #: lib/hammer_cli_foreman/host.rb:137
1126
+ msgid "Use image"
1127
+ msgstr ""
1128
+
1129
+ #: lib/hammer_cli_foreman/host.rb:138
1130
+ msgid "Disk"
1131
+ msgstr ""
1132
+
1133
+ #: lib/hammer_cli_foreman/host.rb:139
1134
+ msgid "Image file"
1135
+ msgstr ""
1136
+
1137
+ #: lib/hammer_cli_foreman/host.rb:141
1138
+ msgid "SP Name"
1139
+ msgstr ""
1140
+
1141
+ #: lib/hammer_cli_foreman/host.rb:142
1142
+ msgid "SP IP"
1143
+ msgstr ""
1144
+
1145
+ #: lib/hammer_cli_foreman/host.rb:143
1146
+ msgid "SP MAC"
1147
+ msgstr ""
1148
+
1149
+ #: lib/hammer_cli_foreman/host.rb:144
1150
+ msgid "SP Subnet"
1151
+ msgstr ""
1152
+
1153
+ #: lib/hammer_cli_foreman/host.rb:145
1154
+ msgid "SP Subnet Id"
1155
+ msgstr ""
1156
+
1157
+ #: lib/hammer_cli_foreman/host.rb:149
1158
+ msgid "Installed at"
1159
+ msgstr ""
1160
+
1161
+ #: lib/hammer_cli_foreman/host.rb:154
1162
+ msgid "Model Id"
1163
+ msgstr ""
1164
+
1165
+ #: lib/hammer_cli_foreman/host.rb:155
1166
+ msgid "Owner Id"
1167
+ msgstr ""
1168
+
1169
+ #: lib/hammer_cli_foreman/host.rb:158
1170
+ msgid "Puppet Proxy Id"
1171
+ msgstr ""
1172
+
1173
+ #: lib/hammer_cli_foreman/host.rb:159
1174
+ msgid "Owner Type"
1175
+ msgstr ""
1176
+
1177
+ #: lib/hammer_cli_foreman/host.rb:162
1178
+ msgid "Image Id"
1179
+ msgstr ""
1180
+
1181
+ #: lib/hammer_cli_foreman/host.rb:163
1182
+ msgid "Compute Resource Id"
1183
+ msgstr ""
1184
+
1185
+ #: lib/hammer_cli_foreman/host.rb:165
1186
+ msgid "Comment"
1187
+ msgstr ""
1188
+
1189
+ #: lib/hammer_cli_foreman/host.rb:183
1190
+ msgid "Status"
1191
+ msgstr ""
1192
+
1193
+ #: lib/hammer_cli_foreman/host.rb:184
1194
+ msgid "Power"
1195
+ msgstr ""
1196
+
1197
+ #: lib/hammer_cli_foreman/host.rb:221
1198
+ msgid "Puppet run triggered"
1199
+ msgstr ""
1200
+
1201
+ #: lib/hammer_cli_foreman/host.rb:295
1202
+ msgid "Host created"
1203
+ msgstr ""
1204
+
1205
+ #: lib/hammer_cli_foreman/host.rb:296
1206
+ msgid "Could not create the host"
1207
+ msgstr ""
1208
+
1209
+ #: lib/hammer_cli_foreman/host.rb:319
1210
+ msgid "Host updated"
1211
+ msgstr ""
1212
+
1213
+ #: lib/hammer_cli_foreman/host.rb:320
1214
+ msgid "Could not update the host"
1215
+ msgstr ""
1216
+
1217
+ #: lib/hammer_cli_foreman/host.rb:328
1218
+ msgid "Host deleted"
1219
+ msgstr ""
1220
+
1221
+ #: lib/hammer_cli_foreman/host.rb:329
1222
+ msgid "Could not delete the host"
1223
+ msgstr ""
1224
+
1225
+ #: lib/hammer_cli_foreman/host.rb:339
1226
+ msgid "Create or update parameter for a host."
1227
+ msgstr ""
1228
+
1229
+ #: lib/hammer_cli_foreman/host.rb:341
1230
+ msgid "name of the host the parameter is being set for"
1231
+ msgstr ""
1232
+
1233
+ #: lib/hammer_cli_foreman/host.rb:342
1234
+ msgid "id of the host the parameter is being set for"
1235
+ msgstr ""
1236
+
1237
+ #: lib/hammer_cli_foreman/host.rb:344
1238
+ msgid "Host parameter updated"
1239
+ msgstr ""
1240
+
1241
+ #: lib/hammer_cli_foreman/host.rb:345
1242
+ msgid "New host parameter created"
1243
+ msgstr ""
1244
+
1245
+ #: lib/hammer_cli_foreman/host.rb:346
1246
+ msgid "Could not set host parameter"
1247
+ msgstr ""
1248
+
1249
+ #: lib/hammer_cli_foreman/host.rb:365
1250
+ msgid "Delete parameter for a host."
1251
+ msgstr ""
1252
+
1253
+ #: lib/hammer_cli_foreman/host.rb:367
1254
+ msgid "name of the host the parameter is being deleted for"
1255
+ msgstr ""
1256
+
1257
+ #: lib/hammer_cli_foreman/host.rb:368
1258
+ msgid "id of the host the parameter is being deleted for"
1259
+ msgstr ""
1260
+
1261
+ #: lib/hammer_cli_foreman/host.rb:370
1262
+ msgid "Host parameter deleted"
1263
+ msgstr ""
1264
+
1265
+ #: lib/hammer_cli_foreman/host.rb:391
1266
+ msgid "Power a host on"
1267
+ msgstr ""
1268
+
1269
+ #: lib/hammer_cli_foreman/host.rb:392
1270
+ msgid "The host is starting."
1271
+ msgstr ""
1272
+
1273
+ #: lib/hammer_cli_foreman/host.rb:404
1274
+ msgid "Force turning off a host"
1275
+ msgstr ""
1276
+
1277
+ #: lib/hammer_cli_foreman/host.rb:410
1278
+ msgid "Power a host off"
1279
+ msgstr ""
1280
+
1281
+ #: lib/hammer_cli_foreman/host.rb:422
1282
+ msgid "Power off forced."
1283
+ msgstr ""
1284
+
1285
+ #: lib/hammer_cli_foreman/host.rb:424
1286
+ msgid "Powering the host off."
1287
+ msgstr ""
1288
+
1289
+ #: lib/hammer_cli_foreman/host.rb:437
1290
+ msgid "Reboot a host"
1291
+ msgstr ""
1292
+
1293
+ #: lib/hammer_cli_foreman/host.rb:438
1294
+ msgid "Host reboot started."
1295
+ msgstr ""
1296
+
1297
+ #: lib/hammer_cli_foreman/host.rb:450
1298
+ msgid "host id/name"
1299
+ msgstr ""
1300
+
1301
+ #: lib/hammer_cli_foreman/user.rb:10
1302
+ msgid "Login"
1303
+ msgstr ""
1304
+
1305
+ #: lib/hammer_cli_foreman/user.rb:12
1306
+ msgid "Email"
1307
+ msgstr ""
1308
+
1309
+ #: lib/hammer_cli_foreman/user.rb:28 lib/hammer_cli_foreman/user.rb:61
1310
+ #: lib/hammer_cli_foreman/user.rb:77
1311
+ msgid "User login"
1312
+ msgstr ""
1313
+
1314
+ #: lib/hammer_cli_foreman/user.rb:33
1315
+ msgid "Last login"
1316
+ msgstr ""
1317
+
1318
+ #: lib/hammer_cli_foreman/user.rb:49
1319
+ msgid "User created"
1320
+ msgstr ""
1321
+
1322
+ #: lib/hammer_cli_foreman/user.rb:50
1323
+ msgid "Could not create the user"
1324
+ msgstr ""
1325
+
1326
+ #: lib/hammer_cli_foreman/user.rb:65
1327
+ msgid "User updated"
1328
+ msgstr ""
1329
+
1330
+ #: lib/hammer_cli_foreman/user.rb:66
1331
+ msgid "Could not update the user"
1332
+ msgstr ""
1333
+
1334
+ #: lib/hammer_cli_foreman/user.rb:81
1335
+ msgid "User deleted"
1336
+ msgstr ""
1337
+
1338
+ #: lib/hammer_cli_foreman/user.rb:82
1339
+ msgid "Could not delete the user"
1340
+ msgstr ""
1341
+
1342
+ #: lib/hammer_cli_foreman/user.rb:93
1343
+ msgid "Manipulate users."
1344
+ msgstr ""
1345
+
1346
+ #: lib/hammer_cli_foreman/subnet.rb:10
1347
+ msgid "Network"
1348
+ msgstr ""
1349
+
1350
+ #: lib/hammer_cli_foreman/subnet.rb:11
1351
+ msgid "Mask"
1352
+ msgstr ""
1353
+
1354
+ #: lib/hammer_cli_foreman/subnet.rb:23
1355
+ msgid "Priority"
1356
+ msgstr ""
1357
+
1358
+ #: lib/hammer_cli_foreman/subnet.rb:24
1359
+ msgid "DNS id"
1360
+ msgstr ""
1361
+
1362
+ #: lib/hammer_cli_foreman/subnet.rb:25
1363
+ msgid "DNS"
1364
+ msgstr ""
1365
+
1366
+ #: lib/hammer_cli_foreman/subnet.rb:26
1367
+ msgid "Primary DNS"
1368
+ msgstr ""
1369
+
1370
+ #: lib/hammer_cli_foreman/subnet.rb:27
1371
+ msgid "Secondary DNS"
1372
+ msgstr ""
1373
+
1374
+ #: lib/hammer_cli_foreman/subnet.rb:28
1375
+ msgid "Domain ids"
1376
+ msgstr ""
1377
+
1378
+ #: lib/hammer_cli_foreman/subnet.rb:29
1379
+ msgid "TFTP"
1380
+ msgstr ""
1381
+
1382
+ #: lib/hammer_cli_foreman/subnet.rb:30
1383
+ msgid "TFTP id"
1384
+ msgstr ""
1385
+
1386
+ #: lib/hammer_cli_foreman/subnet.rb:31
1387
+ msgid "DHCP"
1388
+ msgstr ""
1389
+
1390
+ #: lib/hammer_cli_foreman/subnet.rb:32
1391
+ msgid "DHCP id"
1392
+ msgstr ""
1393
+
1394
+ #: lib/hammer_cli_foreman/subnet.rb:33
1395
+ msgid "vlan id"
1396
+ msgstr ""
1397
+
1398
+ #: lib/hammer_cli_foreman/subnet.rb:34
1399
+ msgid "Gateway"
1400
+ msgstr ""
1401
+
1402
+ #: lib/hammer_cli_foreman/subnet.rb:35
1403
+ msgid "From"
1404
+ msgstr ""
1405
+
1406
+ #: lib/hammer_cli_foreman/subnet.rb:36
1407
+ msgid "To"
1408
+ msgstr ""
1409
+
1410
+ #: lib/hammer_cli_foreman/subnet.rb:45
1411
+ msgid "Subnet created"
1412
+ msgstr ""
1413
+
1414
+ #: lib/hammer_cli_foreman/subnet.rb:46
1415
+ msgid "Could not create the subnet"
1416
+ msgstr ""
1417
+
1418
+ #: lib/hammer_cli_foreman/subnet.rb:55
1419
+ msgid "Subnet updated"
1420
+ msgstr ""
1421
+
1422
+ #: lib/hammer_cli_foreman/subnet.rb:56
1423
+ msgid "Could not update the subnet"
1424
+ msgstr ""
1425
+
1426
+ #: lib/hammer_cli_foreman/subnet.rb:65
1427
+ msgid "Subnet deleted"
1428
+ msgstr ""
1429
+
1430
+ #: lib/hammer_cli_foreman/subnet.rb:66
1431
+ msgid "Could not delete the subnet"
1432
+ msgstr ""
1433
+
1434
+ #: lib/hammer_cli_foreman/subnet.rb:77
1435
+ msgid "Manipulate subnets."
1436
+ msgstr ""
1437
+
1438
+ #: lib/hammer_cli_foreman/image.rb:9
1439
+ msgid "View and manage compute resource's images"
1440
+ msgstr ""
1441
+
1442
+ #: lib/hammer_cli_foreman/image.rb:15
1443
+ msgid "Compute resource's name"
1444
+ msgstr ""
1445
+
1446
+ #: lib/hammer_cli_foreman/image.rb:16
1447
+ msgid "Compute resource's id"
1448
+ msgstr ""
1449
+
1450
+ #: lib/hammer_cli_foreman/image.rb:35
1451
+ msgid "Username"
1452
+ msgstr ""
1453
+
1454
+ #: lib/hammer_cli_foreman/image.rb:56
1455
+ msgid "IAM role"
1456
+ msgstr ""
1457
+
1458
+ #: lib/hammer_cli_foreman/image.rb:72
1459
+ msgid "available_images"
1460
+ msgstr ""
1461
+
1462
+ #: lib/hammer_cli_foreman/image.rb:74
1463
+ msgid "Show images available for addition"
1464
+ msgstr ""
1465
+
1466
+ #: lib/hammer_cli_foreman/image.rb:96
1467
+ msgid "Image created"
1468
+ msgstr ""
1469
+
1470
+ #: lib/hammer_cli_foreman/image.rb:97
1471
+ msgid "Could not create the image"
1472
+ msgstr ""
1473
+
1474
+ #: lib/hammer_cli_foreman/image.rb:112
1475
+ msgid "Image updated"
1476
+ msgstr ""
1477
+
1478
+ #: lib/hammer_cli_foreman/image.rb:113
1479
+ msgid "Could not update the image"
1480
+ msgstr ""
1481
+
1482
+ #: lib/hammer_cli_foreman/image.rb:129
1483
+ msgid "Image deleted"
1484
+ msgstr ""
1485
+
1486
+ #: lib/hammer_cli_foreman/image.rb:130
1487
+ msgid "Could not delete the image"
1488
+ msgstr ""
1489
+
1490
+ #: lib/hammer_cli_foreman/resource_supported_test.rb:11
1491
+ msgid "The server does not support such operation."
1492
+ msgstr ""
1493
+
1494
+ #: lib/hammer_cli_foreman/common_parameter.rb:23
1495
+ msgid "Set a global parameter."
1496
+ msgstr ""
1497
+
1498
+ #: lib/hammer_cli_foreman/common_parameter.rb:25
1499
+ msgid "Created parameter [%{name}s] with value [%{value}s]."
1500
+ msgstr ""
1501
+
1502
+ #: lib/hammer_cli_foreman/common_parameter.rb:26
1503
+ msgid "Parameter [%{name}s] updated to [%{value}s]."
1504
+ msgstr ""
1505
+
1506
+ #: lib/hammer_cli_foreman/common_parameter.rb:61
1507
+ msgid "Global parameter [%{name}s] deleted."
1508
+ msgstr ""
1509
+
1510
+ #: lib/hammer_cli_foreman/common_parameter.rb:62
1511
+ msgid "Could not delete the global parameter [%{name}s]"
1512
+ msgstr ""
1513
+
1514
+ #: lib/hammer_cli_foreman/common_parameter.rb:72
1515
+ msgid "Manipulate global parameters."
1516
+ msgstr ""
1517
+
1518
+ #: lib/hammer_cli_foreman/exception_handler.rb:41
1519
+ msgid "Forbidden - server refused to process the request"
1520
+ msgstr ""
1521
+
1522
+ #: lib/hammer_cli_foreman/compute_resource.rb:13
1523
+ msgid "Provider"
1524
+ msgstr ""
1525
+
1526
+ #: lib/hammer_cli_foreman/compute_resource.rb:27
1527
+ #: lib/hammer_cli_foreman/compute_resource.rb:37
1528
+ msgid "Region"
1529
+ msgstr ""
1530
+
1531
+ #: lib/hammer_cli_foreman/compute_resource.rb:31
1532
+ msgid "Server"
1533
+ msgstr ""
1534
+
1535
+ #: lib/hammer_cli_foreman/compute_resource.rb:34
1536
+ msgid "Tenant"
1537
+ msgstr ""
1538
+
1539
+ #: lib/hammer_cli_foreman/compute_resource.rb:44
1540
+ msgid "Url"
1541
+ msgstr ""
1542
+
1543
+ #: lib/hammer_cli_foreman/compute_resource.rb:46
1544
+ msgid "User"
1545
+ msgstr ""
1546
+
1547
+ #: lib/hammer_cli_foreman/compute_resource.rb:63
1548
+ msgid "Compute resource created"
1549
+ msgstr ""
1550
+
1551
+ #: lib/hammer_cli_foreman/compute_resource.rb:64
1552
+ msgid "Could not create the compute resource"
1553
+ msgstr ""
1554
+
1555
+ #: lib/hammer_cli_foreman/compute_resource.rb:76
1556
+ msgid "Compute resource updated"
1557
+ msgstr ""
1558
+
1559
+ #: lib/hammer_cli_foreman/compute_resource.rb:77
1560
+ msgid "Could not update the compute resource"
1561
+ msgstr ""
1562
+
1563
+ #: lib/hammer_cli_foreman/compute_resource.rb:85
1564
+ msgid "Compute resource deleted"
1565
+ msgstr ""
1566
+
1567
+ #: lib/hammer_cli_foreman/compute_resource.rb:86
1568
+ msgid "Could not delete the compute resource"
1569
+ msgstr ""
1570
+
1571
+ #: lib/hammer_cli_foreman/compute_resource.rb:98
1572
+ msgid "Manipulate compute resources."
1573
+ msgstr ""