hammer_cli_foreman 0.8.0 → 0.9.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.
- checksums.yaml +4 -4
- data/config/foreman.yml +1 -0
- data/doc/host_create.md +3 -3
- data/doc/release_notes.md +14 -0
- data/lib/hammer_cli_foreman.rb +0 -1
- data/lib/hammer_cli_foreman/api.rb +3 -0
- data/lib/hammer_cli_foreman/api/connection.rb +75 -0
- data/lib/hammer_cli_foreman/api/interactive_basic_auth.rb +49 -0
- data/lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb +120 -0
- data/lib/hammer_cli_foreman/auth.rb +16 -12
- data/lib/hammer_cli_foreman/commands.rb +4 -36
- data/lib/hammer_cli_foreman/compute_resource.rb +6 -6
- data/lib/hammer_cli_foreman/compute_resources/all.rb +7 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/gce.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb +22 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb +35 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb +36 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb +20 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb +62 -0
- data/lib/hammer_cli_foreman/filter.rb +1 -0
- data/lib/hammer_cli_foreman/host.rb +15 -140
- data/lib/hammer_cli_foreman/hosts/common_update_help.rb +53 -0
- data/lib/hammer_cli_foreman/hosts/common_update_options.rb +141 -0
- data/lib/hammer_cli_foreman/references.rb +13 -2
- data/lib/hammer_cli_foreman/role.rb +3 -7
- data/lib/hammer_cli_foreman/smart_class_parameter.rb +2 -2
- data/lib/hammer_cli_foreman/smart_variable.rb +1 -2
- data/lib/hammer_cli_foreman/user.rb +2 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ca/hammer-cli-foreman.edit.po +520 -318
- data/locale/ca/hammer-cli-foreman.po +253 -175
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +568 -358
- data/locale/de/hammer-cli-foreman.po +255 -177
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/hammer-cli-foreman.edit.po +446 -228
- data/locale/en/hammer-cli-foreman.po +208 -41
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +498 -307
- data/locale/en_GB/hammer-cli-foreman.po +254 -176
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +594 -388
- data/locale/es/hammer-cli-foreman.po +254 -176
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +542 -342
- data/locale/fr/hammer-cli-foreman.po +254 -176
- data/locale/hammer-cli-foreman.pot +503 -241
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +510 -295
- data/locale/it/hammer-cli-foreman.po +254 -176
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +590 -365
- data/locale/ja/hammer-cli-foreman.po +254 -176
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +591 -366
- data/locale/ko/hammer-cli-foreman.po +254 -176
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +588 -388
- data/locale/pt_BR/hammer-cli-foreman.po +254 -176
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +549 -336
- data/locale/ru/hammer-cli-foreman.po +254 -176
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +598 -373
- data/locale/zh_CN/hammer-cli-foreman.po +254 -176
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +592 -367
- data/locale/zh_TW/hammer-cli-foreman.po +254 -176
- data/test/test_helper.rb +7 -5
- data/test/unit/api/interactive_basic_auth_test.rb +87 -0
- data/test/unit/api/session_authenticator_wrapper_test.rb +263 -0
- data/test/unit/exception_handler_test.rb +1 -1
- data/test/unit/host_test.rb +2 -2
- metadata +314 -292
- data/lib/hammer_cli_foreman/credentials.rb +0 -67
- data/test/unit/credentials_test.rb +0 -59
|
Binary file
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# Giuseppe Pignataro <anubisteam01@gmail.com>, 2014
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
10
|
+
"Project-Id-Version: hammer-cli-foreman 0.8.0\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2016-
|
|
13
|
-
"PO-Revision-Date: 2016-
|
|
12
|
+
"POT-Creation-Date: 2016-12-15 22:40+0100\n"
|
|
13
|
+
"PO-Revision-Date: 2016-08-22 15:08+0000\n"
|
|
14
14
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
|
15
15
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
|
16
16
|
"\n"
|
|
@@ -20,124 +20,168 @@ msgstr ""
|
|
|
20
20
|
"Language: it\n"
|
|
21
21
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
22
22
|
|
|
23
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
23
|
+
#: ../lib/hammer_cli_foreman.rb:31
|
|
24
24
|
msgid "Foreman connection login/logout."
|
|
25
25
|
msgstr "Login/logout della connessione di foreman"
|
|
26
26
|
|
|
27
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
27
|
+
#: ../lib/hammer_cli_foreman.rb:35
|
|
28
28
|
msgid "Manipulate architectures."
|
|
29
29
|
msgstr "Manipolazione architetture."
|
|
30
30
|
|
|
31
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
31
|
+
#: ../lib/hammer_cli_foreman.rb:39
|
|
32
32
|
msgid "Manipulate auth sources."
|
|
33
33
|
msgstr "Manipolazione sorgenti di autenticazione."
|
|
34
34
|
|
|
35
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
35
|
+
#: ../lib/hammer_cli_foreman.rb:43
|
|
36
36
|
msgid "Manipulate compute resources."
|
|
37
37
|
msgstr "Manipolazione risorse di calcolo"
|
|
38
38
|
|
|
39
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
39
|
+
#: ../lib/hammer_cli_foreman.rb:47
|
|
40
40
|
msgid "Manipulate domains."
|
|
41
41
|
msgstr "Manipolazione domini."
|
|
42
42
|
|
|
43
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
43
|
+
#: ../lib/hammer_cli_foreman.rb:51
|
|
44
44
|
msgid "Manipulate environments."
|
|
45
45
|
msgstr "Manipolazione ambienti."
|
|
46
46
|
|
|
47
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
47
|
+
#: ../lib/hammer_cli_foreman.rb:55
|
|
48
48
|
msgid "Search facts."
|
|
49
49
|
msgstr "Cerca eventi."
|
|
50
50
|
|
|
51
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
51
|
+
#: ../lib/hammer_cli_foreman.rb:59
|
|
52
52
|
msgid "Manage permission filters."
|
|
53
53
|
msgstr "Gestisci i filri dei permessi."
|
|
54
54
|
|
|
55
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
55
|
+
#: ../lib/hammer_cli_foreman.rb:63
|
|
56
56
|
msgid "Manipulate hosts."
|
|
57
57
|
msgstr "Manipolazione host."
|
|
58
58
|
|
|
59
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
59
|
+
#: ../lib/hammer_cli_foreman.rb:67
|
|
60
60
|
msgid "Manipulate hostgroups."
|
|
61
61
|
msgstr "Manipolazione hostgroup."
|
|
62
62
|
|
|
63
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
63
|
+
#: ../lib/hammer_cli_foreman.rb:71
|
|
64
64
|
msgid "Manipulate locations."
|
|
65
65
|
msgstr "Manipolazione posizioni."
|
|
66
66
|
|
|
67
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
67
|
+
#: ../lib/hammer_cli_foreman.rb:75
|
|
68
68
|
msgid "Manipulate installation media."
|
|
69
69
|
msgstr "Manipolazione dispositivo d'installazione"
|
|
70
70
|
|
|
71
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
71
|
+
#: ../lib/hammer_cli_foreman.rb:79
|
|
72
72
|
msgid "Manipulate hardware models."
|
|
73
73
|
msgstr "Manipolazione modelli hardware."
|
|
74
74
|
|
|
75
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
75
|
+
#: ../lib/hammer_cli_foreman.rb:83
|
|
76
76
|
msgid "Manipulate operating system."
|
|
77
77
|
msgstr "Manipolazione sistema operativo."
|
|
78
78
|
|
|
79
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
79
|
+
#: ../lib/hammer_cli_foreman.rb:87
|
|
80
80
|
msgid "Manipulate organizations."
|
|
81
81
|
msgstr "Manipolazione organizzazioni."
|
|
82
82
|
|
|
83
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
83
|
+
#: ../lib/hammer_cli_foreman.rb:91
|
|
84
84
|
msgid "Manipulate partition tables."
|
|
85
85
|
msgstr "Manipolazione tabelle delle partizioni"
|
|
86
86
|
|
|
87
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
87
|
+
#: ../lib/hammer_cli_foreman.rb:95
|
|
88
88
|
msgid "Search puppet modules."
|
|
89
89
|
msgstr "Cerca moduli puppet."
|
|
90
90
|
|
|
91
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
91
|
+
#: ../lib/hammer_cli_foreman.rb:99
|
|
92
92
|
msgid "Browse and read reports."
|
|
93
93
|
msgstr "Sfoglia e leggi i riporti."
|
|
94
94
|
|
|
95
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
95
|
+
#: ../lib/hammer_cli_foreman.rb:103
|
|
96
96
|
msgid "Manage user roles."
|
|
97
97
|
msgstr "Gestisci ruoli utente."
|
|
98
98
|
|
|
99
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
99
|
+
#: ../lib/hammer_cli_foreman.rb:107
|
|
100
100
|
msgid "Manipulate smart class parameters."
|
|
101
101
|
msgstr "Manipolazione parametri classe smart."
|
|
102
102
|
|
|
103
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
103
|
+
#: ../lib/hammer_cli_foreman.rb:111
|
|
104
104
|
msgid "Manipulate smart variables."
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
107
|
+
#: ../lib/hammer_cli_foreman.rb:115
|
|
108
108
|
msgid "Manipulate smart proxies."
|
|
109
109
|
msgstr "Manipolazione smart proxy."
|
|
110
110
|
|
|
111
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
111
|
+
#: ../lib/hammer_cli_foreman.rb:119
|
|
112
112
|
#, fuzzy
|
|
113
113
|
msgid "Manipulate realms."
|
|
114
114
|
msgstr "Manipolazione domini."
|
|
115
115
|
|
|
116
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
116
|
+
#: ../lib/hammer_cli_foreman.rb:123
|
|
117
117
|
msgid "Change server settings."
|
|
118
118
|
msgstr ""
|
|
119
119
|
|
|
120
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
120
|
+
#: ../lib/hammer_cli_foreman.rb:127
|
|
121
121
|
msgid "Manipulate subnets."
|
|
122
122
|
msgstr "Manipolazione sottoreti."
|
|
123
123
|
|
|
124
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
124
|
+
#: ../lib/hammer_cli_foreman.rb:131
|
|
125
125
|
msgid "Manipulate config templates."
|
|
126
126
|
msgstr "Manipolazione modelli di configurazione."
|
|
127
127
|
|
|
128
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
128
|
+
#: ../lib/hammer_cli_foreman.rb:135
|
|
129
129
|
msgid "Manipulate users."
|
|
130
130
|
msgstr "Manipolazione utenti."
|
|
131
131
|
|
|
132
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
132
|
+
#: ../lib/hammer_cli_foreman.rb:139
|
|
133
133
|
msgid "Manage user groups."
|
|
134
134
|
msgstr "Gestisci gruppi di utenti."
|
|
135
135
|
|
|
136
|
-
#: ../lib/hammer_cli_foreman/
|
|
136
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:15
|
|
137
|
+
#, fuzzy
|
|
138
|
+
msgid "Invalid username or password"
|
|
139
|
+
msgstr "utente"
|
|
140
|
+
|
|
141
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:20
|
|
142
|
+
msgid "You are logged in as '%s'"
|
|
143
|
+
msgstr "Sei registrato come '%s'"
|
|
144
|
+
|
|
145
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:22 ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:28
|
|
146
|
+
msgid "You are currently not logged in"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:33
|
|
150
|
+
msgid "[Foreman] Username: "
|
|
151
|
+
msgstr "Nome utente [Foreman]: "
|
|
152
|
+
|
|
153
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:37
|
|
154
|
+
msgid "[Foreman] Password for %s: "
|
|
155
|
+
msgstr "[Foreman] Password per %s: "
|
|
156
|
+
|
|
157
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:17
|
|
158
|
+
#, fuzzy
|
|
159
|
+
msgid "Can't use session auth due to invalid permissions on session files."
|
|
160
|
+
msgstr "file"
|
|
161
|
+
|
|
162
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:26
|
|
163
|
+
msgid "Session exist, currently logged in as '%s'"
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:51
|
|
167
|
+
msgid "Session has expired"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:78
|
|
171
|
+
#, fuzzy
|
|
172
|
+
msgid "Invalid session file format"
|
|
173
|
+
msgstr "file"
|
|
174
|
+
|
|
175
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:106
|
|
176
|
+
#, fuzzy
|
|
177
|
+
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
178
|
+
msgstr "file"
|
|
179
|
+
|
|
180
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/host.rb:30 ../lib/hammer_cli_foreman/host.rb:62 ../lib/hammer_cli_foreman/host.rb:93 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/realm.rb:8 ../lib/hammer_cli_foreman/references.rb:36 ../lib/hammer_cli_foreman/references.rb:43 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:66 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
|
|
137
181
|
msgid "Id"
|
|
138
182
|
msgstr "Id"
|
|
139
183
|
|
|
140
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:
|
|
184
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/filter.rb:91 ../lib/hammer_cli_foreman/host.rb:31 ../lib/hammer_cli_foreman/host.rb:64 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/realm.rb:9 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:75 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
|
|
141
185
|
msgid "Name"
|
|
142
186
|
msgstr "Nome"
|
|
143
187
|
|
|
@@ -174,23 +218,20 @@ msgid "The hostgroup has been associated"
|
|
|
174
218
|
msgstr ""
|
|
175
219
|
|
|
176
220
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
177
|
-
#, fuzzy
|
|
178
221
|
msgid "Could not associate the hostgroup"
|
|
179
|
-
msgstr "
|
|
222
|
+
msgstr ""
|
|
180
223
|
|
|
181
224
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
182
225
|
msgid "Disassociate a hostgroup"
|
|
183
226
|
msgstr "Rimuovere associazione di un hostgroup"
|
|
184
227
|
|
|
185
228
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
186
|
-
#, fuzzy
|
|
187
229
|
msgid "The hostgroup has been disassociated"
|
|
188
|
-
msgstr "
|
|
230
|
+
msgstr ""
|
|
189
231
|
|
|
190
232
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
191
|
-
#, fuzzy
|
|
192
233
|
msgid "Could not disassociate the hostgroup"
|
|
193
|
-
msgstr "
|
|
234
|
+
msgstr ""
|
|
194
235
|
|
|
195
236
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
196
237
|
msgid "Associate an environment"
|
|
@@ -201,9 +242,8 @@ msgid "The environment has been associated"
|
|
|
201
242
|
msgstr ""
|
|
202
243
|
|
|
203
244
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
204
|
-
#, fuzzy
|
|
205
245
|
msgid "Could not associate the environment"
|
|
206
|
-
msgstr "
|
|
246
|
+
msgstr ""
|
|
207
247
|
|
|
208
248
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
209
249
|
msgid "Disassociate an environment"
|
|
@@ -214,9 +254,8 @@ msgid "The environment has been disassociated"
|
|
|
214
254
|
msgstr ""
|
|
215
255
|
|
|
216
256
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
217
|
-
#, fuzzy
|
|
218
257
|
msgid "Could not disassociate the environment"
|
|
219
|
-
msgstr "
|
|
258
|
+
msgstr ""
|
|
220
259
|
|
|
221
260
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
222
261
|
msgid "Associate a domain"
|
|
@@ -227,79 +266,68 @@ msgid "The domain has been associated"
|
|
|
227
266
|
msgstr ""
|
|
228
267
|
|
|
229
268
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
230
|
-
#, fuzzy
|
|
231
269
|
msgid "Could not associate the domain"
|
|
232
|
-
msgstr "
|
|
270
|
+
msgstr ""
|
|
233
271
|
|
|
234
272
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
235
273
|
msgid "Disassociate a domain"
|
|
236
274
|
msgstr "Rimuovere associazione di un dominio"
|
|
237
275
|
|
|
238
276
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
239
|
-
#, fuzzy
|
|
240
277
|
msgid "The domain has been disassociated"
|
|
241
|
-
msgstr "
|
|
278
|
+
msgstr ""
|
|
242
279
|
|
|
243
280
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
244
|
-
#, fuzzy
|
|
245
281
|
msgid "Could not disassociate the domain"
|
|
246
|
-
msgstr "
|
|
282
|
+
msgstr ""
|
|
247
283
|
|
|
248
284
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
249
285
|
msgid "Associate a medium"
|
|
250
286
|
msgstr "Associa un supporto"
|
|
251
287
|
|
|
252
288
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
253
|
-
#, fuzzy
|
|
254
289
|
msgid "The medium has been associated"
|
|
255
|
-
msgstr "
|
|
290
|
+
msgstr ""
|
|
256
291
|
|
|
257
292
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
258
|
-
#, fuzzy
|
|
259
293
|
msgid "Could not associate the medium"
|
|
260
|
-
msgstr "
|
|
294
|
+
msgstr ""
|
|
261
295
|
|
|
262
296
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
263
297
|
msgid "Disassociate a medium"
|
|
264
298
|
msgstr "Rimuovi associazione del supporto"
|
|
265
299
|
|
|
266
300
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
267
|
-
#, fuzzy
|
|
268
301
|
msgid "The medium has been disassociated"
|
|
269
|
-
msgstr "
|
|
302
|
+
msgstr ""
|
|
270
303
|
|
|
271
304
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
272
|
-
#, fuzzy
|
|
273
305
|
msgid "Could not disassociate the medium"
|
|
274
|
-
msgstr "
|
|
306
|
+
msgstr ""
|
|
275
307
|
|
|
276
308
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
277
309
|
msgid "Associate a subnet"
|
|
278
310
|
msgstr "Associa una sottorete"
|
|
279
311
|
|
|
280
312
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
281
|
-
#, fuzzy
|
|
282
313
|
msgid "The subnet has been associated"
|
|
283
|
-
msgstr "
|
|
314
|
+
msgstr ""
|
|
284
315
|
|
|
285
316
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
286
|
-
#, fuzzy
|
|
287
317
|
msgid "Could not associate the subnet"
|
|
288
|
-
msgstr "
|
|
318
|
+
msgstr ""
|
|
289
319
|
|
|
290
320
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
291
321
|
msgid "Disassociate a subnet"
|
|
292
322
|
msgstr "Rimuovere associazione di una sottorete"
|
|
293
323
|
|
|
294
324
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
295
|
-
#, fuzzy
|
|
296
325
|
msgid "The subnet has been disassociated"
|
|
297
|
-
msgstr "
|
|
326
|
+
msgstr ""
|
|
298
327
|
|
|
299
328
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
300
|
-
#, fuzzy
|
|
301
329
|
msgid "Could not disassociate the subnet"
|
|
302
|
-
msgstr "
|
|
330
|
+
msgstr ""
|
|
303
331
|
|
|
304
332
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
305
333
|
msgid "Associate a compute resource"
|
|
@@ -310,9 +338,8 @@ msgid "The compute resource has been associated"
|
|
|
310
338
|
msgstr ""
|
|
311
339
|
|
|
312
340
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
313
|
-
#, fuzzy
|
|
314
341
|
msgid "Could not associate the compute resource"
|
|
315
|
-
msgstr "
|
|
342
|
+
msgstr ""
|
|
316
343
|
|
|
317
344
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
318
345
|
msgid "Disassociate a compute resource"
|
|
@@ -323,9 +350,8 @@ msgid "The compute resource has been disassociated"
|
|
|
323
350
|
msgstr ""
|
|
324
351
|
|
|
325
352
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
326
|
-
#, fuzzy
|
|
327
353
|
msgid "Could not disassociate the compute resource"
|
|
328
|
-
msgstr "
|
|
354
|
+
msgstr ""
|
|
329
355
|
|
|
330
356
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
331
357
|
msgid "Associate a smart proxy"
|
|
@@ -336,9 +362,8 @@ msgid "The smart proxy has been associated"
|
|
|
336
362
|
msgstr ""
|
|
337
363
|
|
|
338
364
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
339
|
-
#, fuzzy
|
|
340
365
|
msgid "Could not associate the smart proxy"
|
|
341
|
-
msgstr "
|
|
366
|
+
msgstr ""
|
|
342
367
|
|
|
343
368
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
344
369
|
msgid "Disassociate a smart proxy"
|
|
@@ -349,9 +374,8 @@ msgid "The smart proxy has been disassociated"
|
|
|
349
374
|
msgstr ""
|
|
350
375
|
|
|
351
376
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
352
|
-
#, fuzzy
|
|
353
377
|
msgid "Could not disassociate the smart proxy"
|
|
354
|
-
msgstr "
|
|
378
|
+
msgstr ""
|
|
355
379
|
|
|
356
380
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
357
381
|
msgid "Associate an user"
|
|
@@ -410,9 +434,8 @@ msgid "The configuration template has been associated"
|
|
|
410
434
|
msgstr ""
|
|
411
435
|
|
|
412
436
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
413
|
-
#, fuzzy
|
|
414
437
|
msgid "Could not associate the configuration template"
|
|
415
|
-
msgstr "
|
|
438
|
+
msgstr ""
|
|
416
439
|
|
|
417
440
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
418
441
|
msgid "Disassociate a configuration template"
|
|
@@ -423,9 +446,8 @@ msgid "The configuration template has been disassociated"
|
|
|
423
446
|
msgstr ""
|
|
424
447
|
|
|
425
448
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
426
|
-
#, fuzzy
|
|
427
449
|
msgid "Could not disassociate the configuration template"
|
|
428
|
-
msgstr "
|
|
450
|
+
msgstr ""
|
|
429
451
|
|
|
430
452
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
431
453
|
msgid "Associate an organization"
|
|
@@ -436,9 +458,8 @@ msgid "The organization has been associated"
|
|
|
436
458
|
msgstr ""
|
|
437
459
|
|
|
438
460
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
439
|
-
#, fuzzy
|
|
440
461
|
msgid "Could not associate the organization"
|
|
441
|
-
msgstr "
|
|
462
|
+
msgstr ""
|
|
442
463
|
|
|
443
464
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
444
465
|
msgid "Disassociate an organization"
|
|
@@ -449,9 +470,8 @@ msgid "The organization has been disassociated"
|
|
|
449
470
|
msgstr ""
|
|
450
471
|
|
|
451
472
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
452
|
-
#, fuzzy
|
|
453
473
|
msgid "Could not disassociate the organization"
|
|
454
|
-
msgstr "
|
|
474
|
+
msgstr ""
|
|
455
475
|
|
|
456
476
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
457
477
|
msgid "Associate an operating system"
|
|
@@ -582,28 +602,31 @@ msgstr "Impossibile rimuovere associazione dell'architettura"
|
|
|
582
602
|
msgid "Set credentials"
|
|
583
603
|
msgstr "Imposta le credenziali"
|
|
584
604
|
|
|
585
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
605
|
+
#: ../lib/hammer_cli_foreman/auth.rb:9
|
|
606
|
+
#, fuzzy
|
|
607
|
+
msgid "username to access the remote system"
|
|
608
|
+
msgstr "utente"
|
|
609
|
+
|
|
610
|
+
#: ../lib/hammer_cli_foreman/auth.rb:10
|
|
611
|
+
msgid "password to access the remote system"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
#: ../lib/hammer_cli_foreman/auth.rb:22
|
|
615
|
+
msgid "Successfully logged in."
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
#: ../lib/hammer_cli_foreman/auth.rb:29
|
|
586
619
|
msgid "Wipe your credentials"
|
|
587
620
|
msgstr "Rimuovi le credenziali"
|
|
588
621
|
|
|
589
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
622
|
+
#: ../lib/hammer_cli_foreman/auth.rb:34
|
|
590
623
|
msgid "Credentials deleted."
|
|
591
624
|
msgstr "Credenziali rimosse."
|
|
592
625
|
|
|
593
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
626
|
+
#: ../lib/hammer_cli_foreman/auth.rb:41
|
|
594
627
|
msgid "Information about current connections"
|
|
595
628
|
msgstr "Informazioni sulle connessioni correnti"
|
|
596
629
|
|
|
597
|
-
#: ../lib/hammer_cli_foreman/auth.rb:37
|
|
598
|
-
msgid "You are logged in as '%s'"
|
|
599
|
-
msgstr "Sei registrato come '%s'"
|
|
600
|
-
|
|
601
|
-
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
602
|
-
msgid ""
|
|
603
|
-
"You are currently not logged in to any service.\n"
|
|
604
|
-
"Use the service to set credentials."
|
|
605
|
-
msgstr ""
|
|
606
|
-
|
|
607
630
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
608
631
|
msgid "Manage LDAP auth sources."
|
|
609
632
|
msgstr "Gestisci sorgenti di autenticazione LDAP."
|
|
@@ -680,48 +703,47 @@ msgstr "Sorgente di autenticazione aggiornato"
|
|
|
680
703
|
msgid "Could not update the Auth Source"
|
|
681
704
|
msgstr "Impossibile aggiornare il sorgente di autenticazione"
|
|
682
705
|
|
|
683
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
706
|
+
#: ../lib/hammer_cli_foreman/commands.rb:56
|
|
684
707
|
msgid "Received data of unknown format"
|
|
685
708
|
msgstr "Dati ricevuti con un formato sconosciuto"
|
|
686
709
|
|
|
687
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
710
|
+
#: ../lib/hammer_cli_foreman/commands.rb:164
|
|
688
711
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
689
712
|
msgstr "Impossibile trovare %{resource}. Alcune opzioni risultano mancanti, consultare --help."
|
|
690
713
|
|
|
691
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
714
|
+
#: ../lib/hammer_cli_foreman/commands.rb:166
|
|
692
715
|
msgid "Could not find %{resource}, please set option %{switches}."
|
|
693
716
|
msgstr "Impossibile trovare %{resource}, impostare l'opzione %{switches}."
|
|
694
717
|
|
|
695
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
718
|
+
#: ../lib/hammer_cli_foreman/commands.rb:168
|
|
696
719
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
697
720
|
msgstr "Impossibile trovare %{resource}, impostare una delle opzioni %{switches}."
|
|
698
721
|
|
|
699
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
722
|
+
#: ../lib/hammer_cli_foreman/commands.rb:497
|
|
700
723
|
msgid "Associate a resource"
|
|
701
724
|
msgstr "Associare una risorsa"
|
|
702
725
|
|
|
703
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
726
|
+
#: ../lib/hammer_cli_foreman/commands.rb:501
|
|
704
727
|
msgid "Could not associate the %{resource_name}"
|
|
705
728
|
msgstr ""
|
|
706
729
|
|
|
707
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
730
|
+
#: ../lib/hammer_cli_foreman/commands.rb:505
|
|
708
731
|
msgid "The %{resource_name} has been associated"
|
|
709
732
|
msgstr ""
|
|
710
733
|
|
|
711
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
734
|
+
#: ../lib/hammer_cli_foreman/commands.rb:527
|
|
712
735
|
msgid "Disassociate a resource"
|
|
713
736
|
msgstr "Rimuovere associazione di una risorsa"
|
|
714
737
|
|
|
715
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
716
|
-
#, fuzzy
|
|
738
|
+
#: ../lib/hammer_cli_foreman/commands.rb:539
|
|
717
739
|
msgid "Could not disassociate the %{resource_name}"
|
|
718
|
-
msgstr "
|
|
740
|
+
msgstr ""
|
|
719
741
|
|
|
720
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
742
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
|
721
743
|
msgid "The %{resource_name} has been disassociated"
|
|
722
744
|
msgstr ""
|
|
723
745
|
|
|
724
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
|
746
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:189 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:78 ../lib/hammer_cli_foreman/smart_variable.rb:68
|
|
725
747
|
msgid "Value"
|
|
726
748
|
msgstr "Valore"
|
|
727
749
|
|
|
@@ -761,9 +783,9 @@ msgstr "Manipolazione parametri globali."
|
|
|
761
783
|
msgid "Provider"
|
|
762
784
|
msgstr "Provider"
|
|
763
785
|
|
|
764
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
765
|
-
msgid "
|
|
766
|
-
msgstr "
|
|
786
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
787
|
+
msgid "Datacenter"
|
|
788
|
+
msgstr ""
|
|
767
789
|
|
|
768
790
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
769
791
|
msgid "Region"
|
|
@@ -781,7 +803,7 @@ msgstr "Titolare"
|
|
|
781
803
|
msgid "Url"
|
|
782
804
|
msgstr "Url"
|
|
783
805
|
|
|
784
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/location.rb:15 ../lib/hammer_cli_foreman/organization.rb:15 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:53
|
|
806
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/location.rb:15 ../lib/hammer_cli_foreman/organization.rb:15 ../lib/hammer_cli_foreman/role.rb:21 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:53 ../lib/hammer_cli_foreman/user.rb:34
|
|
785
807
|
msgid "Description"
|
|
786
808
|
msgstr "Descrizione"
|
|
787
809
|
|
|
@@ -813,13 +835,155 @@ msgstr "Risorsa di colacolo rimossa"
|
|
|
813
835
|
msgid "Could not delete the compute resource"
|
|
814
836
|
msgstr "Impossibile rimuovere la risorsa di calcolo"
|
|
815
837
|
|
|
816
|
-
#: ../lib/hammer_cli_foreman/
|
|
817
|
-
msgid "
|
|
818
|
-
msgstr "
|
|
838
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb:6
|
|
839
|
+
msgid "EC2"
|
|
840
|
+
msgstr ""
|
|
819
841
|
|
|
820
|
-
#: ../lib/hammer_cli_foreman/
|
|
821
|
-
msgid "
|
|
822
|
-
msgstr "
|
|
842
|
+
#: ../lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb:6
|
|
843
|
+
msgid "GCE"
|
|
844
|
+
msgstr ""
|
|
845
|
+
|
|
846
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:6
|
|
847
|
+
msgid "Libvirt"
|
|
848
|
+
msgstr ""
|
|
849
|
+
|
|
850
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:12
|
|
851
|
+
msgid "Number of CPUs"
|
|
852
|
+
msgstr ""
|
|
853
|
+
|
|
854
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:13
|
|
855
|
+
msgid "String, amount of memory, value in bytes"
|
|
856
|
+
msgstr ""
|
|
857
|
+
|
|
858
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:14 ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:16
|
|
859
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
860
|
+
msgstr ""
|
|
861
|
+
|
|
862
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:19 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:21 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:28 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:10 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:28
|
|
863
|
+
msgid "Possible values: %s"
|
|
864
|
+
msgstr ""
|
|
865
|
+
|
|
866
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:20
|
|
867
|
+
#, fuzzy
|
|
868
|
+
msgid "Name of interface according to type"
|
|
869
|
+
msgstr "Nome"
|
|
870
|
+
|
|
871
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:26
|
|
872
|
+
msgid "One of available storage pools"
|
|
873
|
+
msgstr ""
|
|
874
|
+
|
|
875
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:27
|
|
876
|
+
msgid "String value, eg. 10G"
|
|
877
|
+
msgstr ""
|
|
878
|
+
|
|
879
|
+
#: ../lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb:6
|
|
880
|
+
msgid "OpenStack"
|
|
881
|
+
msgstr ""
|
|
882
|
+
|
|
883
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:6
|
|
884
|
+
msgid "oVirt"
|
|
885
|
+
msgstr ""
|
|
886
|
+
|
|
887
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:13
|
|
888
|
+
#, fuzzy
|
|
889
|
+
msgid "Hardware profile to use"
|
|
890
|
+
msgstr "file"
|
|
891
|
+
|
|
892
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:14
|
|
893
|
+
msgid "Integer value, number of cores"
|
|
894
|
+
msgstr ""
|
|
895
|
+
|
|
896
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:15
|
|
897
|
+
msgid "Amount of memory, integer value in bytes"
|
|
898
|
+
msgstr ""
|
|
899
|
+
|
|
900
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:21
|
|
901
|
+
msgid "Eg. eth0"
|
|
902
|
+
msgstr ""
|
|
903
|
+
|
|
904
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:22
|
|
905
|
+
msgid "Select one of available networks for a cluster"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
908
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:27
|
|
909
|
+
msgid "Volume size in GB, integer value"
|
|
910
|
+
msgstr ""
|
|
911
|
+
|
|
912
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:28
|
|
913
|
+
msgid "Select one of available storage domains"
|
|
914
|
+
msgstr ""
|
|
915
|
+
|
|
916
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:29
|
|
917
|
+
msgid "Boolean, only one volume can be bootable"
|
|
918
|
+
msgstr ""
|
|
919
|
+
|
|
920
|
+
#: ../lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb:6
|
|
921
|
+
msgid "Rackspace"
|
|
922
|
+
msgstr ""
|
|
923
|
+
|
|
924
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:15
|
|
925
|
+
msgid "VMWare"
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
928
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:21
|
|
929
|
+
msgid "Cpu count"
|
|
930
|
+
msgstr ""
|
|
931
|
+
|
|
932
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:22
|
|
933
|
+
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
934
|
+
msgstr ""
|
|
935
|
+
|
|
936
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:23
|
|
937
|
+
msgid "Integer number, amount of memory in MB"
|
|
938
|
+
msgstr ""
|
|
939
|
+
|
|
940
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:24
|
|
941
|
+
msgid "Cluster id from VMware"
|
|
942
|
+
msgstr ""
|
|
943
|
+
|
|
944
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:25
|
|
945
|
+
#, fuzzy
|
|
946
|
+
msgid "Path to folder"
|
|
947
|
+
msgstr "Percorso"
|
|
948
|
+
|
|
949
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:26
|
|
950
|
+
msgid "Guest OS id form VMware"
|
|
951
|
+
msgstr ""
|
|
952
|
+
|
|
953
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:27
|
|
954
|
+
#, fuzzy
|
|
955
|
+
msgid "Id of the controller from VMware"
|
|
956
|
+
msgstr "Id"
|
|
957
|
+
|
|
958
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:28
|
|
959
|
+
msgid "Hardware version id from VMware"
|
|
960
|
+
msgstr ""
|
|
961
|
+
|
|
962
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:29
|
|
963
|
+
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
966
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:35
|
|
967
|
+
#, fuzzy
|
|
968
|
+
msgid "Network id from VMware"
|
|
969
|
+
msgstr "Rete"
|
|
970
|
+
|
|
971
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:41
|
|
972
|
+
msgid "Datastore id from VMware"
|
|
973
|
+
msgstr ""
|
|
974
|
+
|
|
975
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:42
|
|
976
|
+
msgid "Integer number, volume size in GB"
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
979
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:53
|
|
980
|
+
#, fuzzy
|
|
981
|
+
msgid "Type of the network adapter, for example one of:"
|
|
982
|
+
msgstr "Tipo"
|
|
983
|
+
|
|
984
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:55
|
|
985
|
+
msgid "See documentation center for your version of vSphere to find more details about available adapter types:"
|
|
986
|
+
msgstr ""
|
|
823
987
|
|
|
824
988
|
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
825
989
|
msgid "Use the default organization and/or location from the server"
|
|
@@ -926,9 +1090,8 @@ msgid "Update your server url configuration"
|
|
|
926
1090
|
msgstr ""
|
|
927
1091
|
|
|
928
1092
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:33
|
|
929
|
-
#, fuzzy
|
|
930
1093
|
msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
|
|
931
|
-
msgstr "
|
|
1094
|
+
msgstr ""
|
|
932
1095
|
|
|
933
1096
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:54
|
|
934
1097
|
msgid "Forbidden - server refused to process the request"
|
|
@@ -986,7 +1149,7 @@ msgstr "Impossibile cancellare il gruppo di utenti esterno"
|
|
|
986
1149
|
msgid "Host"
|
|
987
1150
|
msgstr "Host"
|
|
988
1151
|
|
|
989
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
|
1152
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:188
|
|
990
1153
|
msgid "Fact"
|
|
991
1154
|
msgstr "Evento"
|
|
992
1155
|
|
|
@@ -1003,354 +1166,335 @@ msgid "Unlimited?"
|
|
|
1003
1166
|
msgstr "Illimitato?"
|
|
1004
1167
|
|
|
1005
1168
|
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
1169
|
+
#, fuzzy
|
|
1170
|
+
msgid "Override?"
|
|
1171
|
+
msgstr "Override"
|
|
1172
|
+
|
|
1173
|
+
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
1006
1174
|
msgid "Role"
|
|
1007
1175
|
msgstr "Ruolo"
|
|
1008
1176
|
|
|
1009
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1177
|
+
#: ../lib/hammer_cli_foreman/filter.rb:15
|
|
1010
1178
|
msgid "Permissions"
|
|
1011
1179
|
msgstr "Permessi"
|
|
1012
1180
|
|
|
1013
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1181
|
+
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/filter.rb:79 ../lib/hammer_cli_foreman/role.rb:42
|
|
1014
1182
|
msgid "(Miscellaneous)"
|
|
1015
1183
|
msgstr "(Altro)"
|
|
1016
1184
|
|
|
1017
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1185
|
+
#: ../lib/hammer_cli_foreman/filter.rb:20 ../lib/hammer_cli_foreman/filter.rb:36 ../lib/hammer_cli_foreman/role.rb:43
|
|
1018
1186
|
msgid "none"
|
|
1019
1187
|
msgstr "nessuno"
|
|
1020
1188
|
|
|
1021
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1189
|
+
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1022
1190
|
msgid "Permission filter for [%<resource_type>s] created"
|
|
1023
1191
|
msgstr "Filtro permessi per [%<resource_type>s] creato"
|
|
1024
1192
|
|
|
1025
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1193
|
+
#: ../lib/hammer_cli_foreman/filter.rb:46
|
|
1026
1194
|
msgid "Could not create the permission filter"
|
|
1027
1195
|
msgstr "Impossibile creare il filtro dei permessi"
|
|
1028
1196
|
|
|
1029
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1197
|
+
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1030
1198
|
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1031
1199
|
msgstr "Filtro permessi per [%<resource_type>s] aggiornato"
|
|
1032
1200
|
|
|
1033
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1201
|
+
#: ../lib/hammer_cli_foreman/filter.rb:54
|
|
1034
1202
|
msgid "Could not update the permission filter"
|
|
1035
1203
|
msgstr "Impossibile aggiornare il filtro dei permessi"
|
|
1036
1204
|
|
|
1037
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1205
|
+
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1038
1206
|
msgid "Permission filter deleted"
|
|
1039
1207
|
msgstr "Filtro permessi rimosso"
|
|
1040
1208
|
|
|
1041
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1209
|
+
#: ../lib/hammer_cli_foreman/filter.rb:62
|
|
1042
1210
|
msgid "Could not delete the permission filter"
|
|
1043
1211
|
msgstr "Impossibile cancellare il filtro dei permessi"
|
|
1044
1212
|
|
|
1045
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1213
|
+
#: ../lib/hammer_cli_foreman/filter.rb:75 ../lib/hammer_cli_foreman/report.rb:62
|
|
1046
1214
|
msgid "Resource"
|
|
1047
1215
|
msgstr "Risorsa"
|
|
1048
1216
|
|
|
1049
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1050
|
-
msgid "Login of the owner"
|
|
1051
|
-
msgstr "Login del proprietario"
|
|
1052
|
-
|
|
1053
|
-
#: ../lib/hammer_cli_foreman/host.rb:17
|
|
1054
|
-
msgid "ID of the owner"
|
|
1055
|
-
msgstr "ID del proprietario"
|
|
1056
|
-
|
|
1057
|
-
#: ../lib/hammer_cli_foreman/host.rb:44
|
|
1058
|
-
msgid "Host parameters."
|
|
1059
|
-
msgstr "Parametri host"
|
|
1060
|
-
|
|
1061
|
-
#: ../lib/hammer_cli_foreman/host.rb:46
|
|
1062
|
-
msgid "Compute resource attributes."
|
|
1063
|
-
msgstr "Attributi risorsa di colacolo."
|
|
1064
|
-
|
|
1065
|
-
#: ../lib/hammer_cli_foreman/host.rb:48
|
|
1066
|
-
msgid "Volume parameters"
|
|
1067
|
-
msgstr "Parametri del volume"
|
|
1068
|
-
|
|
1069
|
-
#: ../lib/hammer_cli_foreman/host.rb:50
|
|
1070
|
-
msgid "Interface parameters."
|
|
1071
|
-
msgstr "Parametri dell'interfaccia."
|
|
1072
|
-
|
|
1073
|
-
#: ../lib/hammer_cli_foreman/host.rb:64
|
|
1074
|
-
msgid "Enter the root password for the host:"
|
|
1075
|
-
msgstr "Inserire la password root per l'host:"
|
|
1076
|
-
|
|
1077
|
-
#: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1217
|
+
#: ../lib/hammer_cli_foreman/host.rb:32 ../lib/hammer_cli_foreman/host.rb:103 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1078
1218
|
msgid "Operating System"
|
|
1079
1219
|
msgstr "Sistema Operativo"
|
|
1080
1220
|
|
|
1081
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1221
|
+
#: ../lib/hammer_cli_foreman/host.rb:33 ../lib/hammer_cli_foreman/host.rb:67
|
|
1082
1222
|
msgid "Host Group"
|
|
1083
1223
|
msgstr "Gruppo di host"
|
|
1084
1224
|
|
|
1085
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1225
|
+
#: ../lib/hammer_cli_foreman/host.rb:34 ../lib/hammer_cli_foreman/host.rb:80
|
|
1086
1226
|
msgid "IP"
|
|
1087
1227
|
msgstr "IP"
|
|
1088
1228
|
|
|
1089
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1229
|
+
#: ../lib/hammer_cli_foreman/host.rb:35 ../lib/hammer_cli_foreman/host.rb:81
|
|
1090
1230
|
msgid "MAC"
|
|
1091
1231
|
msgstr "MAC"
|
|
1092
1232
|
|
|
1093
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1233
|
+
#: ../lib/hammer_cli_foreman/host.rb:45
|
|
1094
1234
|
msgid "Bare Metal"
|
|
1095
1235
|
msgstr "Bare Metal"
|
|
1096
1236
|
|
|
1097
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1237
|
+
#: ../lib/hammer_cli_foreman/host.rb:63 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
1238
|
+
msgid "UUID"
|
|
1239
|
+
msgstr "UUID"
|
|
1240
|
+
|
|
1241
|
+
#: ../lib/hammer_cli_foreman/host.rb:65
|
|
1098
1242
|
msgid "Organization"
|
|
1099
1243
|
msgstr "Organizzazione"
|
|
1100
1244
|
|
|
1101
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1245
|
+
#: ../lib/hammer_cli_foreman/host.rb:66
|
|
1102
1246
|
msgid "Location"
|
|
1103
1247
|
msgstr "Posizione"
|
|
1104
1248
|
|
|
1105
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1249
|
+
#: ../lib/hammer_cli_foreman/host.rb:68
|
|
1106
1250
|
msgid "Compute Resource"
|
|
1107
1251
|
msgstr "Risorsa di calcolo"
|
|
1108
1252
|
|
|
1109
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1253
|
+
#: ../lib/hammer_cli_foreman/host.rb:69
|
|
1110
1254
|
msgid "Compute Profile"
|
|
1111
1255
|
msgstr "Profilo di calcolo"
|
|
1112
1256
|
|
|
1113
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1257
|
+
#: ../lib/hammer_cli_foreman/host.rb:70 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1114
1258
|
msgid "Environment"
|
|
1115
1259
|
msgstr "Ambiente"
|
|
1116
1260
|
|
|
1117
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1261
|
+
#: ../lib/hammer_cli_foreman/host.rb:71
|
|
1118
1262
|
msgid "Puppet CA Id"
|
|
1119
1263
|
msgstr ""
|
|
1120
1264
|
|
|
1121
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1265
|
+
#: ../lib/hammer_cli_foreman/host.rb:72
|
|
1122
1266
|
msgid "Puppet Master Id"
|
|
1123
1267
|
msgstr ""
|
|
1124
1268
|
|
|
1125
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1269
|
+
#: ../lib/hammer_cli_foreman/host.rb:73
|
|
1126
1270
|
msgid "Cert name"
|
|
1127
1271
|
msgstr "Nome certificato"
|
|
1128
1272
|
|
|
1129
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1273
|
+
#: ../lib/hammer_cli_foreman/host.rb:74 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1130
1274
|
msgid "Managed"
|
|
1131
1275
|
msgstr "Gestito"
|
|
1132
1276
|
|
|
1133
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1277
|
+
#: ../lib/hammer_cli_foreman/host.rb:76
|
|
1134
1278
|
msgid "Installed at"
|
|
1135
1279
|
msgstr "Installato"
|
|
1136
1280
|
|
|
1137
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1281
|
+
#: ../lib/hammer_cli_foreman/host.rb:77 ../lib/hammer_cli_foreman/report.rb:12
|
|
1138
1282
|
msgid "Last report"
|
|
1139
1283
|
msgstr "Ultimo riporto"
|
|
1140
1284
|
|
|
1141
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1285
|
+
#: ../lib/hammer_cli_foreman/host.rb:79 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1142
1286
|
msgid "Network"
|
|
1143
1287
|
msgstr "Rete"
|
|
1144
1288
|
|
|
1145
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1289
|
+
#: ../lib/hammer_cli_foreman/host.rb:82 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1146
1290
|
msgid "Subnet"
|
|
1147
1291
|
msgstr "Sottorete"
|
|
1148
1292
|
|
|
1149
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1293
|
+
#: ../lib/hammer_cli_foreman/host.rb:83 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1150
1294
|
msgid "Domain"
|
|
1151
1295
|
msgstr "Dominio"
|
|
1152
1296
|
|
|
1153
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1297
|
+
#: ../lib/hammer_cli_foreman/host.rb:84
|
|
1154
1298
|
msgid "Service provider"
|
|
1155
1299
|
msgstr ""
|
|
1156
1300
|
|
|
1157
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1301
|
+
#: ../lib/hammer_cli_foreman/host.rb:85
|
|
1158
1302
|
msgid "SP Name"
|
|
1159
1303
|
msgstr "Nome SP"
|
|
1160
1304
|
|
|
1161
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1305
|
+
#: ../lib/hammer_cli_foreman/host.rb:86
|
|
1162
1306
|
msgid "SP IP"
|
|
1163
1307
|
msgstr "IP SP"
|
|
1164
1308
|
|
|
1165
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1309
|
+
#: ../lib/hammer_cli_foreman/host.rb:87
|
|
1166
1310
|
msgid "SP MAC"
|
|
1167
1311
|
msgstr "MCA SP"
|
|
1168
1312
|
|
|
1169
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1313
|
+
#: ../lib/hammer_cli_foreman/host.rb:88
|
|
1170
1314
|
msgid "SP Subnet"
|
|
1171
1315
|
msgstr "Sottorete SP"
|
|
1172
1316
|
|
|
1173
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1317
|
+
#: ../lib/hammer_cli_foreman/host.rb:92
|
|
1174
1318
|
msgid "Network interfaces"
|
|
1175
1319
|
msgstr "Interfaccia di rete"
|
|
1176
1320
|
|
|
1177
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1321
|
+
#: ../lib/hammer_cli_foreman/host.rb:94 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1178
1322
|
msgid "Identifier"
|
|
1179
1323
|
msgstr "Indetificatore"
|
|
1180
1324
|
|
|
1181
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1325
|
+
#: ../lib/hammer_cli_foreman/host.rb:95 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:60 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:57 ../lib/hammer_cli_foreman/template.rb:27
|
|
1182
1326
|
msgid "Type"
|
|
1183
1327
|
msgstr "Tipo"
|
|
1184
1328
|
|
|
1185
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1329
|
+
#: ../lib/hammer_cli_foreman/host.rb:96 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1186
1330
|
msgid "MAC address"
|
|
1187
1331
|
msgstr "Indirizzo MAC"
|
|
1188
1332
|
|
|
1189
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1333
|
+
#: ../lib/hammer_cli_foreman/host.rb:97 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1190
1334
|
msgid "IP address"
|
|
1191
1335
|
msgstr "indirizzo IP"
|
|
1192
1336
|
|
|
1193
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1337
|
+
#: ../lib/hammer_cli_foreman/host.rb:98
|
|
1194
1338
|
msgid "FQDN"
|
|
1195
1339
|
msgstr ""
|
|
1196
1340
|
|
|
1197
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1341
|
+
#: ../lib/hammer_cli_foreman/host.rb:101
|
|
1198
1342
|
msgid "Operating system"
|
|
1199
1343
|
msgstr "Sistema operativo"
|
|
1200
1344
|
|
|
1201
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1345
|
+
#: ../lib/hammer_cli_foreman/host.rb:102 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1202
1346
|
msgid "Architecture"
|
|
1203
1347
|
msgstr "Architettura"
|
|
1204
1348
|
|
|
1205
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1349
|
+
#: ../lib/hammer_cli_foreman/host.rb:106
|
|
1206
1350
|
msgid "Build"
|
|
1207
1351
|
msgstr "Compilazione"
|
|
1208
1352
|
|
|
1209
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1353
|
+
#: ../lib/hammer_cli_foreman/host.rb:107 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1210
1354
|
msgid "Medium"
|
|
1211
1355
|
msgstr "Supporto"
|
|
1212
1356
|
|
|
1213
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1357
|
+
#: ../lib/hammer_cli_foreman/host.rb:108 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1214
1358
|
msgid "Partition Table"
|
|
1215
1359
|
msgstr "Tabella delle partizioni"
|
|
1216
1360
|
|
|
1217
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1361
|
+
#: ../lib/hammer_cli_foreman/host.rb:109
|
|
1218
1362
|
msgid "Custom partition table"
|
|
1219
1363
|
msgstr ""
|
|
1220
1364
|
|
|
1221
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1365
|
+
#: ../lib/hammer_cli_foreman/host.rb:112
|
|
1222
1366
|
msgid "Image"
|
|
1223
1367
|
msgstr "Immagine"
|
|
1224
1368
|
|
|
1225
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1369
|
+
#: ../lib/hammer_cli_foreman/host.rb:113
|
|
1226
1370
|
msgid "Image file"
|
|
1227
1371
|
msgstr "File immagine"
|
|
1228
1372
|
|
|
1229
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1373
|
+
#: ../lib/hammer_cli_foreman/host.rb:114
|
|
1230
1374
|
msgid "Use image"
|
|
1231
1375
|
msgstr "Usa immagine"
|
|
1232
1376
|
|
|
1233
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1377
|
+
#: ../lib/hammer_cli_foreman/host.rb:120
|
|
1234
1378
|
msgid "Additional info"
|
|
1235
1379
|
msgstr "Info aggiuntive"
|
|
1236
1380
|
|
|
1237
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1381
|
+
#: ../lib/hammer_cli_foreman/host.rb:121
|
|
1238
1382
|
msgid "Owner Id"
|
|
1239
1383
|
msgstr "ID proprietario"
|
|
1240
1384
|
|
|
1241
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1385
|
+
#: ../lib/hammer_cli_foreman/host.rb:122
|
|
1242
1386
|
msgid "Owner Type"
|
|
1243
1387
|
msgstr "Tipo di proprietario"
|
|
1244
1388
|
|
|
1245
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1389
|
+
#: ../lib/hammer_cli_foreman/host.rb:123
|
|
1246
1390
|
msgid "Enabled"
|
|
1247
1391
|
msgstr "Abilitato"
|
|
1248
1392
|
|
|
1249
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1393
|
+
#: ../lib/hammer_cli_foreman/host.rb:124 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1250
1394
|
msgid "Model"
|
|
1251
1395
|
msgstr "Modello"
|
|
1252
1396
|
|
|
1253
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1397
|
+
#: ../lib/hammer_cli_foreman/host.rb:125
|
|
1254
1398
|
msgid "Comment"
|
|
1255
1399
|
msgstr "Commento"
|
|
1256
1400
|
|
|
1257
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1401
|
+
#: ../lib/hammer_cli_foreman/host.rb:138
|
|
1258
1402
|
msgid "Status"
|
|
1259
1403
|
msgstr "Stato"
|
|
1260
1404
|
|
|
1261
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1405
|
+
#: ../lib/hammer_cli_foreman/host.rb:139
|
|
1262
1406
|
msgid "Power"
|
|
1263
1407
|
msgstr "Alimentazione"
|
|
1264
1408
|
|
|
1265
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1409
|
+
#: ../lib/hammer_cli_foreman/host.rb:175
|
|
1266
1410
|
msgid "Puppet run triggered"
|
|
1267
1411
|
msgstr "Esecuzione puppet attivata"
|
|
1268
1412
|
|
|
1269
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1413
|
+
#: ../lib/hammer_cli_foreman/host.rb:228
|
|
1270
1414
|
msgid "Host created"
|
|
1271
1415
|
msgstr "Host creato"
|
|
1272
1416
|
|
|
1273
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1417
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
|
1274
1418
|
msgid "Could not create the host"
|
|
1275
1419
|
msgstr "Impossibile creare l'host"
|
|
1276
1420
|
|
|
1277
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1421
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1278
1422
|
msgid "Host updated"
|
|
1279
1423
|
msgstr "Host aggiornato"
|
|
1280
1424
|
|
|
1281
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1425
|
+
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1282
1426
|
msgid "Could not update the host"
|
|
1283
1427
|
msgstr "Impossibile aggiornare l'host"
|
|
1284
1428
|
|
|
1285
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1429
|
+
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1286
1430
|
msgid "Host deleted"
|
|
1287
1431
|
msgstr "Host rimosso"
|
|
1288
1432
|
|
|
1289
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1433
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1290
1434
|
msgid "Could not delete the host"
|
|
1291
1435
|
msgstr "Impossibile rimuovere l'host"
|
|
1292
1436
|
|
|
1293
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1437
|
+
#: ../lib/hammer_cli_foreman/host.rb:264
|
|
1294
1438
|
msgid "Create or update parameter for a host."
|
|
1295
1439
|
msgstr "Creare o aggiornare il parametro per un host."
|
|
1296
1440
|
|
|
1297
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1441
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
|
1298
1442
|
msgid "Host parameter updated"
|
|
1299
1443
|
msgstr "Parametro host aggiornato"
|
|
1300
1444
|
|
|
1301
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1445
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1302
1446
|
msgid "New host parameter created"
|
|
1303
1447
|
msgstr "Creato nuovo parametro dell'host"
|
|
1304
1448
|
|
|
1305
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1449
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1306
1450
|
msgid "Could not set host parameter"
|
|
1307
1451
|
msgstr "Impossibile impostare il parametro dell'host"
|
|
1308
1452
|
|
|
1309
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1453
|
+
#: ../lib/hammer_cli_foreman/host.rb:280
|
|
1310
1454
|
msgid "Delete parameter for a host."
|
|
1311
1455
|
msgstr "Cancella il parametro per un host."
|
|
1312
1456
|
|
|
1313
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1457
|
+
#: ../lib/hammer_cli_foreman/host.rb:282
|
|
1314
1458
|
msgid "Host parameter deleted"
|
|
1315
1459
|
msgstr "Parametro host cancellato"
|
|
1316
1460
|
|
|
1317
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1461
|
+
#: ../lib/hammer_cli_foreman/host.rb:297
|
|
1318
1462
|
msgid "Power a host on"
|
|
1319
1463
|
msgstr "Attiva un host"
|
|
1320
1464
|
|
|
1321
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1465
|
+
#: ../lib/hammer_cli_foreman/host.rb:298
|
|
1322
1466
|
msgid "The host is starting."
|
|
1323
1467
|
msgstr "L'host è stato avviato."
|
|
1324
1468
|
|
|
1325
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1469
|
+
#: ../lib/hammer_cli_foreman/host.rb:315
|
|
1326
1470
|
msgid "Force turning off a host"
|
|
1327
1471
|
msgstr "Forza la disattivazione di un host."
|
|
1328
1472
|
|
|
1329
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1473
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
|
1330
1474
|
msgid "Power a host off"
|
|
1331
1475
|
msgstr "Disattiva un host"
|
|
1332
1476
|
|
|
1333
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1477
|
+
#: ../lib/hammer_cli_foreman/host.rb:332
|
|
1334
1478
|
msgid "Power off forced."
|
|
1335
1479
|
msgstr "Disattivazione forzata."
|
|
1336
1480
|
|
|
1337
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1481
|
+
#: ../lib/hammer_cli_foreman/host.rb:334
|
|
1338
1482
|
msgid "Powering the host off."
|
|
1339
1483
|
msgstr "Disattivazione host in corso."
|
|
1340
1484
|
|
|
1341
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1485
|
+
#: ../lib/hammer_cli_foreman/host.rb:351
|
|
1342
1486
|
msgid "Reboot a host"
|
|
1343
1487
|
msgstr "Riavvia un host"
|
|
1344
1488
|
|
|
1345
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1489
|
+
#: ../lib/hammer_cli_foreman/host.rb:352
|
|
1346
1490
|
msgid "Host reboot started."
|
|
1347
1491
|
msgstr "Riavvio host iniziato."
|
|
1348
1492
|
|
|
1349
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1493
|
+
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1350
1494
|
msgid "Rebuild orchestration related configurations for host"
|
|
1351
1495
|
msgstr ""
|
|
1352
1496
|
|
|
1353
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1497
|
+
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1354
1498
|
msgid "Configuration successfully rebuilt."
|
|
1355
1499
|
msgstr ""
|
|
1356
1500
|
|
|
@@ -1446,6 +1590,71 @@ msgstr "Cancella il parametro per un hostgroup."
|
|
|
1446
1590
|
msgid "Hostgroup parameter deleted"
|
|
1447
1591
|
msgstr "Parametro hostgroup cancellato"
|
|
1448
1592
|
|
|
1593
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:6
|
|
1594
|
+
msgid "Available keys for %{option}"
|
|
1595
|
+
msgstr ""
|
|
1596
|
+
|
|
1597
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:16
|
|
1598
|
+
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1599
|
+
msgstr ""
|
|
1600
|
+
|
|
1601
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:20 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:26 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:33
|
|
1602
|
+
msgid "For %{condition}"
|
|
1603
|
+
msgstr ""
|
|
1604
|
+
|
|
1605
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:22
|
|
1606
|
+
#, fuzzy
|
|
1607
|
+
msgid "VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virtual interfaces."
|
|
1608
|
+
msgstr "VLAN ID"
|
|
1609
|
+
|
|
1610
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:23
|
|
1611
|
+
#, fuzzy
|
|
1612
|
+
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1613
|
+
msgstr "Indetificatore"
|
|
1614
|
+
|
|
1615
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:29
|
|
1616
|
+
#, fuzzy
|
|
1617
|
+
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1618
|
+
msgstr "Indetificatore"
|
|
1619
|
+
|
|
1620
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:35
|
|
1621
|
+
#, fuzzy
|
|
1622
|
+
msgid "always IPMI"
|
|
1623
|
+
msgstr "IP"
|
|
1624
|
+
|
|
1625
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:42
|
|
1626
|
+
#, fuzzy
|
|
1627
|
+
msgid "Provider specific options"
|
|
1628
|
+
msgstr "Provider"
|
|
1629
|
+
|
|
1630
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:6
|
|
1631
|
+
msgid "Login of the owner"
|
|
1632
|
+
msgstr "Login del proprietario"
|
|
1633
|
+
|
|
1634
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:8
|
|
1635
|
+
msgid "ID of the owner"
|
|
1636
|
+
msgstr "ID del proprietario"
|
|
1637
|
+
|
|
1638
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:35
|
|
1639
|
+
msgid "Host parameters."
|
|
1640
|
+
msgstr "Parametri host"
|
|
1641
|
+
|
|
1642
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:37
|
|
1643
|
+
msgid "Compute resource attributes."
|
|
1644
|
+
msgstr "Attributi risorsa di colacolo."
|
|
1645
|
+
|
|
1646
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:39
|
|
1647
|
+
msgid "Volume parameters"
|
|
1648
|
+
msgstr "Parametri del volume"
|
|
1649
|
+
|
|
1650
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:41
|
|
1651
|
+
msgid "Interface parameters."
|
|
1652
|
+
msgstr "Parametri dell'interfaccia."
|
|
1653
|
+
|
|
1654
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:55
|
|
1655
|
+
msgid "Enter the root password for the host:"
|
|
1656
|
+
msgstr "Inserire la password root per l'host:"
|
|
1657
|
+
|
|
1449
1658
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1450
1659
|
msgid "Architecture name"
|
|
1451
1660
|
msgstr "Nome architettura"
|
|
@@ -1534,7 +1743,7 @@ msgstr "Nome parametro comune"
|
|
|
1534
1743
|
msgid "Smart class parameter name"
|
|
1535
1744
|
msgstr "Nome parametro classe smart"
|
|
1536
1745
|
|
|
1537
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
1746
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
1538
1747
|
msgid "Smart variable name"
|
|
1539
1748
|
msgstr ""
|
|
1540
1749
|
|
|
@@ -1640,7 +1849,7 @@ msgstr "BMC"
|
|
|
1640
1849
|
|
|
1641
1850
|
#: ../lib/hammer_cli_foreman/interface.rb:63
|
|
1642
1851
|
msgid "Bond"
|
|
1643
|
-
msgstr "
|
|
1852
|
+
msgstr "Bond"
|
|
1644
1853
|
|
|
1645
1854
|
#: ../lib/hammer_cli_foreman/interface.rb:64
|
|
1646
1855
|
msgid "Mode"
|
|
@@ -2080,55 +2289,65 @@ msgstr "Utenti"
|
|
|
2080
2289
|
msgid "User groups"
|
|
2081
2290
|
msgstr "Gruppi utenti"
|
|
2082
2291
|
|
|
2083
|
-
#: ../lib/hammer_cli_foreman/references.rb:42
|
|
2292
|
+
#: ../lib/hammer_cli_foreman/references.rb:35 ../lib/hammer_cli_foreman/references.rb:42
|
|
2293
|
+
#, fuzzy
|
|
2294
|
+
msgid "Usergroup"
|
|
2295
|
+
msgstr "Gruppi utenti"
|
|
2296
|
+
|
|
2297
|
+
#: ../lib/hammer_cli_foreman/references.rb:37 ../lib/hammer_cli_foreman/references.rb:44 ../lib/hammer_cli_foreman/references.rb:142
|
|
2298
|
+
msgid "Roles"
|
|
2299
|
+
msgstr "Ruoli"
|
|
2300
|
+
|
|
2301
|
+
#: ../lib/hammer_cli_foreman/references.rb:41
|
|
2302
|
+
#, fuzzy
|
|
2303
|
+
msgid "Inherited User groups"
|
|
2304
|
+
msgstr "Gruppi utenti"
|
|
2305
|
+
|
|
2306
|
+
#: ../lib/hammer_cli_foreman/references.rb:53
|
|
2084
2307
|
msgid "Smart proxies"
|
|
2085
2308
|
msgstr "Smart proxy"
|
|
2086
2309
|
|
|
2087
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2310
|
+
#: ../lib/hammer_cli_foreman/references.rb:61
|
|
2088
2311
|
msgid "Compute resources"
|
|
2089
2312
|
msgstr "Risorse di calcolo"
|
|
2090
2313
|
|
|
2091
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2314
|
+
#: ../lib/hammer_cli_foreman/references.rb:69
|
|
2092
2315
|
msgid "Installation media"
|
|
2093
2316
|
msgstr "Dispositivo d'installazione"
|
|
2094
2317
|
|
|
2095
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2318
|
+
#: ../lib/hammer_cli_foreman/references.rb:77
|
|
2096
2319
|
msgid "Templates"
|
|
2097
2320
|
msgstr "Modelli"
|
|
2098
2321
|
|
|
2099
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2322
|
+
#: ../lib/hammer_cli_foreman/references.rb:85
|
|
2100
2323
|
msgid "Domains"
|
|
2101
2324
|
msgstr "Domini"
|
|
2102
2325
|
|
|
2103
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2326
|
+
#: ../lib/hammer_cli_foreman/references.rb:93
|
|
2104
2327
|
msgid "Environments"
|
|
2105
2328
|
msgstr "Ambienti"
|
|
2106
2329
|
|
|
2107
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2330
|
+
#: ../lib/hammer_cli_foreman/references.rb:101
|
|
2108
2331
|
msgid "Hostgroups"
|
|
2109
2332
|
msgstr "Hostgroup"
|
|
2110
2333
|
|
|
2111
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2334
|
+
#: ../lib/hammer_cli_foreman/references.rb:109
|
|
2112
2335
|
msgid "Subnets"
|
|
2113
2336
|
msgstr "Sottoreti"
|
|
2114
2337
|
|
|
2115
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2338
|
+
#: ../lib/hammer_cli_foreman/references.rb:118
|
|
2116
2339
|
msgid "Parameters"
|
|
2117
2340
|
msgstr "Parametri"
|
|
2118
2341
|
|
|
2119
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2342
|
+
#: ../lib/hammer_cli_foreman/references.rb:126
|
|
2120
2343
|
msgid "Puppetclasses"
|
|
2121
2344
|
msgstr "Puppetclasses"
|
|
2122
2345
|
|
|
2123
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2346
|
+
#: ../lib/hammer_cli_foreman/references.rb:134
|
|
2124
2347
|
msgid "Operating systems"
|
|
2125
2348
|
msgstr "Sistemi operativi"
|
|
2126
2349
|
|
|
2127
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2128
|
-
msgid "Roles"
|
|
2129
|
-
msgstr "Ruoli"
|
|
2130
|
-
|
|
2131
|
-
#: ../lib/hammer_cli_foreman/references.rb:139
|
|
2350
|
+
#: ../lib/hammer_cli_foreman/references.rb:150
|
|
2132
2351
|
msgid "External user groups"
|
|
2133
2352
|
msgstr "Gruppi utenti esterni"
|
|
2134
2353
|
|
|
@@ -2228,43 +2447,35 @@ msgstr "Impossibile rimuovere il riporto"
|
|
|
2228
2447
|
msgid "The server does not support such operation."
|
|
2229
2448
|
msgstr "Il server non supporta questa operazione."
|
|
2230
2449
|
|
|
2231
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2450
|
+
#: ../lib/hammer_cli_foreman/role.rb:13
|
|
2232
2451
|
msgid "Builtin"
|
|
2233
2452
|
msgstr ""
|
|
2234
2453
|
|
|
2235
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2236
|
-
msgid "Yes"
|
|
2237
|
-
msgstr "Sì"
|
|
2238
|
-
|
|
2239
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2240
|
-
msgid "No"
|
|
2241
|
-
msgstr "No"
|
|
2242
|
-
|
|
2243
|
-
#: ../lib/hammer_cli_foreman/role.rb:36
|
|
2454
|
+
#: ../lib/hammer_cli_foreman/role.rb:32
|
|
2244
2455
|
msgid "User role id"
|
|
2245
2456
|
msgstr "ID ruolo utente"
|
|
2246
2457
|
|
|
2247
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2458
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
|
2248
2459
|
msgid "User role [%<name>s] created"
|
|
2249
2460
|
msgstr "Ruolo utente [%<name>s] creato"
|
|
2250
2461
|
|
|
2251
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2462
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
|
2252
2463
|
msgid "Could not create the user role"
|
|
2253
2464
|
msgstr "Impossibile creare il ruolo utente"
|
|
2254
2465
|
|
|
2255
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2466
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
|
2256
2467
|
msgid "User role [%<name>s] updated"
|
|
2257
2468
|
msgstr "Ruolo utente [%<name>s] aggiornato"
|
|
2258
2469
|
|
|
2259
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2470
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
|
2260
2471
|
msgid "Could not update the user role"
|
|
2261
2472
|
msgstr "Impossibile aggiornare il ruolo utente"
|
|
2262
2473
|
|
|
2263
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2474
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
|
2264
2475
|
msgid "User role [%<name>s] deleted"
|
|
2265
2476
|
msgstr "Ruolo utente [%<name>s] rimosso"
|
|
2266
2477
|
|
|
2267
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2478
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
|
2268
2479
|
msgid "Could not delete the user roles"
|
|
2269
2480
|
msgstr "Impossibile rimuovere questi ruoli utente"
|
|
2270
2481
|
|
|
@@ -2296,7 +2507,7 @@ msgstr "ID classe"
|
|
|
2296
2507
|
msgid "Hidden Value?"
|
|
2297
2508
|
msgstr ""
|
|
2298
2509
|
|
|
2299
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2510
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:79
|
|
2300
2511
|
#, fuzzy
|
|
2301
2512
|
msgid "Use puppet default"
|
|
2302
2513
|
msgstr "predefinito"
|
|
@@ -2333,11 +2544,11 @@ msgstr ""
|
|
|
2333
2544
|
msgid "Order"
|
|
2334
2545
|
msgstr "Ordine"
|
|
2335
2546
|
|
|
2336
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2547
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2337
2548
|
msgid "Values"
|
|
2338
2549
|
msgstr "Valori"
|
|
2339
2550
|
|
|
2340
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2551
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2341
2552
|
msgid "Match"
|
|
2342
2553
|
msgstr "Corrispondenza"
|
|
2343
2554
|
|
|
@@ -2361,29 +2572,27 @@ msgstr "Questo parametro è obbligatorio."
|
|
|
2361
2572
|
msgid "Type of the parameter."
|
|
2362
2573
|
msgstr "Tipo di parametro."
|
|
2363
2574
|
|
|
2364
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2575
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:92 ../lib/hammer_cli_foreman/smart_variable.rb:106
|
|
2365
2576
|
msgid "Type of the validator."
|
|
2366
2577
|
msgstr "Tipo di convalidatore."
|
|
2367
2578
|
|
|
2368
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2579
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:125
|
|
2369
2580
|
msgid "Override value created"
|
|
2370
2581
|
msgstr ""
|
|
2371
2582
|
|
|
2372
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2373
|
-
#, fuzzy
|
|
2583
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2374
2584
|
msgid "Could not create the override value"
|
|
2375
|
-
msgstr "
|
|
2585
|
+
msgstr ""
|
|
2376
2586
|
|
|
2377
2587
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2378
|
-
#, fuzzy
|
|
2379
2588
|
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2380
|
-
msgstr "
|
|
2589
|
+
msgstr ""
|
|
2381
2590
|
|
|
2382
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2591
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:138
|
|
2383
2592
|
msgid "Override value deleted"
|
|
2384
2593
|
msgstr ""
|
|
2385
2594
|
|
|
2386
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2595
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2387
2596
|
msgid "Could not delete the override value"
|
|
2388
2597
|
msgstr ""
|
|
2389
2598
|
|
|
@@ -2443,35 +2652,35 @@ msgstr "Aggiornamento funzionalità smart proxy fallito"
|
|
|
2443
2652
|
msgid "Variable"
|
|
2444
2653
|
msgstr ""
|
|
2445
2654
|
|
|
2446
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2655
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2447
2656
|
msgid "Use --variable instead"
|
|
2448
2657
|
msgstr ""
|
|
2449
2658
|
|
|
2450
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2659
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2451
2660
|
msgid "Smart variable [%{variable}] created"
|
|
2452
2661
|
msgstr ""
|
|
2453
2662
|
|
|
2454
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2663
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2455
2664
|
msgid "Could not create the smart variable"
|
|
2456
2665
|
msgstr ""
|
|
2457
2666
|
|
|
2458
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2667
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
|
|
2459
2668
|
msgid "Type of the variable."
|
|
2460
2669
|
msgstr ""
|
|
2461
2670
|
|
|
2462
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2671
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2463
2672
|
msgid "Smart variable [%{variable}] updated"
|
|
2464
2673
|
msgstr ""
|
|
2465
2674
|
|
|
2466
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2675
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2467
2676
|
msgid "Could not update the smart variable"
|
|
2468
2677
|
msgstr ""
|
|
2469
2678
|
|
|
2470
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2679
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:114
|
|
2471
2680
|
msgid "Smart variable [%{variable}] deleted"
|
|
2472
2681
|
msgstr ""
|
|
2473
2682
|
|
|
2474
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2683
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2475
2684
|
msgid "Could not delete the smart variable"
|
|
2476
2685
|
msgstr ""
|
|
2477
2686
|
|
|
@@ -2592,14 +2801,12 @@ msgid "Update the default PXE menu on all configured TFTP servers"
|
|
|
2592
2801
|
msgstr "Aggiorna il menu predefinito di PXE su tutti i server TFTP configurati"
|
|
2593
2802
|
|
|
2594
2803
|
#: ../lib/hammer_cli_foreman/template.rb:164
|
|
2595
|
-
#, fuzzy
|
|
2596
2804
|
msgid "Config template cloned"
|
|
2597
|
-
msgstr "
|
|
2805
|
+
msgstr ""
|
|
2598
2806
|
|
|
2599
2807
|
#: ../lib/hammer_cli_foreman/template.rb:165
|
|
2600
|
-
#, fuzzy
|
|
2601
2808
|
msgid "Could not clone the config template"
|
|
2602
|
-
msgstr "
|
|
2809
|
+
msgstr ""
|
|
2603
2810
|
|
|
2604
2811
|
#: ../lib/hammer_cli_foreman/user.rb:11
|
|
2605
2812
|
msgid "Login"
|
|
@@ -2633,39 +2840,39 @@ msgstr "Fuso orario"
|
|
|
2633
2840
|
msgid "Last login"
|
|
2634
2841
|
msgstr "Ultima registrazione"
|
|
2635
2842
|
|
|
2636
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2843
|
+
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2637
2844
|
msgid "Default organization"
|
|
2638
2845
|
msgstr "Organizzazione predefinita"
|
|
2639
2846
|
|
|
2640
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2847
|
+
#: ../lib/hammer_cli_foreman/user.rb:36
|
|
2641
2848
|
msgid "Default location"
|
|
2642
2849
|
msgstr "Località predefinita"
|
|
2643
2850
|
|
|
2644
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2851
|
+
#: ../lib/hammer_cli_foreman/user.rb:44 ../lib/hammer_cli_foreman/user.rb:45
|
|
2645
2852
|
msgid "default"
|
|
2646
2853
|
msgstr "predefinito"
|
|
2647
2854
|
|
|
2648
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2855
|
+
#: ../lib/hammer_cli_foreman/user.rb:56
|
|
2649
2856
|
msgid "User [%{login}] created"
|
|
2650
2857
|
msgstr ""
|
|
2651
2858
|
|
|
2652
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2859
|
+
#: ../lib/hammer_cli_foreman/user.rb:57
|
|
2653
2860
|
msgid "Could not create the user"
|
|
2654
2861
|
msgstr "Impossibile creare l'utente"
|
|
2655
2862
|
|
|
2656
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2863
|
+
#: ../lib/hammer_cli_foreman/user.rb:64
|
|
2657
2864
|
msgid "User [%{login}] updated"
|
|
2658
2865
|
msgstr ""
|
|
2659
2866
|
|
|
2660
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2867
|
+
#: ../lib/hammer_cli_foreman/user.rb:65
|
|
2661
2868
|
msgid "Could not update the user"
|
|
2662
2869
|
msgstr "Impossibile aggiornare l'utente"
|
|
2663
2870
|
|
|
2664
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2871
|
+
#: ../lib/hammer_cli_foreman/user.rb:72
|
|
2665
2872
|
msgid "User [%{login}] deleted"
|
|
2666
2873
|
msgstr ""
|
|
2667
2874
|
|
|
2668
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2875
|
+
#: ../lib/hammer_cli_foreman/user.rb:73
|
|
2669
2876
|
msgid "Could not delete the user"
|
|
2670
2877
|
msgstr "Impossibile cancellare l'utente"
|
|
2671
2878
|
|
|
@@ -2692,3 +2899,11 @@ msgstr "Gruppo utenti [%<name>s] rimosso"
|
|
|
2692
2899
|
#: ../lib/hammer_cli_foreman/usergroup.rb:47
|
|
2693
2900
|
msgid "Could not delete the user group"
|
|
2694
2901
|
msgstr "Impossibile cancellare il gruppo di utenti"
|
|
2902
|
+
|
|
2903
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2904
|
+
#~ msgid "Yes"
|
|
2905
|
+
#~ msgstr "Sì"
|
|
2906
|
+
|
|
2907
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2908
|
+
#~ msgid "No"
|
|
2909
|
+
#~ msgstr "No"
|