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
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
# This file is distributed under the same license as the hammer-cli-foreman package.
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
|
+
# Cha'gara Casanova <jlozada2426@gmail.com>, 2016
|
|
6
7
|
# Dominic Cleal <dominic@cleal.org>, 2014
|
|
7
8
|
# elobato <elobatocs@gmail.com>, 2014
|
|
8
9
|
# elobato <elobatocs@gmail.com>, 2014
|
|
@@ -11,11 +12,11 @@
|
|
|
11
12
|
# Sergio Ocón <sergio.ocon@redhat.com>, 2014
|
|
12
13
|
msgid ""
|
|
13
14
|
msgstr ""
|
|
14
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
15
|
+
"Project-Id-Version: hammer-cli-foreman 0.8.0\n"
|
|
15
16
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date: 2016-
|
|
17
|
-
"PO-Revision-Date: 2016-
|
|
18
|
-
"Last-Translator:
|
|
17
|
+
"POT-Creation-Date: 2016-12-15 22:40+0100\n"
|
|
18
|
+
"PO-Revision-Date: 2016-08-22 15:08+0000\n"
|
|
19
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
|
19
20
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
|
20
21
|
"\n"
|
|
21
22
|
"MIME-Version: 1.0\n"
|
|
@@ -24,124 +25,168 @@ msgstr ""
|
|
|
24
25
|
"Language: es\n"
|
|
25
26
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
26
27
|
|
|
27
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
28
|
+
#: ../lib/hammer_cli_foreman.rb:31
|
|
28
29
|
msgid "Foreman connection login/logout."
|
|
29
30
|
msgstr "Ingresar/Salir de la conexión de Foreman"
|
|
30
31
|
|
|
31
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
32
|
+
#: ../lib/hammer_cli_foreman.rb:35
|
|
32
33
|
msgid "Manipulate architectures."
|
|
33
34
|
msgstr "Manipular arquitecturas."
|
|
34
35
|
|
|
35
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
36
|
+
#: ../lib/hammer_cli_foreman.rb:39
|
|
36
37
|
msgid "Manipulate auth sources."
|
|
37
38
|
msgstr "Manipular las fuentes de autenticación."
|
|
38
39
|
|
|
39
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
40
|
+
#: ../lib/hammer_cli_foreman.rb:43
|
|
40
41
|
msgid "Manipulate compute resources."
|
|
41
42
|
msgstr "Manipular recursos de cómputo."
|
|
42
43
|
|
|
43
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
44
|
+
#: ../lib/hammer_cli_foreman.rb:47
|
|
44
45
|
msgid "Manipulate domains."
|
|
45
46
|
msgstr "Manipular dominios."
|
|
46
47
|
|
|
47
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
48
|
+
#: ../lib/hammer_cli_foreman.rb:51
|
|
48
49
|
msgid "Manipulate environments."
|
|
49
50
|
msgstr "Manipular entornos."
|
|
50
51
|
|
|
51
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
52
|
+
#: ../lib/hammer_cli_foreman.rb:55
|
|
52
53
|
msgid "Search facts."
|
|
53
54
|
msgstr "Buscar datos."
|
|
54
55
|
|
|
55
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
56
|
+
#: ../lib/hammer_cli_foreman.rb:59
|
|
56
57
|
msgid "Manage permission filters."
|
|
57
58
|
msgstr "Administrar filtros de permisos."
|
|
58
59
|
|
|
59
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
60
|
+
#: ../lib/hammer_cli_foreman.rb:63
|
|
60
61
|
msgid "Manipulate hosts."
|
|
61
62
|
msgstr "Manipular hosts."
|
|
62
63
|
|
|
63
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
64
|
+
#: ../lib/hammer_cli_foreman.rb:67
|
|
64
65
|
msgid "Manipulate hostgroups."
|
|
65
66
|
msgstr "Manipular grupos de hosts."
|
|
66
67
|
|
|
67
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
68
|
+
#: ../lib/hammer_cli_foreman.rb:71
|
|
68
69
|
msgid "Manipulate locations."
|
|
69
70
|
msgstr "Manipular ubicaciones."
|
|
70
71
|
|
|
71
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
72
|
+
#: ../lib/hammer_cli_foreman.rb:75
|
|
72
73
|
msgid "Manipulate installation media."
|
|
73
74
|
msgstr "Manipular el medio de instalación."
|
|
74
75
|
|
|
75
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
76
|
+
#: ../lib/hammer_cli_foreman.rb:79
|
|
76
77
|
msgid "Manipulate hardware models."
|
|
77
78
|
msgstr "Manipular modelos de hardware."
|
|
78
79
|
|
|
79
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
80
|
+
#: ../lib/hammer_cli_foreman.rb:83
|
|
80
81
|
msgid "Manipulate operating system."
|
|
81
82
|
msgstr "Manipular sistemas operativos"
|
|
82
83
|
|
|
83
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
84
|
+
#: ../lib/hammer_cli_foreman.rb:87
|
|
84
85
|
msgid "Manipulate organizations."
|
|
85
86
|
msgstr "Manipular organizaciones."
|
|
86
87
|
|
|
87
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
88
|
+
#: ../lib/hammer_cli_foreman.rb:91
|
|
88
89
|
msgid "Manipulate partition tables."
|
|
89
90
|
msgstr "Manipular tablas de particiones."
|
|
90
91
|
|
|
91
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
92
|
+
#: ../lib/hammer_cli_foreman.rb:95
|
|
92
93
|
msgid "Search puppet modules."
|
|
93
94
|
msgstr "Buscar módulos Puppet."
|
|
94
95
|
|
|
95
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
96
|
+
#: ../lib/hammer_cli_foreman.rb:99
|
|
96
97
|
msgid "Browse and read reports."
|
|
97
98
|
msgstr "Buscar y leer informes."
|
|
98
99
|
|
|
99
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
100
|
+
#: ../lib/hammer_cli_foreman.rb:103
|
|
100
101
|
msgid "Manage user roles."
|
|
101
102
|
msgstr "Administrar roles de usuario."
|
|
102
103
|
|
|
103
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
104
|
+
#: ../lib/hammer_cli_foreman.rb:107
|
|
104
105
|
msgid "Manipulate smart class parameters."
|
|
105
106
|
msgstr "Manipular parámetros de clase inteligente."
|
|
106
107
|
|
|
107
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
108
|
+
#: ../lib/hammer_cli_foreman.rb:111
|
|
108
109
|
msgid "Manipulate smart variables."
|
|
109
110
|
msgstr "Manipular variables inteligentes."
|
|
110
111
|
|
|
111
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
112
|
+
#: ../lib/hammer_cli_foreman.rb:115
|
|
112
113
|
msgid "Manipulate smart proxies."
|
|
113
114
|
msgstr "Manipular proxis inteligentes."
|
|
114
115
|
|
|
115
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
116
|
+
#: ../lib/hammer_cli_foreman.rb:119
|
|
116
117
|
#, fuzzy
|
|
117
118
|
msgid "Manipulate realms."
|
|
118
119
|
msgstr "Manipular dominios."
|
|
119
120
|
|
|
120
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
121
|
+
#: ../lib/hammer_cli_foreman.rb:123
|
|
121
122
|
msgid "Change server settings."
|
|
122
123
|
msgstr "Cambiar configuración del servidor."
|
|
123
124
|
|
|
124
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
125
|
+
#: ../lib/hammer_cli_foreman.rb:127
|
|
125
126
|
msgid "Manipulate subnets."
|
|
126
127
|
msgstr "Manipular subredes."
|
|
127
128
|
|
|
128
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
129
|
+
#: ../lib/hammer_cli_foreman.rb:131
|
|
129
130
|
msgid "Manipulate config templates."
|
|
130
131
|
msgstr "Manipular plantillas de configuración"
|
|
131
132
|
|
|
132
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
133
|
+
#: ../lib/hammer_cli_foreman.rb:135
|
|
133
134
|
msgid "Manipulate users."
|
|
134
135
|
msgstr "Manipular usuarios."
|
|
135
136
|
|
|
136
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
137
|
+
#: ../lib/hammer_cli_foreman.rb:139
|
|
137
138
|
msgid "Manage user groups."
|
|
138
139
|
msgstr "Administrar grupos de usuarios."
|
|
139
140
|
|
|
140
|
-
#: ../lib/hammer_cli_foreman/
|
|
141
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:15
|
|
142
|
+
#, fuzzy
|
|
143
|
+
msgid "Invalid username or password"
|
|
144
|
+
msgstr "usuario"
|
|
145
|
+
|
|
146
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:20
|
|
147
|
+
msgid "You are logged in as '%s'"
|
|
148
|
+
msgstr "Ha ingresado como '%s'"
|
|
149
|
+
|
|
150
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:22 ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:28
|
|
151
|
+
msgid "You are currently not logged in"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:33
|
|
155
|
+
msgid "[Foreman] Username: "
|
|
156
|
+
msgstr "[Foreman] Nombre de usuario: "
|
|
157
|
+
|
|
158
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:37
|
|
159
|
+
msgid "[Foreman] Password for %s: "
|
|
160
|
+
msgstr "[Foreman] Contraseña para %s: "
|
|
161
|
+
|
|
162
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:17
|
|
163
|
+
#, fuzzy
|
|
164
|
+
msgid "Can't use session auth due to invalid permissions on session files."
|
|
165
|
+
msgstr "archivo"
|
|
166
|
+
|
|
167
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:26
|
|
168
|
+
msgid "Session exist, currently logged in as '%s'"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
171
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:51
|
|
172
|
+
msgid "Session has expired"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
175
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:78
|
|
176
|
+
#, fuzzy
|
|
177
|
+
msgid "Invalid session file format"
|
|
178
|
+
msgstr "archivo"
|
|
179
|
+
|
|
180
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:106
|
|
181
|
+
#, fuzzy
|
|
182
|
+
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
183
|
+
msgstr "archivo"
|
|
184
|
+
|
|
185
|
+
#: ../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
|
|
141
186
|
msgid "Id"
|
|
142
187
|
msgstr "ID"
|
|
143
188
|
|
|
144
|
-
#: ../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:
|
|
189
|
+
#: ../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
|
|
145
190
|
msgid "Name"
|
|
146
191
|
msgstr "Nombre"
|
|
147
192
|
|
|
@@ -174,196 +219,168 @@ msgid "Associate a hostgroup"
|
|
|
174
219
|
msgstr "Asociar un grupo de hosts"
|
|
175
220
|
|
|
176
221
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:43
|
|
177
|
-
#, fuzzy
|
|
178
222
|
msgid "The hostgroup has been associated"
|
|
179
|
-
msgstr "El
|
|
223
|
+
msgstr "El group de host ha sido asociado"
|
|
180
224
|
|
|
181
225
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
182
|
-
#, fuzzy
|
|
183
226
|
msgid "Could not associate the hostgroup"
|
|
184
|
-
msgstr "No se pudo asociar el grupo de
|
|
227
|
+
msgstr "No se pudo asociar el grupo de host"
|
|
185
228
|
|
|
186
229
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
187
230
|
msgid "Disassociate a hostgroup"
|
|
188
231
|
msgstr "Disociar un grupo de hosts"
|
|
189
232
|
|
|
190
233
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
191
|
-
#, fuzzy
|
|
192
234
|
msgid "The hostgroup has been disassociated"
|
|
193
|
-
msgstr "El grupo de
|
|
235
|
+
msgstr "El grupo de host se ha desasociado"
|
|
194
236
|
|
|
195
237
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
196
|
-
#, fuzzy
|
|
197
238
|
msgid "Could not disassociate the hostgroup"
|
|
198
|
-
msgstr "No se pudo
|
|
239
|
+
msgstr "No se pudo asociar el grupo de host"
|
|
199
240
|
|
|
200
241
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
201
242
|
msgid "Associate an environment"
|
|
202
243
|
msgstr "Asociar un entorno"
|
|
203
244
|
|
|
204
245
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:63
|
|
205
|
-
#, fuzzy
|
|
206
246
|
msgid "The environment has been associated"
|
|
207
|
-
msgstr "El
|
|
247
|
+
msgstr "El ambiente fue desasociado"
|
|
208
248
|
|
|
209
249
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
210
|
-
#, fuzzy
|
|
211
250
|
msgid "Could not associate the environment"
|
|
212
|
-
msgstr "No se pudo
|
|
251
|
+
msgstr "No se pudo asociar el ambiente."
|
|
213
252
|
|
|
214
253
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
215
254
|
msgid "Disassociate an environment"
|
|
216
255
|
msgstr "Disociar un entorno"
|
|
217
256
|
|
|
218
257
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:71
|
|
219
|
-
#, fuzzy
|
|
220
258
|
msgid "The environment has been disassociated"
|
|
221
|
-
msgstr "El
|
|
259
|
+
msgstr "El ambiente fue desasociado"
|
|
222
260
|
|
|
223
261
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
224
|
-
#, fuzzy
|
|
225
262
|
msgid "Could not disassociate the environment"
|
|
226
|
-
msgstr "No se pudo
|
|
263
|
+
msgstr "No se pudo asociar el ambiente"
|
|
227
264
|
|
|
228
265
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
229
266
|
msgid "Associate a domain"
|
|
230
267
|
msgstr "Asociar un dominio"
|
|
231
268
|
|
|
232
269
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:83
|
|
233
|
-
#, fuzzy
|
|
234
270
|
msgid "The domain has been associated"
|
|
235
|
-
msgstr "El
|
|
271
|
+
msgstr "El dominio fue asociado"
|
|
236
272
|
|
|
237
273
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
238
|
-
#, fuzzy
|
|
239
274
|
msgid "Could not associate the domain"
|
|
240
|
-
msgstr "No se pudo asociar el
|
|
275
|
+
msgstr "No se pudo asociar el dominio"
|
|
241
276
|
|
|
242
277
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
243
278
|
msgid "Disassociate a domain"
|
|
244
279
|
msgstr "Disociar un dominio"
|
|
245
280
|
|
|
246
281
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
247
|
-
#, fuzzy
|
|
248
282
|
msgid "The domain has been disassociated"
|
|
249
|
-
msgstr "El
|
|
283
|
+
msgstr "El dominio fue desasociado"
|
|
250
284
|
|
|
251
285
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
252
|
-
#, fuzzy
|
|
253
286
|
msgid "Could not disassociate the domain"
|
|
254
|
-
msgstr "No se pudo
|
|
287
|
+
msgstr "No se pudo disociar el dominio"
|
|
255
288
|
|
|
256
289
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
257
290
|
msgid "Associate a medium"
|
|
258
291
|
msgstr "Asociar un medio"
|
|
259
292
|
|
|
260
293
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
261
|
-
#, fuzzy
|
|
262
294
|
msgid "The medium has been associated"
|
|
263
|
-
msgstr "El
|
|
295
|
+
msgstr "El medio fue asociado"
|
|
264
296
|
|
|
265
297
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
266
|
-
#, fuzzy
|
|
267
298
|
msgid "Could not associate the medium"
|
|
268
|
-
msgstr "
|
|
299
|
+
msgstr "El medio no se pudo ser asociado"
|
|
269
300
|
|
|
270
301
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
271
302
|
msgid "Disassociate a medium"
|
|
272
303
|
msgstr "Disociar un medio"
|
|
273
304
|
|
|
274
305
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
275
|
-
#, fuzzy
|
|
276
306
|
msgid "The medium has been disassociated"
|
|
277
|
-
msgstr "El
|
|
307
|
+
msgstr "El medio fue desasociado"
|
|
278
308
|
|
|
279
309
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
280
|
-
#, fuzzy
|
|
281
310
|
msgid "Could not disassociate the medium"
|
|
282
|
-
msgstr "No se pudo
|
|
311
|
+
msgstr "No se pudo disociar el medio"
|
|
283
312
|
|
|
284
313
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
285
314
|
msgid "Associate a subnet"
|
|
286
315
|
msgstr "Asociar una subred"
|
|
287
316
|
|
|
288
317
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
289
|
-
#, fuzzy
|
|
290
318
|
msgid "The subnet has been associated"
|
|
291
|
-
msgstr "El
|
|
319
|
+
msgstr "El subred fue desasociado"
|
|
292
320
|
|
|
293
321
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
294
|
-
#, fuzzy
|
|
295
322
|
msgid "Could not associate the subnet"
|
|
296
|
-
msgstr "No se pudo asociar
|
|
323
|
+
msgstr "No se pudo asociar la subred"
|
|
297
324
|
|
|
298
325
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
299
326
|
msgid "Disassociate a subnet"
|
|
300
327
|
msgstr "Disociar una subred"
|
|
301
328
|
|
|
302
329
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
303
|
-
#, fuzzy
|
|
304
330
|
msgid "The subnet has been disassociated"
|
|
305
|
-
msgstr "El
|
|
331
|
+
msgstr "El subred fue desasociado"
|
|
306
332
|
|
|
307
333
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
308
|
-
#, fuzzy
|
|
309
334
|
msgid "Could not disassociate the subnet"
|
|
310
|
-
msgstr "No se pudo desasociar el
|
|
335
|
+
msgstr "No se pudo desasociar el subred"
|
|
311
336
|
|
|
312
337
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
313
338
|
msgid "Associate a compute resource"
|
|
314
339
|
msgstr "Asociar un recurso de cómputo"
|
|
315
340
|
|
|
316
341
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:143
|
|
317
|
-
#, fuzzy
|
|
318
342
|
msgid "The compute resource has been associated"
|
|
319
|
-
msgstr "El
|
|
343
|
+
msgstr "El recurso de computar fue asociado"
|
|
320
344
|
|
|
321
345
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
322
|
-
#, fuzzy
|
|
323
346
|
msgid "Could not associate the compute resource"
|
|
324
|
-
msgstr "No se pudo
|
|
347
|
+
msgstr "No se pudo asociar el recurso de cómputo"
|
|
325
348
|
|
|
326
349
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
327
350
|
msgid "Disassociate a compute resource"
|
|
328
351
|
msgstr "Disociar un recurso de cómputo"
|
|
329
352
|
|
|
330
353
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:151
|
|
331
|
-
#, fuzzy
|
|
332
354
|
msgid "The compute resource has been disassociated"
|
|
333
|
-
msgstr "El
|
|
355
|
+
msgstr "El recurso de computar desasociado"
|
|
334
356
|
|
|
335
357
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
336
|
-
#, fuzzy
|
|
337
358
|
msgid "Could not disassociate the compute resource"
|
|
338
|
-
msgstr "No se pudo
|
|
359
|
+
msgstr "No se pudo desasociar el recurso de computar"
|
|
339
360
|
|
|
340
361
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
341
362
|
msgid "Associate a smart proxy"
|
|
342
363
|
msgstr "Asociar un proxy inteligente"
|
|
343
364
|
|
|
344
365
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:163
|
|
345
|
-
#, fuzzy
|
|
346
366
|
msgid "The smart proxy has been associated"
|
|
347
|
-
msgstr "El
|
|
367
|
+
msgstr "El proxy inteligente fue asociado"
|
|
348
368
|
|
|
349
369
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
350
|
-
#, fuzzy
|
|
351
370
|
msgid "Could not associate the smart proxy"
|
|
352
|
-
msgstr "No se pudo asociar el
|
|
371
|
+
msgstr "No se pudo asociar el proxy inteligente"
|
|
353
372
|
|
|
354
373
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
355
374
|
msgid "Disassociate a smart proxy"
|
|
356
375
|
msgstr "Disociar un proxy inteligente"
|
|
357
376
|
|
|
358
377
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:175
|
|
359
|
-
#, fuzzy
|
|
360
378
|
msgid "The smart proxy has been disassociated"
|
|
361
|
-
msgstr "El
|
|
379
|
+
msgstr "El proxy inteligente fue desasociado"
|
|
362
380
|
|
|
363
381
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
364
|
-
#, fuzzy
|
|
365
382
|
msgid "Could not disassociate the smart proxy"
|
|
366
|
-
msgstr "No se pudo desasociar el
|
|
383
|
+
msgstr "No se pudo desasociar el proxy inteligente"
|
|
367
384
|
|
|
368
385
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
369
386
|
msgid "Associate an user"
|
|
@@ -379,11 +396,11 @@ msgstr "No se pudo asociar el usuario"
|
|
|
379
396
|
|
|
380
397
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:197
|
|
381
398
|
msgid "Disassociate an user"
|
|
382
|
-
msgstr "
|
|
399
|
+
msgstr "Desasociar un usuario"
|
|
383
400
|
|
|
384
401
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:199
|
|
385
402
|
msgid "The user has been disassociated"
|
|
386
|
-
msgstr "El usuario
|
|
403
|
+
msgstr "El usuario ha sido desasociado"
|
|
387
404
|
|
|
388
405
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:200
|
|
389
406
|
msgid "Could not disassociate the user"
|
|
@@ -403,11 +420,11 @@ msgstr "No se pudo asociar el grupo de usuario"
|
|
|
403
420
|
|
|
404
421
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:219
|
|
405
422
|
msgid "Disassociate an user group"
|
|
406
|
-
msgstr "
|
|
423
|
+
msgstr "Desasociar un grupo de usuarios"
|
|
407
424
|
|
|
408
425
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:223
|
|
409
426
|
msgid "The user group has been disassociated"
|
|
410
|
-
msgstr "El grupo de usuario
|
|
427
|
+
msgstr "El grupo de usuario ha sido desasociado"
|
|
411
428
|
|
|
412
429
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:224
|
|
413
430
|
msgid "Could not disassociate the user group"
|
|
@@ -419,25 +436,23 @@ msgstr "Asociar una plantilla de configuración"
|
|
|
419
436
|
|
|
420
437
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:235
|
|
421
438
|
msgid "The configuration template has been associated"
|
|
422
|
-
msgstr ""
|
|
439
|
+
msgstr "La configuración de la plantilla fue asociada"
|
|
423
440
|
|
|
424
441
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
425
|
-
#, fuzzy
|
|
426
442
|
msgid "Could not associate the configuration template"
|
|
427
|
-
msgstr "
|
|
443
|
+
msgstr "No se pudo asociar la configuración de la plantilla"
|
|
428
444
|
|
|
429
445
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
430
446
|
msgid "Disassociate a configuration template"
|
|
431
|
-
msgstr "
|
|
447
|
+
msgstr "Desasociar una plantilla de configuración"
|
|
432
448
|
|
|
433
449
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:243
|
|
434
450
|
msgid "The configuration template has been disassociated"
|
|
435
|
-
msgstr ""
|
|
451
|
+
msgstr "La plantilla de configuración fue desasociada"
|
|
436
452
|
|
|
437
453
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
438
|
-
#, fuzzy
|
|
439
454
|
msgid "Could not disassociate the configuration template"
|
|
440
|
-
msgstr "No se
|
|
455
|
+
msgstr "No se pudo disociar la plantilla de configuración"
|
|
441
456
|
|
|
442
457
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
443
458
|
msgid "Associate an organization"
|
|
@@ -445,26 +460,23 @@ msgstr "Asociar una organización"
|
|
|
445
460
|
|
|
446
461
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:255
|
|
447
462
|
msgid "The organization has been associated"
|
|
448
|
-
msgstr ""
|
|
463
|
+
msgstr "La organización fue asociada"
|
|
449
464
|
|
|
450
465
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
451
|
-
#, fuzzy
|
|
452
466
|
msgid "Could not associate the organization"
|
|
453
|
-
msgstr "No se pudo
|
|
467
|
+
msgstr "No se pudo asociar la organización"
|
|
454
468
|
|
|
455
469
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
456
470
|
msgid "Disassociate an organization"
|
|
457
|
-
msgstr "
|
|
471
|
+
msgstr "Desasociar una organización"
|
|
458
472
|
|
|
459
473
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:263
|
|
460
|
-
#, fuzzy
|
|
461
474
|
msgid "The organization has been disassociated"
|
|
462
|
-
msgstr "
|
|
475
|
+
msgstr "La organización fue desasociada"
|
|
463
476
|
|
|
464
477
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
465
|
-
#, fuzzy
|
|
466
478
|
msgid "Could not disassociate the organization"
|
|
467
|
-
msgstr "No se pudo
|
|
479
|
+
msgstr "No se pudo desasociar la organización"
|
|
468
480
|
|
|
469
481
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
470
482
|
msgid "Associate an operating system"
|
|
@@ -472,7 +484,7 @@ msgstr "Asociar un sistema operativo"
|
|
|
472
484
|
|
|
473
485
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:275
|
|
474
486
|
msgid "Operating system has been associated"
|
|
475
|
-
msgstr "
|
|
487
|
+
msgstr "Ha sido asociado el sistema operativo"
|
|
476
488
|
|
|
477
489
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:276
|
|
478
490
|
msgid "Could not associate the operating system"
|
|
@@ -480,15 +492,15 @@ msgstr "No se pudo asociar el sistema operativo"
|
|
|
480
492
|
|
|
481
493
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:282
|
|
482
494
|
msgid "Disassociate an operating system"
|
|
483
|
-
msgstr "
|
|
495
|
+
msgstr "Desasociar un sistema operativo"
|
|
484
496
|
|
|
485
497
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:284
|
|
486
498
|
msgid "Operating system has been disassociated"
|
|
487
|
-
msgstr "
|
|
499
|
+
msgstr "Ha sido desasociado el sistema operativo"
|
|
488
500
|
|
|
489
501
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:285
|
|
490
502
|
msgid "Could not disassociate the operating system"
|
|
491
|
-
msgstr "No se pudo
|
|
503
|
+
msgstr "No se pudo desasociar el sistema operativo"
|
|
492
504
|
|
|
493
505
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:294
|
|
494
506
|
msgid "Associate an architecture"
|
|
@@ -504,15 +516,15 @@ msgstr "No se pudo asociar la arquitectura"
|
|
|
504
516
|
|
|
505
517
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:303
|
|
506
518
|
msgid "Disassociate an architecture"
|
|
507
|
-
msgstr "
|
|
519
|
+
msgstr "Desasociar una arquitectura"
|
|
508
520
|
|
|
509
521
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:305
|
|
510
522
|
msgid "Architecture has been disassociated"
|
|
511
|
-
msgstr "Se ha
|
|
523
|
+
msgstr "Se ha desasociado la arquitectura"
|
|
512
524
|
|
|
513
525
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:306
|
|
514
526
|
msgid "Could not disassociate the architecture"
|
|
515
|
-
msgstr "No se pudo
|
|
527
|
+
msgstr "No se pudo desasociar la arquitectura"
|
|
516
528
|
|
|
517
529
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:315
|
|
518
530
|
msgid "Associate a partition table"
|
|
@@ -528,15 +540,15 @@ msgstr "No se pudo asociar la tabla de particiones"
|
|
|
528
540
|
|
|
529
541
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:324
|
|
530
542
|
msgid "Disassociate a partition table"
|
|
531
|
-
msgstr "
|
|
543
|
+
msgstr "Desasociar una tabla de particiones"
|
|
532
544
|
|
|
533
545
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:326
|
|
534
546
|
msgid "Partition table has been disassociated"
|
|
535
|
-
msgstr "Se ha
|
|
547
|
+
msgstr "Se ha desasociado la tabla de particiones"
|
|
536
548
|
|
|
537
549
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:327
|
|
538
550
|
msgid "Could not disassociate the partition table"
|
|
539
|
-
msgstr "No se ha podido
|
|
551
|
+
msgstr "No se ha podido desasociar la tabla de particiones"
|
|
540
552
|
|
|
541
553
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:336
|
|
542
554
|
msgid "Assign a user role"
|
|
@@ -570,12 +582,12 @@ msgstr "Asociar un dominio"
|
|
|
570
582
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:359
|
|
571
583
|
#, fuzzy
|
|
572
584
|
msgid "The location has been associated"
|
|
573
|
-
msgstr "El
|
|
585
|
+
msgstr "El dominio fue asociado"
|
|
574
586
|
|
|
575
587
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:360
|
|
576
588
|
#, fuzzy
|
|
577
589
|
msgid "Could not associate the location"
|
|
578
|
-
msgstr "No se pudo
|
|
590
|
+
msgstr "No se pudo asociar el dominio"
|
|
579
591
|
|
|
580
592
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:365
|
|
581
593
|
#, fuzzy
|
|
@@ -585,41 +597,42 @@ msgstr "Disociar un dominio"
|
|
|
585
597
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:367
|
|
586
598
|
#, fuzzy
|
|
587
599
|
msgid "The location has been disassociated"
|
|
588
|
-
msgstr "El
|
|
600
|
+
msgstr "El dominio fue desasociado"
|
|
589
601
|
|
|
590
602
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:368
|
|
591
603
|
#, fuzzy
|
|
592
604
|
msgid "Could not disassociate the location"
|
|
593
|
-
msgstr "No se pudo
|
|
605
|
+
msgstr "No se pudo disociar el dominio"
|
|
594
606
|
|
|
595
607
|
#: ../lib/hammer_cli_foreman/auth.rb:7
|
|
596
608
|
msgid "Set credentials"
|
|
597
609
|
msgstr "Establecer credenciales"
|
|
598
610
|
|
|
599
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
611
|
+
#: ../lib/hammer_cli_foreman/auth.rb:9
|
|
612
|
+
#, fuzzy
|
|
613
|
+
msgid "username to access the remote system"
|
|
614
|
+
msgstr "usuario"
|
|
615
|
+
|
|
616
|
+
#: ../lib/hammer_cli_foreman/auth.rb:10
|
|
617
|
+
msgid "password to access the remote system"
|
|
618
|
+
msgstr ""
|
|
619
|
+
|
|
620
|
+
#: ../lib/hammer_cli_foreman/auth.rb:22
|
|
621
|
+
msgid "Successfully logged in."
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
#: ../lib/hammer_cli_foreman/auth.rb:29
|
|
600
625
|
msgid "Wipe your credentials"
|
|
601
626
|
msgstr "Borrar credenciales"
|
|
602
627
|
|
|
603
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
628
|
+
#: ../lib/hammer_cli_foreman/auth.rb:34
|
|
604
629
|
msgid "Credentials deleted."
|
|
605
630
|
msgstr "Se han borrado las credenciales."
|
|
606
631
|
|
|
607
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
632
|
+
#: ../lib/hammer_cli_foreman/auth.rb:41
|
|
608
633
|
msgid "Information about current connections"
|
|
609
634
|
msgstr "Información sobre conexiones vigentes"
|
|
610
635
|
|
|
611
|
-
#: ../lib/hammer_cli_foreman/auth.rb:37
|
|
612
|
-
msgid "You are logged in as '%s'"
|
|
613
|
-
msgstr "Ha ingresado como '%s'"
|
|
614
|
-
|
|
615
|
-
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
616
|
-
msgid ""
|
|
617
|
-
"You are currently not logged in to any service.\n"
|
|
618
|
-
"Use the service to set credentials."
|
|
619
|
-
msgstr ""
|
|
620
|
-
"Actualmente no estás identificado en ningún servicio.\n"
|
|
621
|
-
"Utiliza el servicio para establecer las credenciales."
|
|
622
|
-
|
|
623
636
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
624
637
|
msgid "Manage LDAP auth sources."
|
|
625
638
|
msgstr "Administrar fuentes de autenticación LDAP"
|
|
@@ -696,48 +709,47 @@ msgstr "Se actualizó fuente de autenticación"
|
|
|
696
709
|
msgid "Could not update the Auth Source"
|
|
697
710
|
msgstr "No se pudo actualizar fuente de autenticación"
|
|
698
711
|
|
|
699
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
712
|
+
#: ../lib/hammer_cli_foreman/commands.rb:56
|
|
700
713
|
msgid "Received data of unknown format"
|
|
701
714
|
msgstr "Se ha recibido dato en formato desconocido"
|
|
702
715
|
|
|
703
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
716
|
+
#: ../lib/hammer_cli_foreman/commands.rb:164
|
|
704
717
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
705
718
|
msgstr "No se encontró %{resource}. Faltaron algunas opciones de búsqueda, por favor, consulte --help."
|
|
706
719
|
|
|
707
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
720
|
+
#: ../lib/hammer_cli_foreman/commands.rb:166
|
|
708
721
|
msgid "Could not find %{resource}, please set option %{switches}."
|
|
709
722
|
msgstr "No se pudo encontrar %{resource}, por favor establezca la opción %{switches}."
|
|
710
723
|
|
|
711
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
724
|
+
#: ../lib/hammer_cli_foreman/commands.rb:168
|
|
712
725
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
713
726
|
msgstr "No se pudo encontrar %{resource}, por favor establezca una de las opciones %{switches}."
|
|
714
727
|
|
|
715
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
728
|
+
#: ../lib/hammer_cli_foreman/commands.rb:497
|
|
716
729
|
msgid "Associate a resource"
|
|
717
730
|
msgstr "Asociar un recurso"
|
|
718
731
|
|
|
719
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
732
|
+
#: ../lib/hammer_cli_foreman/commands.rb:501
|
|
720
733
|
msgid "Could not associate the %{resource_name}"
|
|
721
|
-
msgstr ""
|
|
734
|
+
msgstr "No se pudo asociar el %{recurso_nombre}"
|
|
722
735
|
|
|
723
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
736
|
+
#: ../lib/hammer_cli_foreman/commands.rb:505
|
|
724
737
|
msgid "The %{resource_name} has been associated"
|
|
725
|
-
msgstr ""
|
|
738
|
+
msgstr "El %{recurso_nombre} fue asociado"
|
|
726
739
|
|
|
727
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
740
|
+
#: ../lib/hammer_cli_foreman/commands.rb:527
|
|
728
741
|
msgid "Disassociate a resource"
|
|
729
742
|
msgstr "Disociar un recurso"
|
|
730
743
|
|
|
731
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
732
|
-
#, fuzzy
|
|
744
|
+
#: ../lib/hammer_cli_foreman/commands.rb:539
|
|
733
745
|
msgid "Could not disassociate the %{resource_name}"
|
|
734
|
-
msgstr "No se pudo
|
|
746
|
+
msgstr "No se pudo desasociar el %{recurso_nombre}"
|
|
735
747
|
|
|
736
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
748
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
|
737
749
|
msgid "The %{resource_name} has been disassociated"
|
|
738
|
-
msgstr ""
|
|
750
|
+
msgstr "El %{recurso_nombre} fue desasociado"
|
|
739
751
|
|
|
740
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
|
752
|
+
#: ../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
|
|
741
753
|
msgid "Value"
|
|
742
754
|
msgstr "Valor"
|
|
743
755
|
|
|
@@ -777,9 +789,9 @@ msgstr "Manipular parámetros globales."
|
|
|
777
789
|
msgid "Provider"
|
|
778
790
|
msgstr "Proveedor"
|
|
779
791
|
|
|
780
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
781
|
-
msgid "
|
|
782
|
-
msgstr "
|
|
792
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
793
|
+
msgid "Datacenter"
|
|
794
|
+
msgstr ""
|
|
783
795
|
|
|
784
796
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
785
797
|
msgid "Region"
|
|
@@ -797,7 +809,7 @@ msgstr "Inquilino"
|
|
|
797
809
|
msgid "Url"
|
|
798
810
|
msgstr "Url"
|
|
799
811
|
|
|
800
|
-
#: ../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
|
|
812
|
+
#: ../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
|
|
801
813
|
msgid "Description"
|
|
802
814
|
msgstr "Descripción"
|
|
803
815
|
|
|
@@ -829,17 +841,159 @@ msgstr "Se borró el recurso de cómputo"
|
|
|
829
841
|
msgid "Could not delete the compute resource"
|
|
830
842
|
msgstr "No se pudo borrar el recurso de cómputo"
|
|
831
843
|
|
|
832
|
-
#: ../lib/hammer_cli_foreman/
|
|
833
|
-
msgid "
|
|
834
|
-
msgstr "
|
|
844
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb:6
|
|
845
|
+
msgid "EC2"
|
|
846
|
+
msgstr ""
|
|
835
847
|
|
|
836
|
-
#: ../lib/hammer_cli_foreman/
|
|
837
|
-
msgid "
|
|
838
|
-
msgstr "
|
|
848
|
+
#: ../lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb:6
|
|
849
|
+
msgid "GCE"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
852
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:6
|
|
853
|
+
msgid "Libvirt"
|
|
854
|
+
msgstr ""
|
|
855
|
+
|
|
856
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:12
|
|
857
|
+
msgid "Number of CPUs"
|
|
858
|
+
msgstr ""
|
|
859
|
+
|
|
860
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:13
|
|
861
|
+
msgid "String, amount of memory, value in bytes"
|
|
862
|
+
msgstr ""
|
|
863
|
+
|
|
864
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:14 ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:16
|
|
865
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
866
|
+
msgstr ""
|
|
867
|
+
|
|
868
|
+
#: ../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
|
|
869
|
+
msgid "Possible values: %s"
|
|
870
|
+
msgstr ""
|
|
871
|
+
|
|
872
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:20
|
|
873
|
+
#, fuzzy
|
|
874
|
+
msgid "Name of interface according to type"
|
|
875
|
+
msgstr "Nombre"
|
|
876
|
+
|
|
877
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:26
|
|
878
|
+
msgid "One of available storage pools"
|
|
879
|
+
msgstr ""
|
|
880
|
+
|
|
881
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:27
|
|
882
|
+
msgid "String value, eg. 10G"
|
|
883
|
+
msgstr ""
|
|
884
|
+
|
|
885
|
+
#: ../lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb:6
|
|
886
|
+
msgid "OpenStack"
|
|
887
|
+
msgstr ""
|
|
888
|
+
|
|
889
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:6
|
|
890
|
+
msgid "oVirt"
|
|
891
|
+
msgstr ""
|
|
892
|
+
|
|
893
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:13
|
|
894
|
+
#, fuzzy
|
|
895
|
+
msgid "Hardware profile to use"
|
|
896
|
+
msgstr "archivo"
|
|
897
|
+
|
|
898
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:14
|
|
899
|
+
msgid "Integer value, number of cores"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
902
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:15
|
|
903
|
+
msgid "Amount of memory, integer value in bytes"
|
|
904
|
+
msgstr ""
|
|
905
|
+
|
|
906
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:21
|
|
907
|
+
msgid "Eg. eth0"
|
|
908
|
+
msgstr ""
|
|
909
|
+
|
|
910
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:22
|
|
911
|
+
msgid "Select one of available networks for a cluster"
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
914
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:27
|
|
915
|
+
msgid "Volume size in GB, integer value"
|
|
916
|
+
msgstr ""
|
|
917
|
+
|
|
918
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:28
|
|
919
|
+
msgid "Select one of available storage domains"
|
|
920
|
+
msgstr ""
|
|
921
|
+
|
|
922
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:29
|
|
923
|
+
msgid "Boolean, only one volume can be bootable"
|
|
924
|
+
msgstr ""
|
|
925
|
+
|
|
926
|
+
#: ../lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb:6
|
|
927
|
+
msgid "Rackspace"
|
|
928
|
+
msgstr ""
|
|
929
|
+
|
|
930
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:15
|
|
931
|
+
msgid "VMWare"
|
|
932
|
+
msgstr ""
|
|
933
|
+
|
|
934
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:21
|
|
935
|
+
msgid "Cpu count"
|
|
936
|
+
msgstr ""
|
|
937
|
+
|
|
938
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:22
|
|
939
|
+
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
940
|
+
msgstr ""
|
|
941
|
+
|
|
942
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:23
|
|
943
|
+
msgid "Integer number, amount of memory in MB"
|
|
944
|
+
msgstr ""
|
|
945
|
+
|
|
946
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:24
|
|
947
|
+
msgid "Cluster id from VMware"
|
|
948
|
+
msgstr ""
|
|
949
|
+
|
|
950
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:25
|
|
951
|
+
#, fuzzy
|
|
952
|
+
msgid "Path to folder"
|
|
953
|
+
msgstr "Ruta"
|
|
954
|
+
|
|
955
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:26
|
|
956
|
+
msgid "Guest OS id form VMware"
|
|
957
|
+
msgstr ""
|
|
958
|
+
|
|
959
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:27
|
|
960
|
+
#, fuzzy
|
|
961
|
+
msgid "Id of the controller from VMware"
|
|
962
|
+
msgstr "ID"
|
|
963
|
+
|
|
964
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:28
|
|
965
|
+
msgid "Hardware version id from VMware"
|
|
966
|
+
msgstr ""
|
|
967
|
+
|
|
968
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:29
|
|
969
|
+
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
970
|
+
msgstr ""
|
|
971
|
+
|
|
972
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:35
|
|
973
|
+
#, fuzzy
|
|
974
|
+
msgid "Network id from VMware"
|
|
975
|
+
msgstr "Red"
|
|
976
|
+
|
|
977
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:41
|
|
978
|
+
msgid "Datastore id from VMware"
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
981
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:42
|
|
982
|
+
msgid "Integer number, volume size in GB"
|
|
983
|
+
msgstr ""
|
|
984
|
+
|
|
985
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:53
|
|
986
|
+
#, fuzzy
|
|
987
|
+
msgid "Type of the network adapter, for example one of:"
|
|
988
|
+
msgstr "Tipo"
|
|
989
|
+
|
|
990
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:55
|
|
991
|
+
msgid "See documentation center for your version of vSphere to find more details about available adapter types:"
|
|
992
|
+
msgstr ""
|
|
839
993
|
|
|
840
994
|
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
841
995
|
msgid "Use the default organization and/or location from the server"
|
|
842
|
-
msgstr "
|
|
996
|
+
msgstr "Utilizar la organización por defecto y/o ubicación desde el servidor"
|
|
843
997
|
|
|
844
998
|
#: ../lib/hammer_cli_foreman/domain.rb:6
|
|
845
999
|
msgid "ID of DNS proxy to use within this domain"
|
|
@@ -931,20 +1085,19 @@ msgstr "No se pudo borrar el entorno"
|
|
|
931
1085
|
|
|
932
1086
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:29
|
|
933
1087
|
msgid "Redirection of API call detected."
|
|
934
|
-
msgstr ""
|
|
1088
|
+
msgstr "Redirecion the una llamada de el APi detectada"
|
|
935
1089
|
|
|
936
1090
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:30
|
|
937
1091
|
msgid "It seems hammer is configured to use HTTP and the server prefers HTTPS."
|
|
938
|
-
msgstr ""
|
|
1092
|
+
msgstr "Parece que el martillo esta configurado para que use HTTP y el servidor prefiere HTTPS."
|
|
939
1093
|
|
|
940
1094
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:32
|
|
941
1095
|
msgid "Update your server url configuration"
|
|
942
|
-
msgstr ""
|
|
1096
|
+
msgstr "Actualiza la configuración de url en tu servidor"
|
|
943
1097
|
|
|
944
1098
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:33
|
|
945
|
-
#, fuzzy
|
|
946
1099
|
msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
|
|
947
|
-
msgstr "
|
|
1100
|
+
msgstr "Puedes setiar 'sigue_indirecta' a unos de :default o: siempre prendido indirecta sigue"
|
|
948
1101
|
|
|
949
1102
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:54
|
|
950
1103
|
msgid "Forbidden - server refused to process the request"
|
|
@@ -1002,7 +1155,7 @@ msgstr "No se pudo borrar el grupo de usuario externo"
|
|
|
1002
1155
|
msgid "Host"
|
|
1003
1156
|
msgstr "Host"
|
|
1004
1157
|
|
|
1005
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
|
1158
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:188
|
|
1006
1159
|
msgid "Fact"
|
|
1007
1160
|
msgstr "Evento"
|
|
1008
1161
|
|
|
@@ -1019,356 +1172,337 @@ msgid "Unlimited?"
|
|
|
1019
1172
|
msgstr "¿Ilimitado?"
|
|
1020
1173
|
|
|
1021
1174
|
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
1175
|
+
#, fuzzy
|
|
1176
|
+
msgid "Override?"
|
|
1177
|
+
msgstr "Sobrescribir"
|
|
1178
|
+
|
|
1179
|
+
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
1022
1180
|
msgid "Role"
|
|
1023
1181
|
msgstr "Rol"
|
|
1024
1182
|
|
|
1025
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1183
|
+
#: ../lib/hammer_cli_foreman/filter.rb:15
|
|
1026
1184
|
msgid "Permissions"
|
|
1027
1185
|
msgstr "Permisos"
|
|
1028
1186
|
|
|
1029
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1187
|
+
#: ../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
|
|
1030
1188
|
msgid "(Miscellaneous)"
|
|
1031
1189
|
msgstr "(Varios)"
|
|
1032
1190
|
|
|
1033
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1191
|
+
#: ../lib/hammer_cli_foreman/filter.rb:20 ../lib/hammer_cli_foreman/filter.rb:36 ../lib/hammer_cli_foreman/role.rb:43
|
|
1034
1192
|
msgid "none"
|
|
1035
1193
|
msgstr "nada"
|
|
1036
1194
|
|
|
1037
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1195
|
+
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1038
1196
|
msgid "Permission filter for [%<resource_type>s] created"
|
|
1039
1197
|
msgstr "Se creó el filtro de permisos para [%<resource_type>s]"
|
|
1040
1198
|
|
|
1041
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1199
|
+
#: ../lib/hammer_cli_foreman/filter.rb:46
|
|
1042
1200
|
msgid "Could not create the permission filter"
|
|
1043
1201
|
msgstr "No se pudo crear el filtro de permisos"
|
|
1044
1202
|
|
|
1045
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1203
|
+
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1046
1204
|
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1047
1205
|
msgstr "Se actualizó el filtro de permisos para [%<resource_type>s]"
|
|
1048
1206
|
|
|
1049
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1207
|
+
#: ../lib/hammer_cli_foreman/filter.rb:54
|
|
1050
1208
|
msgid "Could not update the permission filter"
|
|
1051
1209
|
msgstr "No se pudo actualizar el filtro de permisos"
|
|
1052
1210
|
|
|
1053
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1211
|
+
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1054
1212
|
msgid "Permission filter deleted"
|
|
1055
1213
|
msgstr "Se borró el filtro de permisos"
|
|
1056
1214
|
|
|
1057
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1215
|
+
#: ../lib/hammer_cli_foreman/filter.rb:62
|
|
1058
1216
|
msgid "Could not delete the permission filter"
|
|
1059
1217
|
msgstr "No se pudo borrar el filtro de permisos"
|
|
1060
1218
|
|
|
1061
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1219
|
+
#: ../lib/hammer_cli_foreman/filter.rb:75 ../lib/hammer_cli_foreman/report.rb:62
|
|
1062
1220
|
msgid "Resource"
|
|
1063
1221
|
msgstr "Recurso"
|
|
1064
1222
|
|
|
1065
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1066
|
-
msgid "Login of the owner"
|
|
1067
|
-
msgstr "Autenticación del propietario"
|
|
1068
|
-
|
|
1069
|
-
#: ../lib/hammer_cli_foreman/host.rb:17
|
|
1070
|
-
msgid "ID of the owner"
|
|
1071
|
-
msgstr "ID del propietario"
|
|
1072
|
-
|
|
1073
|
-
#: ../lib/hammer_cli_foreman/host.rb:44
|
|
1074
|
-
msgid "Host parameters."
|
|
1075
|
-
msgstr "Parámetros de host."
|
|
1076
|
-
|
|
1077
|
-
#: ../lib/hammer_cli_foreman/host.rb:46
|
|
1078
|
-
msgid "Compute resource attributes."
|
|
1079
|
-
msgstr "Atributos de recursos de cómputo."
|
|
1080
|
-
|
|
1081
|
-
#: ../lib/hammer_cli_foreman/host.rb:48
|
|
1082
|
-
msgid "Volume parameters"
|
|
1083
|
-
msgstr "Parámetros de volumen"
|
|
1084
|
-
|
|
1085
|
-
#: ../lib/hammer_cli_foreman/host.rb:50
|
|
1086
|
-
msgid "Interface parameters."
|
|
1087
|
-
msgstr "Parámetros de la interfaz."
|
|
1088
|
-
|
|
1089
|
-
#: ../lib/hammer_cli_foreman/host.rb:64
|
|
1090
|
-
msgid "Enter the root password for the host:"
|
|
1091
|
-
msgstr "Introduzca la contraseña de root para el host:"
|
|
1092
|
-
|
|
1093
|
-
#: ../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
|
|
1223
|
+
#: ../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
|
|
1094
1224
|
msgid "Operating System"
|
|
1095
1225
|
msgstr "Sistema operativo"
|
|
1096
1226
|
|
|
1097
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1227
|
+
#: ../lib/hammer_cli_foreman/host.rb:33 ../lib/hammer_cli_foreman/host.rb:67
|
|
1098
1228
|
msgid "Host Group"
|
|
1099
1229
|
msgstr "Grupo de hosts"
|
|
1100
1230
|
|
|
1101
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1231
|
+
#: ../lib/hammer_cli_foreman/host.rb:34 ../lib/hammer_cli_foreman/host.rb:80
|
|
1102
1232
|
msgid "IP"
|
|
1103
1233
|
msgstr "IP"
|
|
1104
1234
|
|
|
1105
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1235
|
+
#: ../lib/hammer_cli_foreman/host.rb:35 ../lib/hammer_cli_foreman/host.rb:81
|
|
1106
1236
|
msgid "MAC"
|
|
1107
1237
|
msgstr "Dirección MAC"
|
|
1108
1238
|
|
|
1109
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1239
|
+
#: ../lib/hammer_cli_foreman/host.rb:45
|
|
1110
1240
|
msgid "Bare Metal"
|
|
1111
1241
|
msgstr "Bare Metal"
|
|
1112
1242
|
|
|
1113
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1243
|
+
#: ../lib/hammer_cli_foreman/host.rb:63 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
1244
|
+
msgid "UUID"
|
|
1245
|
+
msgstr "UUID"
|
|
1246
|
+
|
|
1247
|
+
#: ../lib/hammer_cli_foreman/host.rb:65
|
|
1114
1248
|
msgid "Organization"
|
|
1115
1249
|
msgstr "Organización"
|
|
1116
1250
|
|
|
1117
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1251
|
+
#: ../lib/hammer_cli_foreman/host.rb:66
|
|
1118
1252
|
msgid "Location"
|
|
1119
1253
|
msgstr "Ubicación"
|
|
1120
1254
|
|
|
1121
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1255
|
+
#: ../lib/hammer_cli_foreman/host.rb:68
|
|
1122
1256
|
msgid "Compute Resource"
|
|
1123
1257
|
msgstr "Recurso de cómputo"
|
|
1124
1258
|
|
|
1125
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1259
|
+
#: ../lib/hammer_cli_foreman/host.rb:69
|
|
1126
1260
|
msgid "Compute Profile"
|
|
1127
1261
|
msgstr "Perfil de Cómputo"
|
|
1128
1262
|
|
|
1129
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1263
|
+
#: ../lib/hammer_cli_foreman/host.rb:70 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1130
1264
|
msgid "Environment"
|
|
1131
1265
|
msgstr "Entorno"
|
|
1132
1266
|
|
|
1133
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1267
|
+
#: ../lib/hammer_cli_foreman/host.rb:71
|
|
1134
1268
|
msgid "Puppet CA Id"
|
|
1135
1269
|
msgstr "Puppet CA Id"
|
|
1136
1270
|
|
|
1137
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1271
|
+
#: ../lib/hammer_cli_foreman/host.rb:72
|
|
1138
1272
|
msgid "Puppet Master Id"
|
|
1139
1273
|
msgstr "Puppet Master Id"
|
|
1140
1274
|
|
|
1141
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1275
|
+
#: ../lib/hammer_cli_foreman/host.rb:73
|
|
1142
1276
|
msgid "Cert name"
|
|
1143
1277
|
msgstr "Nombre de certificado"
|
|
1144
1278
|
|
|
1145
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1279
|
+
#: ../lib/hammer_cli_foreman/host.rb:74 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1146
1280
|
msgid "Managed"
|
|
1147
1281
|
msgstr "Administrado"
|
|
1148
1282
|
|
|
1149
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1283
|
+
#: ../lib/hammer_cli_foreman/host.rb:76
|
|
1150
1284
|
msgid "Installed at"
|
|
1151
1285
|
msgstr "Instalado en"
|
|
1152
1286
|
|
|
1153
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1287
|
+
#: ../lib/hammer_cli_foreman/host.rb:77 ../lib/hammer_cli_foreman/report.rb:12
|
|
1154
1288
|
msgid "Last report"
|
|
1155
1289
|
msgstr "Último informe"
|
|
1156
1290
|
|
|
1157
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1291
|
+
#: ../lib/hammer_cli_foreman/host.rb:79 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1158
1292
|
msgid "Network"
|
|
1159
1293
|
msgstr "Red"
|
|
1160
1294
|
|
|
1161
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1295
|
+
#: ../lib/hammer_cli_foreman/host.rb:82 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1162
1296
|
msgid "Subnet"
|
|
1163
1297
|
msgstr "Subred"
|
|
1164
1298
|
|
|
1165
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1299
|
+
#: ../lib/hammer_cli_foreman/host.rb:83 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1166
1300
|
msgid "Domain"
|
|
1167
1301
|
msgstr "Dominio"
|
|
1168
1302
|
|
|
1169
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1303
|
+
#: ../lib/hammer_cli_foreman/host.rb:84
|
|
1170
1304
|
msgid "Service provider"
|
|
1171
1305
|
msgstr "Proveedor de Servicio"
|
|
1172
1306
|
|
|
1173
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1307
|
+
#: ../lib/hammer_cli_foreman/host.rb:85
|
|
1174
1308
|
msgid "SP Name"
|
|
1175
1309
|
msgstr "Nombre de SP"
|
|
1176
1310
|
|
|
1177
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1311
|
+
#: ../lib/hammer_cli_foreman/host.rb:86
|
|
1178
1312
|
msgid "SP IP"
|
|
1179
1313
|
msgstr "IP de SP"
|
|
1180
1314
|
|
|
1181
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1315
|
+
#: ../lib/hammer_cli_foreman/host.rb:87
|
|
1182
1316
|
msgid "SP MAC"
|
|
1183
1317
|
msgstr "MAC de SP"
|
|
1184
1318
|
|
|
1185
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1319
|
+
#: ../lib/hammer_cli_foreman/host.rb:88
|
|
1186
1320
|
msgid "SP Subnet"
|
|
1187
1321
|
msgstr "Subred de SP"
|
|
1188
1322
|
|
|
1189
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1323
|
+
#: ../lib/hammer_cli_foreman/host.rb:92
|
|
1190
1324
|
msgid "Network interfaces"
|
|
1191
1325
|
msgstr "Interfaces de red"
|
|
1192
1326
|
|
|
1193
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1327
|
+
#: ../lib/hammer_cli_foreman/host.rb:94 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1194
1328
|
msgid "Identifier"
|
|
1195
1329
|
msgstr "Identificador"
|
|
1196
1330
|
|
|
1197
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1331
|
+
#: ../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
|
|
1198
1332
|
msgid "Type"
|
|
1199
1333
|
msgstr "Tipo"
|
|
1200
1334
|
|
|
1201
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1335
|
+
#: ../lib/hammer_cli_foreman/host.rb:96 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1202
1336
|
msgid "MAC address"
|
|
1203
1337
|
msgstr "Dirección MAC"
|
|
1204
1338
|
|
|
1205
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1339
|
+
#: ../lib/hammer_cli_foreman/host.rb:97 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1206
1340
|
msgid "IP address"
|
|
1207
1341
|
msgstr "Dirección IP"
|
|
1208
1342
|
|
|
1209
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1343
|
+
#: ../lib/hammer_cli_foreman/host.rb:98
|
|
1210
1344
|
msgid "FQDN"
|
|
1211
1345
|
msgstr "FQDN"
|
|
1212
1346
|
|
|
1213
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1347
|
+
#: ../lib/hammer_cli_foreman/host.rb:101
|
|
1214
1348
|
msgid "Operating system"
|
|
1215
1349
|
msgstr "Sistema Operativo"
|
|
1216
1350
|
|
|
1217
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1351
|
+
#: ../lib/hammer_cli_foreman/host.rb:102 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1218
1352
|
msgid "Architecture"
|
|
1219
1353
|
msgstr "Arquitectura"
|
|
1220
1354
|
|
|
1221
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1355
|
+
#: ../lib/hammer_cli_foreman/host.rb:106
|
|
1222
1356
|
msgid "Build"
|
|
1223
1357
|
msgstr "Compilar"
|
|
1224
1358
|
|
|
1225
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1359
|
+
#: ../lib/hammer_cli_foreman/host.rb:107 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1226
1360
|
msgid "Medium"
|
|
1227
1361
|
msgstr "Medio"
|
|
1228
1362
|
|
|
1229
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1363
|
+
#: ../lib/hammer_cli_foreman/host.rb:108 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1230
1364
|
msgid "Partition Table"
|
|
1231
1365
|
msgstr "Tabla de particiones"
|
|
1232
1366
|
|
|
1233
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1367
|
+
#: ../lib/hammer_cli_foreman/host.rb:109
|
|
1234
1368
|
msgid "Custom partition table"
|
|
1235
1369
|
msgstr "Tabla de particiones personalizadas"
|
|
1236
1370
|
|
|
1237
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1371
|
+
#: ../lib/hammer_cli_foreman/host.rb:112
|
|
1238
1372
|
msgid "Image"
|
|
1239
1373
|
msgstr "Imagen"
|
|
1240
1374
|
|
|
1241
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1375
|
+
#: ../lib/hammer_cli_foreman/host.rb:113
|
|
1242
1376
|
msgid "Image file"
|
|
1243
1377
|
msgstr "Archivo de imagen"
|
|
1244
1378
|
|
|
1245
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1379
|
+
#: ../lib/hammer_cli_foreman/host.rb:114
|
|
1246
1380
|
msgid "Use image"
|
|
1247
1381
|
msgstr "Usar imagen"
|
|
1248
1382
|
|
|
1249
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1383
|
+
#: ../lib/hammer_cli_foreman/host.rb:120
|
|
1250
1384
|
msgid "Additional info"
|
|
1251
1385
|
msgstr "Información adicional"
|
|
1252
1386
|
|
|
1253
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1387
|
+
#: ../lib/hammer_cli_foreman/host.rb:121
|
|
1254
1388
|
msgid "Owner Id"
|
|
1255
1389
|
msgstr "ID de propietario"
|
|
1256
1390
|
|
|
1257
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1391
|
+
#: ../lib/hammer_cli_foreman/host.rb:122
|
|
1258
1392
|
msgid "Owner Type"
|
|
1259
1393
|
msgstr "Tipo de propietario"
|
|
1260
1394
|
|
|
1261
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1395
|
+
#: ../lib/hammer_cli_foreman/host.rb:123
|
|
1262
1396
|
msgid "Enabled"
|
|
1263
1397
|
msgstr "Habilitado"
|
|
1264
1398
|
|
|
1265
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1399
|
+
#: ../lib/hammer_cli_foreman/host.rb:124 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1266
1400
|
msgid "Model"
|
|
1267
1401
|
msgstr "Modelo"
|
|
1268
1402
|
|
|
1269
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1403
|
+
#: ../lib/hammer_cli_foreman/host.rb:125
|
|
1270
1404
|
msgid "Comment"
|
|
1271
1405
|
msgstr "Comentario"
|
|
1272
1406
|
|
|
1273
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1407
|
+
#: ../lib/hammer_cli_foreman/host.rb:138
|
|
1274
1408
|
msgid "Status"
|
|
1275
1409
|
msgstr "Estatus"
|
|
1276
1410
|
|
|
1277
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1411
|
+
#: ../lib/hammer_cli_foreman/host.rb:139
|
|
1278
1412
|
msgid "Power"
|
|
1279
1413
|
msgstr "Energía"
|
|
1280
1414
|
|
|
1281
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1415
|
+
#: ../lib/hammer_cli_foreman/host.rb:175
|
|
1282
1416
|
msgid "Puppet run triggered"
|
|
1283
1417
|
msgstr "Se activó una ejecución de Puppet"
|
|
1284
1418
|
|
|
1285
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1419
|
+
#: ../lib/hammer_cli_foreman/host.rb:228
|
|
1286
1420
|
msgid "Host created"
|
|
1287
1421
|
msgstr "Host creado"
|
|
1288
1422
|
|
|
1289
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1423
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
|
1290
1424
|
msgid "Could not create the host"
|
|
1291
1425
|
msgstr "No se pudo crear el host"
|
|
1292
1426
|
|
|
1293
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1427
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1294
1428
|
msgid "Host updated"
|
|
1295
1429
|
msgstr "Se actualizó el host"
|
|
1296
1430
|
|
|
1297
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1431
|
+
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1298
1432
|
msgid "Could not update the host"
|
|
1299
1433
|
msgstr "No se pudo actualizar el host"
|
|
1300
1434
|
|
|
1301
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1435
|
+
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1302
1436
|
msgid "Host deleted"
|
|
1303
1437
|
msgstr "Host borrado"
|
|
1304
1438
|
|
|
1305
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1439
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1306
1440
|
msgid "Could not delete the host"
|
|
1307
1441
|
msgstr "No se pudo borrar el host"
|
|
1308
1442
|
|
|
1309
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1443
|
+
#: ../lib/hammer_cli_foreman/host.rb:264
|
|
1310
1444
|
msgid "Create or update parameter for a host."
|
|
1311
1445
|
msgstr "Crear o actualizar parámetro de un host."
|
|
1312
1446
|
|
|
1313
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1447
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
|
1314
1448
|
msgid "Host parameter updated"
|
|
1315
1449
|
msgstr "Se actualizó el parámetro de host"
|
|
1316
1450
|
|
|
1317
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1451
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1318
1452
|
msgid "New host parameter created"
|
|
1319
1453
|
msgstr "Se ha creado parámetro de host"
|
|
1320
1454
|
|
|
1321
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1455
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1322
1456
|
msgid "Could not set host parameter"
|
|
1323
1457
|
msgstr "No se pudo establecer el parámetro de host"
|
|
1324
1458
|
|
|
1325
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1459
|
+
#: ../lib/hammer_cli_foreman/host.rb:280
|
|
1326
1460
|
msgid "Delete parameter for a host."
|
|
1327
1461
|
msgstr "Borrar parámetro de un host."
|
|
1328
1462
|
|
|
1329
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1463
|
+
#: ../lib/hammer_cli_foreman/host.rb:282
|
|
1330
1464
|
msgid "Host parameter deleted"
|
|
1331
1465
|
msgstr "Parámetro de host borrado"
|
|
1332
1466
|
|
|
1333
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1467
|
+
#: ../lib/hammer_cli_foreman/host.rb:297
|
|
1334
1468
|
msgid "Power a host on"
|
|
1335
1469
|
msgstr "Encender un host"
|
|
1336
1470
|
|
|
1337
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1471
|
+
#: ../lib/hammer_cli_foreman/host.rb:298
|
|
1338
1472
|
msgid "The host is starting."
|
|
1339
1473
|
msgstr "El host está arrancando."
|
|
1340
1474
|
|
|
1341
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1475
|
+
#: ../lib/hammer_cli_foreman/host.rb:315
|
|
1342
1476
|
msgid "Force turning off a host"
|
|
1343
1477
|
msgstr "Forzar apagado de un host"
|
|
1344
1478
|
|
|
1345
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1479
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
|
1346
1480
|
msgid "Power a host off"
|
|
1347
1481
|
msgstr "Apagar un host"
|
|
1348
1482
|
|
|
1349
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1483
|
+
#: ../lib/hammer_cli_foreman/host.rb:332
|
|
1350
1484
|
msgid "Power off forced."
|
|
1351
1485
|
msgstr "Se forzó el apagado"
|
|
1352
1486
|
|
|
1353
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1487
|
+
#: ../lib/hammer_cli_foreman/host.rb:334
|
|
1354
1488
|
msgid "Powering the host off."
|
|
1355
1489
|
msgstr "Apagando el host a la fuerza."
|
|
1356
1490
|
|
|
1357
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1491
|
+
#: ../lib/hammer_cli_foreman/host.rb:351
|
|
1358
1492
|
msgid "Reboot a host"
|
|
1359
1493
|
msgstr "Reiniciar un host"
|
|
1360
1494
|
|
|
1361
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1495
|
+
#: ../lib/hammer_cli_foreman/host.rb:352
|
|
1362
1496
|
msgid "Host reboot started."
|
|
1363
1497
|
msgstr "Reinicio del host en proceso."
|
|
1364
1498
|
|
|
1365
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1499
|
+
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1366
1500
|
msgid "Rebuild orchestration related configurations for host"
|
|
1367
|
-
msgstr ""
|
|
1501
|
+
msgstr "Recrear la orquestación con la configuración parecida para el aparato"
|
|
1368
1502
|
|
|
1369
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1503
|
+
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1370
1504
|
msgid "Configuration successfully rebuilt."
|
|
1371
|
-
msgstr ""
|
|
1505
|
+
msgstr "La configuración fue recreada satisfactoriamente"
|
|
1372
1506
|
|
|
1373
1507
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:10
|
|
1374
1508
|
msgid "List of puppetclass ids"
|
|
@@ -1462,6 +1596,72 @@ msgstr "Borrar parámetro de un grupo de hosts."
|
|
|
1462
1596
|
msgid "Hostgroup parameter deleted"
|
|
1463
1597
|
msgstr "Parámetro del grupo de hosts borrado"
|
|
1464
1598
|
|
|
1599
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:6
|
|
1600
|
+
msgid "Available keys for %{option}"
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1603
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:16
|
|
1604
|
+
#, fuzzy
|
|
1605
|
+
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1606
|
+
msgstr "primario"
|
|
1607
|
+
|
|
1608
|
+
#: ../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
|
|
1609
|
+
msgid "For %{condition}"
|
|
1610
|
+
msgstr ""
|
|
1611
|
+
|
|
1612
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:22
|
|
1613
|
+
#, fuzzy
|
|
1614
|
+
msgid "VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virtual interfaces."
|
|
1615
|
+
msgstr "ID de VLAN"
|
|
1616
|
+
|
|
1617
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:23
|
|
1618
|
+
#, fuzzy
|
|
1619
|
+
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1620
|
+
msgstr "Identificador"
|
|
1621
|
+
|
|
1622
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:29
|
|
1623
|
+
#, fuzzy
|
|
1624
|
+
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1625
|
+
msgstr "Identificador"
|
|
1626
|
+
|
|
1627
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:35
|
|
1628
|
+
#, fuzzy
|
|
1629
|
+
msgid "always IPMI"
|
|
1630
|
+
msgstr "IP"
|
|
1631
|
+
|
|
1632
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:42
|
|
1633
|
+
#, fuzzy
|
|
1634
|
+
msgid "Provider specific options"
|
|
1635
|
+
msgstr "Proveedor"
|
|
1636
|
+
|
|
1637
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:6
|
|
1638
|
+
msgid "Login of the owner"
|
|
1639
|
+
msgstr "Autenticación del propietario"
|
|
1640
|
+
|
|
1641
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:8
|
|
1642
|
+
msgid "ID of the owner"
|
|
1643
|
+
msgstr "ID del propietario"
|
|
1644
|
+
|
|
1645
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:35
|
|
1646
|
+
msgid "Host parameters."
|
|
1647
|
+
msgstr "Parámetros de host."
|
|
1648
|
+
|
|
1649
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:37
|
|
1650
|
+
msgid "Compute resource attributes."
|
|
1651
|
+
msgstr "Atributos de recursos de cómputo."
|
|
1652
|
+
|
|
1653
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:39
|
|
1654
|
+
msgid "Volume parameters"
|
|
1655
|
+
msgstr "Parámetros de volumen"
|
|
1656
|
+
|
|
1657
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:41
|
|
1658
|
+
msgid "Interface parameters."
|
|
1659
|
+
msgstr "Parámetros de la interfaz."
|
|
1660
|
+
|
|
1661
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:55
|
|
1662
|
+
msgid "Enter the root password for the host:"
|
|
1663
|
+
msgstr "Introduzca la contraseña de root para el host:"
|
|
1664
|
+
|
|
1465
1665
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1466
1666
|
msgid "Architecture name"
|
|
1467
1667
|
msgstr "Nombre de arquitectura"
|
|
@@ -1550,7 +1750,7 @@ msgstr "Nombre de parámetro común"
|
|
|
1550
1750
|
msgid "Smart class parameter name"
|
|
1551
1751
|
msgstr "Nombre de parámetro de clase inteligente"
|
|
1552
1752
|
|
|
1553
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
1753
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
1554
1754
|
msgid "Smart variable name"
|
|
1555
1755
|
msgstr "Nombre de la variable inteligente"
|
|
1556
1756
|
|
|
@@ -1752,23 +1952,23 @@ msgstr "Parámetro [%{name}] actualizado al valor [%{value}]"
|
|
|
1752
1952
|
|
|
1753
1953
|
#: ../lib/hammer_cli_foreman/location.rb:91 ../lib/hammer_cli_foreman/organization.rb:92
|
|
1754
1954
|
msgid "Parameter [%{name}] created with value [%{value}]"
|
|
1755
|
-
msgstr ""
|
|
1955
|
+
msgstr "Parámetro [%{name}] creado con el valor [%{value}]"
|
|
1756
1956
|
|
|
1757
1957
|
#: ../lib/hammer_cli_foreman/location.rb:92
|
|
1758
1958
|
msgid "Could not set location parameter"
|
|
1759
|
-
msgstr ""
|
|
1959
|
+
msgstr "No se pudo establecer el parámetro de ubicación"
|
|
1760
1960
|
|
|
1761
1961
|
#: ../lib/hammer_cli_foreman/location.rb:99
|
|
1762
1962
|
msgid "Delete parameter for a location."
|
|
1763
|
-
msgstr ""
|
|
1963
|
+
msgstr "Eliminar parámetro de ubicación."
|
|
1764
1964
|
|
|
1765
1965
|
#: ../lib/hammer_cli_foreman/location.rb:101 ../lib/hammer_cli_foreman/organization.rb:102
|
|
1766
1966
|
msgid "Parameter [%{name}] deleted"
|
|
1767
|
-
msgstr ""
|
|
1967
|
+
msgstr "Parámetro [%{name}] eliminado"
|
|
1768
1968
|
|
|
1769
1969
|
#: ../lib/hammer_cli_foreman/location.rb:102
|
|
1770
1970
|
msgid "Could not delete location parameter"
|
|
1771
|
-
msgstr ""
|
|
1971
|
+
msgstr "No se pudo eliminar el parámetro de ubicación"
|
|
1772
1972
|
|
|
1773
1973
|
#: ../lib/hammer_cli_foreman/media.rb:11
|
|
1774
1974
|
msgid "Path"
|
|
@@ -1976,23 +2176,23 @@ msgstr "No se pudo borrar la organización"
|
|
|
1976
2176
|
|
|
1977
2177
|
#: ../lib/hammer_cli_foreman/organization.rb:89
|
|
1978
2178
|
msgid "Create or update parameter for an organization."
|
|
1979
|
-
msgstr ""
|
|
2179
|
+
msgstr "Crear o actualizar el parámetro para una organización."
|
|
1980
2180
|
|
|
1981
2181
|
#: ../lib/hammer_cli_foreman/organization.rb:93
|
|
1982
2182
|
msgid "Could not set organization parameter"
|
|
1983
|
-
msgstr ""
|
|
2183
|
+
msgstr "No se pudo establecer el parámetro de organización"
|
|
1984
2184
|
|
|
1985
2185
|
#: ../lib/hammer_cli_foreman/organization.rb:100
|
|
1986
2186
|
msgid "Delete parameter for an organization."
|
|
1987
|
-
msgstr ""
|
|
2187
|
+
msgstr "Eliminar el parámetro para una organización."
|
|
1988
2188
|
|
|
1989
2189
|
#: ../lib/hammer_cli_foreman/organization.rb:103
|
|
1990
2190
|
msgid "Could not delete organization parameter"
|
|
1991
|
-
msgstr ""
|
|
2191
|
+
msgstr "No se puede eliminar el parámetro de la organización"
|
|
1992
2192
|
|
|
1993
2193
|
#: ../lib/hammer_cli_foreman/partition_table.rb:21 ../lib/hammer_cli_foreman/template.rb:48
|
|
1994
2194
|
msgid "Locked"
|
|
1995
|
-
msgstr ""
|
|
2195
|
+
msgstr "Bloqueado"
|
|
1996
2196
|
|
|
1997
2197
|
#: ../lib/hammer_cli_foreman/partition_table.rb:32
|
|
1998
2198
|
msgid "View partition table content."
|
|
@@ -2096,55 +2296,65 @@ msgstr "Usuarios"
|
|
|
2096
2296
|
msgid "User groups"
|
|
2097
2297
|
msgstr "Grupos de usuarios"
|
|
2098
2298
|
|
|
2099
|
-
#: ../lib/hammer_cli_foreman/references.rb:42
|
|
2299
|
+
#: ../lib/hammer_cli_foreman/references.rb:35 ../lib/hammer_cli_foreman/references.rb:42
|
|
2300
|
+
#, fuzzy
|
|
2301
|
+
msgid "Usergroup"
|
|
2302
|
+
msgstr "Grupos de usuarios"
|
|
2303
|
+
|
|
2304
|
+
#: ../lib/hammer_cli_foreman/references.rb:37 ../lib/hammer_cli_foreman/references.rb:44 ../lib/hammer_cli_foreman/references.rb:142
|
|
2305
|
+
msgid "Roles"
|
|
2306
|
+
msgstr "Roles"
|
|
2307
|
+
|
|
2308
|
+
#: ../lib/hammer_cli_foreman/references.rb:41
|
|
2309
|
+
#, fuzzy
|
|
2310
|
+
msgid "Inherited User groups"
|
|
2311
|
+
msgstr "Grupos de usuarios"
|
|
2312
|
+
|
|
2313
|
+
#: ../lib/hammer_cli_foreman/references.rb:53
|
|
2100
2314
|
msgid "Smart proxies"
|
|
2101
2315
|
msgstr "Proxis inteligentes"
|
|
2102
2316
|
|
|
2103
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2317
|
+
#: ../lib/hammer_cli_foreman/references.rb:61
|
|
2104
2318
|
msgid "Compute resources"
|
|
2105
2319
|
msgstr "Recursos de cómputo"
|
|
2106
2320
|
|
|
2107
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2321
|
+
#: ../lib/hammer_cli_foreman/references.rb:69
|
|
2108
2322
|
msgid "Installation media"
|
|
2109
2323
|
msgstr "Medio de Instalación"
|
|
2110
2324
|
|
|
2111
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2325
|
+
#: ../lib/hammer_cli_foreman/references.rb:77
|
|
2112
2326
|
msgid "Templates"
|
|
2113
2327
|
msgstr "Plantillas"
|
|
2114
2328
|
|
|
2115
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2329
|
+
#: ../lib/hammer_cli_foreman/references.rb:85
|
|
2116
2330
|
msgid "Domains"
|
|
2117
2331
|
msgstr "Dominios"
|
|
2118
2332
|
|
|
2119
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2333
|
+
#: ../lib/hammer_cli_foreman/references.rb:93
|
|
2120
2334
|
msgid "Environments"
|
|
2121
2335
|
msgstr "Entornos"
|
|
2122
2336
|
|
|
2123
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2337
|
+
#: ../lib/hammer_cli_foreman/references.rb:101
|
|
2124
2338
|
msgid "Hostgroups"
|
|
2125
2339
|
msgstr "Grupos de hosts"
|
|
2126
2340
|
|
|
2127
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2341
|
+
#: ../lib/hammer_cli_foreman/references.rb:109
|
|
2128
2342
|
msgid "Subnets"
|
|
2129
2343
|
msgstr "Subredes"
|
|
2130
2344
|
|
|
2131
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2345
|
+
#: ../lib/hammer_cli_foreman/references.rb:118
|
|
2132
2346
|
msgid "Parameters"
|
|
2133
2347
|
msgstr "Parámetros"
|
|
2134
2348
|
|
|
2135
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2349
|
+
#: ../lib/hammer_cli_foreman/references.rb:126
|
|
2136
2350
|
msgid "Puppetclasses"
|
|
2137
2351
|
msgstr "Puppetclasses"
|
|
2138
2352
|
|
|
2139
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2353
|
+
#: ../lib/hammer_cli_foreman/references.rb:134
|
|
2140
2354
|
msgid "Operating systems"
|
|
2141
2355
|
msgstr "Sistemas operativos"
|
|
2142
2356
|
|
|
2143
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2144
|
-
msgid "Roles"
|
|
2145
|
-
msgstr "Roles"
|
|
2146
|
-
|
|
2147
|
-
#: ../lib/hammer_cli_foreman/references.rb:139
|
|
2357
|
+
#: ../lib/hammer_cli_foreman/references.rb:150
|
|
2148
2358
|
msgid "External user groups"
|
|
2149
2359
|
msgstr "Grupos de usuarios externos"
|
|
2150
2360
|
|
|
@@ -2244,53 +2454,45 @@ msgstr "No se pudo borrar el informe"
|
|
|
2244
2454
|
msgid "The server does not support such operation."
|
|
2245
2455
|
msgstr "El servidor no soporta esa operación."
|
|
2246
2456
|
|
|
2247
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2457
|
+
#: ../lib/hammer_cli_foreman/role.rb:13
|
|
2248
2458
|
msgid "Builtin"
|
|
2249
|
-
msgstr ""
|
|
2250
|
-
|
|
2251
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2252
|
-
msgid "Yes"
|
|
2253
|
-
msgstr ""
|
|
2254
|
-
|
|
2255
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2256
|
-
msgid "No"
|
|
2257
|
-
msgstr ""
|
|
2459
|
+
msgstr "Incorporado"
|
|
2258
2460
|
|
|
2259
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2461
|
+
#: ../lib/hammer_cli_foreman/role.rb:32
|
|
2260
2462
|
msgid "User role id"
|
|
2261
2463
|
msgstr "ID de rol de usuario"
|
|
2262
2464
|
|
|
2263
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2465
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
|
2264
2466
|
msgid "User role [%<name>s] created"
|
|
2265
2467
|
msgstr "Rol de usuario [%<name>s] creado"
|
|
2266
2468
|
|
|
2267
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2469
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
|
2268
2470
|
msgid "Could not create the user role"
|
|
2269
2471
|
msgstr "No se pudo crear el rol de usuario"
|
|
2270
2472
|
|
|
2271
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2473
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
|
2272
2474
|
msgid "User role [%<name>s] updated"
|
|
2273
2475
|
msgstr "Rol de usuario [%<name>s] actualizado"
|
|
2274
2476
|
|
|
2275
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2477
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
|
2276
2478
|
msgid "Could not update the user role"
|
|
2277
2479
|
msgstr "No se pudo actualizar el rol de usuario"
|
|
2278
2480
|
|
|
2279
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2481
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
|
2280
2482
|
msgid "User role [%<name>s] deleted"
|
|
2281
2483
|
msgstr "Rol de usuario [%<name>s] borrado"
|
|
2282
2484
|
|
|
2283
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2485
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
|
2284
2486
|
msgid "Could not delete the user roles"
|
|
2285
2487
|
msgstr "No se pudieron borrar los roles del usuario"
|
|
2286
2488
|
|
|
2287
2489
|
#: ../lib/hammer_cli_foreman/settings.rb:28
|
|
2288
2490
|
msgid "Setting [%{name}] updated to [%{value}]"
|
|
2289
|
-
msgstr ""
|
|
2491
|
+
msgstr "La configuración [%{name}] se actualizó a [%{value}]"
|
|
2290
2492
|
|
|
2291
2493
|
#: ../lib/hammer_cli_foreman/settings.rb:29
|
|
2292
2494
|
msgid "Could not update the setting"
|
|
2293
|
-
msgstr ""
|
|
2495
|
+
msgstr "No se pudo actualizar la configuración"
|
|
2294
2496
|
|
|
2295
2497
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
|
|
2296
2498
|
msgid "Default Value"
|
|
@@ -2310,12 +2512,12 @@ msgstr "Id de clase"
|
|
|
2310
2512
|
|
|
2311
2513
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61 ../lib/hammer_cli_foreman/smart_variable.rb:54
|
|
2312
2514
|
msgid "Hidden Value?"
|
|
2313
|
-
msgstr ""
|
|
2515
|
+
msgstr "Valor ocultado?"
|
|
2314
2516
|
|
|
2315
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2517
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:79
|
|
2316
2518
|
#, fuzzy
|
|
2317
2519
|
msgid "Use puppet default"
|
|
2318
|
-
msgstr "
|
|
2520
|
+
msgstr "Predeterminado"
|
|
2319
2521
|
|
|
2320
2522
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
|
|
2321
2523
|
msgid "Required"
|
|
@@ -2335,25 +2537,25 @@ msgstr "Sobrescribir valores"
|
|
|
2335
2537
|
|
|
2336
2538
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:61
|
|
2337
2539
|
msgid "Merge overrides"
|
|
2338
|
-
msgstr ""
|
|
2540
|
+
msgstr "Combinar sustituciones"
|
|
2339
2541
|
|
|
2340
2542
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:62
|
|
2341
2543
|
msgid "Merge default value"
|
|
2342
|
-
msgstr ""
|
|
2544
|
+
msgstr "Combinar valor predeterminado"
|
|
2343
2545
|
|
|
2344
2546
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:63
|
|
2345
2547
|
msgid "Avoid duplicates"
|
|
2346
|
-
msgstr ""
|
|
2548
|
+
msgstr "Evitar duplicados"
|
|
2347
2549
|
|
|
2348
2550
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:64
|
|
2349
2551
|
msgid "Order"
|
|
2350
2552
|
msgstr "Orden"
|
|
2351
2553
|
|
|
2352
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2554
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2353
2555
|
msgid "Values"
|
|
2354
|
-
msgstr ""
|
|
2556
|
+
msgstr "Valores"
|
|
2355
2557
|
|
|
2356
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2558
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2357
2559
|
msgid "Match"
|
|
2358
2560
|
msgstr "Corresponder"
|
|
2359
2561
|
|
|
@@ -2377,31 +2579,29 @@ msgstr "El parámetro es obligatorio."
|
|
|
2377
2579
|
msgid "Type of the parameter."
|
|
2378
2580
|
msgstr "Tipo de parámetro."
|
|
2379
2581
|
|
|
2380
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2582
|
+
#: ../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
|
|
2381
2583
|
msgid "Type of the validator."
|
|
2382
2584
|
msgstr "Tipo de validador."
|
|
2383
2585
|
|
|
2384
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2586
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:125
|
|
2385
2587
|
msgid "Override value created"
|
|
2386
|
-
msgstr ""
|
|
2588
|
+
msgstr "Sustituir valor creado"
|
|
2387
2589
|
|
|
2388
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2389
|
-
#, fuzzy
|
|
2590
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2390
2591
|
msgid "Could not create the override value"
|
|
2391
|
-
msgstr "No se pudo crear
|
|
2592
|
+
msgstr "No se pudo crear override_value"
|
|
2392
2593
|
|
|
2393
2594
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2394
|
-
#, fuzzy
|
|
2395
2595
|
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2396
|
-
msgstr "
|
|
2596
|
+
msgstr "No se pudo usar --valor cuando --usa-puppet-defaul es verdad"
|
|
2397
2597
|
|
|
2398
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2598
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:138
|
|
2399
2599
|
msgid "Override value deleted"
|
|
2400
|
-
msgstr ""
|
|
2600
|
+
msgstr "Sustituir valor borrado"
|
|
2401
2601
|
|
|
2402
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2602
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2403
2603
|
msgid "Could not delete the override value"
|
|
2404
|
-
msgstr ""
|
|
2604
|
+
msgstr "No se pudo borrar el valor sustituido"
|
|
2405
2605
|
|
|
2406
2606
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:13
|
|
2407
2607
|
msgid "URL"
|
|
@@ -2459,37 +2659,37 @@ msgstr "Error al actualizar las funcionalidades del proxy inteligente"
|
|
|
2459
2659
|
msgid "Variable"
|
|
2460
2660
|
msgstr ""
|
|
2461
2661
|
|
|
2462
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2662
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2463
2663
|
msgid "Use --variable instead"
|
|
2464
2664
|
msgstr ""
|
|
2465
2665
|
|
|
2466
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2666
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2467
2667
|
msgid "Smart variable [%{variable}] created"
|
|
2468
|
-
msgstr ""
|
|
2668
|
+
msgstr "Variable inteligente [%{variable}] creada"
|
|
2469
2669
|
|
|
2470
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2670
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2471
2671
|
msgid "Could not create the smart variable"
|
|
2472
|
-
msgstr ""
|
|
2672
|
+
msgstr "No se pudo crear la variable inteligente"
|
|
2473
2673
|
|
|
2474
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2674
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
|
|
2475
2675
|
msgid "Type of the variable."
|
|
2476
|
-
msgstr ""
|
|
2676
|
+
msgstr "Tipo de variable."
|
|
2477
2677
|
|
|
2478
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2678
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2479
2679
|
msgid "Smart variable [%{variable}] updated"
|
|
2480
|
-
msgstr ""
|
|
2680
|
+
msgstr "Variable inteligente [%{variable}] actualizada"
|
|
2481
2681
|
|
|
2482
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2682
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2483
2683
|
msgid "Could not update the smart variable"
|
|
2484
|
-
msgstr ""
|
|
2684
|
+
msgstr "No se pudo actualizar la variable inteligente"
|
|
2485
2685
|
|
|
2486
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2686
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:114
|
|
2487
2687
|
msgid "Smart variable [%{variable}] deleted"
|
|
2488
|
-
msgstr ""
|
|
2688
|
+
msgstr "Variable inteligente [%{variable}] eliminada"
|
|
2489
2689
|
|
|
2490
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2690
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2491
2691
|
msgid "Could not delete the smart variable"
|
|
2492
|
-
msgstr ""
|
|
2692
|
+
msgstr "No se pudo borrar la variable inteligente"
|
|
2493
2693
|
|
|
2494
2694
|
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
|
2495
2695
|
msgid "Mask"
|
|
@@ -2521,7 +2721,7 @@ msgstr "DHCP"
|
|
|
2521
2721
|
|
|
2522
2722
|
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
|
2523
2723
|
msgid "IPAM"
|
|
2524
|
-
msgstr ""
|
|
2724
|
+
msgstr "IPAM"
|
|
2525
2725
|
|
|
2526
2726
|
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
|
2527
2727
|
msgid "VLAN ID"
|
|
@@ -2608,14 +2808,12 @@ msgid "Update the default PXE menu on all configured TFTP servers"
|
|
|
2608
2808
|
msgstr "Actualizar el menú por defecto de PXE en todos los servidores TFTP configurados"
|
|
2609
2809
|
|
|
2610
2810
|
#: ../lib/hammer_cli_foreman/template.rb:164
|
|
2611
|
-
#, fuzzy
|
|
2612
2811
|
msgid "Config template cloned"
|
|
2613
|
-
msgstr "
|
|
2812
|
+
msgstr "se copio la plantilla de configuración"
|
|
2614
2813
|
|
|
2615
2814
|
#: ../lib/hammer_cli_foreman/template.rb:165
|
|
2616
|
-
#, fuzzy
|
|
2617
2815
|
msgid "Could not clone the config template"
|
|
2618
|
-
msgstr "No se pudo
|
|
2816
|
+
msgstr "No se pudo copiar la plantilla de configuración"
|
|
2619
2817
|
|
|
2620
2818
|
#: ../lib/hammer_cli_foreman/user.rb:11
|
|
2621
2819
|
msgid "Login"
|
|
@@ -2623,7 +2821,7 @@ msgstr "Registro"
|
|
|
2623
2821
|
|
|
2624
2822
|
#: ../lib/hammer_cli_foreman/user.rb:13
|
|
2625
2823
|
msgid "Email"
|
|
2626
|
-
msgstr "Correo
|
|
2824
|
+
msgstr "Correo electrónico"
|
|
2627
2825
|
|
|
2628
2826
|
#: ../lib/hammer_cli_foreman/user.rb:28 ../lib/hammer_cli_foreman/usergroup.rb:13
|
|
2629
2827
|
msgid "Admin"
|
|
@@ -2631,7 +2829,7 @@ msgstr "Administrar"
|
|
|
2631
2829
|
|
|
2632
2830
|
#: ../lib/hammer_cli_foreman/user.rb:29
|
|
2633
2831
|
msgid "Effective admin"
|
|
2634
|
-
msgstr ""
|
|
2832
|
+
msgstr "Administrador efectivo"
|
|
2635
2833
|
|
|
2636
2834
|
#: ../lib/hammer_cli_foreman/user.rb:30
|
|
2637
2835
|
msgid "Authorized by"
|
|
@@ -2643,45 +2841,45 @@ msgstr "Idioma"
|
|
|
2643
2841
|
|
|
2644
2842
|
#: ../lib/hammer_cli_foreman/user.rb:32
|
|
2645
2843
|
msgid "Timezone"
|
|
2646
|
-
msgstr ""
|
|
2844
|
+
msgstr "Zona horaria"
|
|
2647
2845
|
|
|
2648
2846
|
#: ../lib/hammer_cli_foreman/user.rb:33
|
|
2649
2847
|
msgid "Last login"
|
|
2650
2848
|
msgstr "Último inicio de sesión"
|
|
2651
2849
|
|
|
2652
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2850
|
+
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2653
2851
|
msgid "Default organization"
|
|
2654
2852
|
msgstr "Organización por defecto"
|
|
2655
2853
|
|
|
2656
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2854
|
+
#: ../lib/hammer_cli_foreman/user.rb:36
|
|
2657
2855
|
msgid "Default location"
|
|
2658
|
-
msgstr "Ubicación
|
|
2856
|
+
msgstr "Ubicación predeterminada"
|
|
2659
2857
|
|
|
2660
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2858
|
+
#: ../lib/hammer_cli_foreman/user.rb:44 ../lib/hammer_cli_foreman/user.rb:45
|
|
2661
2859
|
msgid "default"
|
|
2662
|
-
msgstr "
|
|
2860
|
+
msgstr "Predeterminado"
|
|
2663
2861
|
|
|
2664
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2862
|
+
#: ../lib/hammer_cli_foreman/user.rb:56
|
|
2665
2863
|
msgid "User [%{login}] created"
|
|
2666
2864
|
msgstr "Se creó el usuario [%{login}]"
|
|
2667
2865
|
|
|
2668
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2866
|
+
#: ../lib/hammer_cli_foreman/user.rb:57
|
|
2669
2867
|
msgid "Could not create the user"
|
|
2670
2868
|
msgstr "No se pudo crear el usuario"
|
|
2671
2869
|
|
|
2672
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2870
|
+
#: ../lib/hammer_cli_foreman/user.rb:64
|
|
2673
2871
|
msgid "User [%{login}] updated"
|
|
2674
2872
|
msgstr "Se actualizó el usuario [%{login}] "
|
|
2675
2873
|
|
|
2676
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2874
|
+
#: ../lib/hammer_cli_foreman/user.rb:65
|
|
2677
2875
|
msgid "Could not update the user"
|
|
2678
2876
|
msgstr "No se pudo actualizar el usuario"
|
|
2679
2877
|
|
|
2680
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2878
|
+
#: ../lib/hammer_cli_foreman/user.rb:72
|
|
2681
2879
|
msgid "User [%{login}] deleted"
|
|
2682
2880
|
msgstr "Se borró el usuario [%{login}]"
|
|
2683
2881
|
|
|
2684
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2882
|
+
#: ../lib/hammer_cli_foreman/user.rb:73
|
|
2685
2883
|
msgid "Could not delete the user"
|
|
2686
2884
|
msgstr "No se pudo borrar el usuario"
|
|
2687
2885
|
|
|
@@ -2709,10 +2907,18 @@ msgstr "Se borró el grupo de usuarios [%<name>s]"
|
|
|
2709
2907
|
msgid "Could not delete the user group"
|
|
2710
2908
|
msgstr "No se pudo borrar el grupo de usuarios"
|
|
2711
2909
|
|
|
2712
|
-
#: ../lib/hammer_cli_foreman/
|
|
2713
|
-
#~ msgid "
|
|
2714
|
-
#~
|
|
2910
|
+
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
2911
|
+
#~ msgid ""
|
|
2912
|
+
#~ "You are currently not logged in to any service.\n"
|
|
2913
|
+
#~ "Use the service to set credentials."
|
|
2914
|
+
#~ msgstr ""
|
|
2915
|
+
#~ "Actualmente no estás identificado en ningún servicio.\n"
|
|
2916
|
+
#~ "Utiliza el servicio para establecer las credenciales."
|
|
2715
2917
|
|
|
2716
|
-
#: ../lib/hammer_cli_foreman/
|
|
2717
|
-
#~ msgid "
|
|
2718
|
-
#~ msgstr "
|
|
2918
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2919
|
+
#~ msgid "Yes"
|
|
2920
|
+
#~ msgstr "Sí"
|
|
2921
|
+
|
|
2922
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2923
|
+
#~ msgid "No"
|
|
2924
|
+
#~ msgstr "No"
|