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
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
# Sergio Ocón <sergio.ocon@redhat.com>, 2014
|
|
13
13
|
msgid ""
|
|
14
14
|
msgstr ""
|
|
15
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
15
|
+
"Project-Id-Version: hammer-cli-foreman 0.9.0\n"
|
|
16
16
|
"Report-Msgid-Bugs-To: \n"
|
|
17
|
-
"POT-Creation-Date: 2016-
|
|
18
|
-
"PO-Revision-Date: 2016-
|
|
19
|
-
"Last-Translator:
|
|
17
|
+
"POT-Creation-Date: 2016-09-01 12:48+0200\n"
|
|
18
|
+
"PO-Revision-Date: 2016-09-02 09:32+0000\n"
|
|
19
|
+
"Last-Translator: Lukáš Zapletal\n"
|
|
20
20
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)\n"
|
|
21
21
|
"MIME-Version: 1.0\n"
|
|
22
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -113,22 +113,26 @@ msgid "Manipulate smart proxies."
|
|
|
113
113
|
msgstr "Manipular proxis inteligentes."
|
|
114
114
|
|
|
115
115
|
#: ../lib/hammer_cli_foreman.rb:120
|
|
116
|
+
msgid "Manipulate realms."
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
|
116
120
|
msgid "Change server settings."
|
|
117
121
|
msgstr "Cambiar configuración del servidor."
|
|
118
122
|
|
|
119
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
123
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
|
120
124
|
msgid "Manipulate subnets."
|
|
121
125
|
msgstr "Manipular subredes."
|
|
122
126
|
|
|
123
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
127
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
|
124
128
|
msgid "Manipulate config templates."
|
|
125
129
|
msgstr "Manipular plantillas de configuración"
|
|
126
130
|
|
|
127
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
131
|
+
#: ../lib/hammer_cli_foreman.rb:136
|
|
128
132
|
msgid "Manipulate users."
|
|
129
133
|
msgstr "Manipular usuarios."
|
|
130
134
|
|
|
131
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
135
|
+
#: ../lib/hammer_cli_foreman.rb:140
|
|
132
136
|
msgid "Manage user groups."
|
|
133
137
|
msgstr "Administrar grupos de usuarios."
|
|
134
138
|
|
|
@@ -140,8 +144,8 @@ msgstr "Administrar grupos de usuarios."
|
|
|
140
144
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:10
|
|
141
145
|
#: ../lib/hammer_cli_foreman/filter.rb:9
|
|
142
146
|
#: ../lib/hammer_cli_foreman/filter.rb:72
|
|
143
|
-
#: ../lib/hammer_cli_foreman/host.rb:159 ../lib/hammer_cli_foreman/host.rb:
|
|
144
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
147
|
+
#: ../lib/hammer_cli_foreman/host.rb:159 ../lib/hammer_cli_foreman/host.rb:191
|
|
148
|
+
#: ../lib/hammer_cli_foreman/host.rb:222
|
|
145
149
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:57
|
|
146
150
|
#: ../lib/hammer_cli_foreman/image.rb:29
|
|
147
151
|
#: ../lib/hammer_cli_foreman/interface.rb:23
|
|
@@ -152,14 +156,14 @@ msgstr "Administrar grupos de usuarios."
|
|
|
152
156
|
#: ../lib/hammer_cli_foreman/organization.rb:13
|
|
153
157
|
#: ../lib/hammer_cli_foreman/partition_table.rb:10
|
|
154
158
|
#: ../lib/hammer_cli_foreman/puppet_class.rb:13
|
|
155
|
-
#: ../lib/hammer_cli_foreman/report.rb:10
|
|
159
|
+
#: ../lib/hammer_cli_foreman/realm.rb:8 ../lib/hammer_cli_foreman/report.rb:10
|
|
156
160
|
#: ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11
|
|
157
161
|
#: ../lib/hammer_cli_foreman/settings.rb:11
|
|
158
162
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:8
|
|
159
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
163
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75
|
|
160
164
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:11
|
|
161
165
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:8
|
|
162
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
166
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:66
|
|
163
167
|
#: ../lib/hammer_cli_foreman/subnet.rb:10
|
|
164
168
|
#: ../lib/hammer_cli_foreman/template.rb:25
|
|
165
169
|
#: ../lib/hammer_cli_foreman/user.rb:10
|
|
@@ -177,7 +181,7 @@ msgstr "ID"
|
|
|
177
181
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:42
|
|
178
182
|
#: ../lib/hammer_cli_foreman/filter.rb:73
|
|
179
183
|
#: ../lib/hammer_cli_foreman/filter.rb:90
|
|
180
|
-
#: ../lib/hammer_cli_foreman/host.rb:160 ../lib/hammer_cli_foreman/host.rb:
|
|
184
|
+
#: ../lib/hammer_cli_foreman/host.rb:160 ../lib/hammer_cli_foreman/host.rb:193
|
|
181
185
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:58
|
|
182
186
|
#: ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70
|
|
183
187
|
#: ../lib/hammer_cli_foreman/location.rb:14
|
|
@@ -186,10 +190,9 @@ msgstr "ID"
|
|
|
186
190
|
#: ../lib/hammer_cli_foreman/organization.rb:14
|
|
187
191
|
#: ../lib/hammer_cli_foreman/partition_table.rb:11
|
|
188
192
|
#: ../lib/hammer_cli_foreman/puppet_class.rb:14
|
|
189
|
-
#: ../lib/hammer_cli_foreman/role.rb:12
|
|
193
|
+
#: ../lib/hammer_cli_foreman/realm.rb:9 ../lib/hammer_cli_foreman/role.rb:12
|
|
190
194
|
#: ../lib/hammer_cli_foreman/settings.rb:12
|
|
191
195
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:12
|
|
192
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:10
|
|
193
196
|
#: ../lib/hammer_cli_foreman/subnet.rb:11
|
|
194
197
|
#: ../lib/hammer_cli_foreman/template.rb:26
|
|
195
198
|
#: ../lib/hammer_cli_foreman/template.rb:75
|
|
@@ -582,6 +585,30 @@ msgstr "El rol de usuario ha sido eliminado"
|
|
|
582
585
|
msgid "Could not remove the user role"
|
|
583
586
|
msgstr "No se pudo eliminar el rol de usuario"
|
|
584
587
|
|
|
588
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:357
|
|
589
|
+
msgid "Associate a location"
|
|
590
|
+
msgstr ""
|
|
591
|
+
|
|
592
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:359
|
|
593
|
+
msgid "The location has been associated"
|
|
594
|
+
msgstr ""
|
|
595
|
+
|
|
596
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:360
|
|
597
|
+
msgid "Could not associate the location"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:365
|
|
601
|
+
msgid "Disassociate a location"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:367
|
|
605
|
+
msgid "The location has been disassociated"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
#: ../lib/hammer_cli_foreman/associating_commands.rb:368
|
|
609
|
+
msgid "Could not disassociate the location"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
585
612
|
#: ../lib/hammer_cli_foreman/auth.rb:7
|
|
586
613
|
msgid "Set credentials"
|
|
587
614
|
msgstr "Establecer credenciales"
|
|
@@ -727,10 +754,10 @@ msgid "The %{resource_name} has been disassociated"
|
|
|
727
754
|
msgstr "El %{recurso_nombre} fue desasociado"
|
|
728
755
|
|
|
729
756
|
#: ../lib/hammer_cli_foreman/common_parameter.rb:13
|
|
730
|
-
#: ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
|
757
|
+
#: ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:318
|
|
731
758
|
#: ../lib/hammer_cli_foreman/settings.rb:13
|
|
732
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
733
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
759
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77
|
|
760
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:68
|
|
734
761
|
msgid "Value"
|
|
735
762
|
msgstr "Valor"
|
|
736
763
|
|
|
@@ -776,7 +803,7 @@ msgstr "Proveedor"
|
|
|
776
803
|
|
|
777
804
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:34
|
|
778
805
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
779
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
806
|
+
#: ../lib/hammer_cli_foreman/host.rb:192 ../lib/hammer_cli_foreman/image.rb:33
|
|
780
807
|
#: ../lib/hammer_cli_foreman/image.rb:71
|
|
781
808
|
msgid "UUID"
|
|
782
809
|
msgstr "UUID"
|
|
@@ -800,9 +827,11 @@ msgstr "Url"
|
|
|
800
827
|
|
|
801
828
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:55
|
|
802
829
|
#: ../lib/hammer_cli_foreman/domain.rb:42
|
|
830
|
+
#: ../lib/hammer_cli_foreman/location.rb:15
|
|
831
|
+
#: ../lib/hammer_cli_foreman/organization.rb:15
|
|
803
832
|
#: ../lib/hammer_cli_foreman/settings.rb:14
|
|
804
833
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:59
|
|
805
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
834
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:53
|
|
806
835
|
msgid "Description"
|
|
807
836
|
msgstr "Descripción"
|
|
808
837
|
|
|
@@ -1014,7 +1043,7 @@ msgstr "No se pudo borrar el grupo de usuario externo"
|
|
|
1014
1043
|
msgid "Host"
|
|
1015
1044
|
msgstr "Host"
|
|
1016
1045
|
|
|
1017
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
|
1046
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:317
|
|
1018
1047
|
msgid "Fact"
|
|
1019
1048
|
msgstr "Evento"
|
|
1020
1049
|
|
|
@@ -1106,21 +1135,21 @@ msgstr "Parámetros de la interfaz."
|
|
|
1106
1135
|
msgid "Enter the root password for the host:"
|
|
1107
1136
|
msgstr "Introduzca la contraseña de root para el host:"
|
|
1108
1137
|
|
|
1109
|
-
#: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:
|
|
1138
|
+
#: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:232
|
|
1110
1139
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:60
|
|
1111
1140
|
#: ../lib/hammer_cli_foreman/image.rb:31
|
|
1112
1141
|
msgid "Operating System"
|
|
1113
1142
|
msgstr "Sistema operativo"
|
|
1114
1143
|
|
|
1115
|
-
#: ../lib/hammer_cli_foreman/host.rb:162 ../lib/hammer_cli_foreman/host.rb:
|
|
1144
|
+
#: ../lib/hammer_cli_foreman/host.rb:162 ../lib/hammer_cli_foreman/host.rb:196
|
|
1116
1145
|
msgid "Host Group"
|
|
1117
1146
|
msgstr "Grupo de hosts"
|
|
1118
1147
|
|
|
1119
|
-
#: ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:
|
|
1148
|
+
#: ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:209
|
|
1120
1149
|
msgid "IP"
|
|
1121
1150
|
msgstr "IP"
|
|
1122
1151
|
|
|
1123
|
-
#: ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:
|
|
1152
|
+
#: ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:210
|
|
1124
1153
|
msgid "MAC"
|
|
1125
1154
|
msgstr "Dirección MAC"
|
|
1126
1155
|
|
|
@@ -1128,289 +1157,289 @@ msgstr "Dirección MAC"
|
|
|
1128
1157
|
msgid "Bare Metal"
|
|
1129
1158
|
msgstr "Bare Metal"
|
|
1130
1159
|
|
|
1131
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1160
|
+
#: ../lib/hammer_cli_foreman/host.rb:194
|
|
1132
1161
|
msgid "Organization"
|
|
1133
1162
|
msgstr "Organización"
|
|
1134
1163
|
|
|
1135
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1164
|
+
#: ../lib/hammer_cli_foreman/host.rb:195
|
|
1136
1165
|
msgid "Location"
|
|
1137
1166
|
msgstr "Ubicación"
|
|
1138
1167
|
|
|
1139
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1168
|
+
#: ../lib/hammer_cli_foreman/host.rb:197
|
|
1140
1169
|
msgid "Compute Resource"
|
|
1141
1170
|
msgstr "Recurso de cómputo"
|
|
1142
1171
|
|
|
1143
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1172
|
+
#: ../lib/hammer_cli_foreman/host.rb:198
|
|
1144
1173
|
msgid "Compute Profile"
|
|
1145
1174
|
msgstr "Perfil de Cómputo"
|
|
1146
1175
|
|
|
1147
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1176
|
+
#: ../lib/hammer_cli_foreman/host.rb:199
|
|
1148
1177
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1149
1178
|
msgid "Environment"
|
|
1150
1179
|
msgstr "Entorno"
|
|
1151
1180
|
|
|
1152
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1181
|
+
#: ../lib/hammer_cli_foreman/host.rb:200
|
|
1153
1182
|
msgid "Puppet CA Id"
|
|
1154
1183
|
msgstr "Puppet CA Id"
|
|
1155
1184
|
|
|
1156
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1185
|
+
#: ../lib/hammer_cli_foreman/host.rb:201
|
|
1157
1186
|
msgid "Puppet Master Id"
|
|
1158
1187
|
msgstr "Puppet Master Id"
|
|
1159
1188
|
|
|
1160
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1189
|
+
#: ../lib/hammer_cli_foreman/host.rb:202
|
|
1161
1190
|
msgid "Cert name"
|
|
1162
1191
|
msgstr "Nombre de certificado"
|
|
1163
1192
|
|
|
1164
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1193
|
+
#: ../lib/hammer_cli_foreman/host.rb:203
|
|
1165
1194
|
#: ../lib/hammer_cli_foreman/interface.rb:51
|
|
1166
1195
|
msgid "Managed"
|
|
1167
1196
|
msgstr "Administrado"
|
|
1168
1197
|
|
|
1169
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1198
|
+
#: ../lib/hammer_cli_foreman/host.rb:205
|
|
1170
1199
|
msgid "Installed at"
|
|
1171
1200
|
msgstr "Instalado en"
|
|
1172
1201
|
|
|
1173
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1202
|
+
#: ../lib/hammer_cli_foreman/host.rb:206
|
|
1174
1203
|
#: ../lib/hammer_cli_foreman/report.rb:12
|
|
1175
1204
|
msgid "Last report"
|
|
1176
1205
|
msgstr "Último informe"
|
|
1177
1206
|
|
|
1178
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1207
|
+
#: ../lib/hammer_cli_foreman/host.rb:208
|
|
1179
1208
|
#: ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1180
1209
|
msgid "Network"
|
|
1181
1210
|
msgstr "Red"
|
|
1182
1211
|
|
|
1183
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1212
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
|
1184
1213
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:72
|
|
1185
1214
|
#: ../lib/hammer_cli_foreman/interface.rb:49
|
|
1186
1215
|
msgid "Subnet"
|
|
1187
1216
|
msgstr "Subred"
|
|
1188
1217
|
|
|
1189
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1218
|
+
#: ../lib/hammer_cli_foreman/host.rb:212
|
|
1190
1219
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:74
|
|
1191
1220
|
#: ../lib/hammer_cli_foreman/interface.rb:50
|
|
1192
1221
|
msgid "Domain"
|
|
1193
1222
|
msgstr "Dominio"
|
|
1194
1223
|
|
|
1195
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1224
|
+
#: ../lib/hammer_cli_foreman/host.rb:213
|
|
1196
1225
|
msgid "Service provider"
|
|
1197
1226
|
msgstr "Proveedor de Servicio"
|
|
1198
1227
|
|
|
1199
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1228
|
+
#: ../lib/hammer_cli_foreman/host.rb:214
|
|
1200
1229
|
msgid "SP Name"
|
|
1201
1230
|
msgstr "Nombre de SP"
|
|
1202
1231
|
|
|
1203
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1232
|
+
#: ../lib/hammer_cli_foreman/host.rb:215
|
|
1204
1233
|
msgid "SP IP"
|
|
1205
1234
|
msgstr "IP de SP"
|
|
1206
1235
|
|
|
1207
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1236
|
+
#: ../lib/hammer_cli_foreman/host.rb:216
|
|
1208
1237
|
msgid "SP MAC"
|
|
1209
1238
|
msgstr "MAC de SP"
|
|
1210
1239
|
|
|
1211
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1240
|
+
#: ../lib/hammer_cli_foreman/host.rb:217
|
|
1212
1241
|
msgid "SP Subnet"
|
|
1213
1242
|
msgstr "Subred de SP"
|
|
1214
1243
|
|
|
1215
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1244
|
+
#: ../lib/hammer_cli_foreman/host.rb:221
|
|
1216
1245
|
msgid "Network interfaces"
|
|
1217
1246
|
msgstr "Interfaces de red"
|
|
1218
1247
|
|
|
1219
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1248
|
+
#: ../lib/hammer_cli_foreman/host.rb:223
|
|
1220
1249
|
#: ../lib/hammer_cli_foreman/interface.rb:24
|
|
1221
1250
|
#: ../lib/hammer_cli_foreman/interface.rb:44
|
|
1222
1251
|
msgid "Identifier"
|
|
1223
1252
|
msgstr "Identificador"
|
|
1224
1253
|
|
|
1225
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1254
|
+
#: ../lib/hammer_cli_foreman/host.rb:224
|
|
1226
1255
|
#: ../lib/hammer_cli_foreman/interface.rb:25
|
|
1227
1256
|
#: ../lib/hammer_cli_foreman/interface.rb:45
|
|
1228
1257
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:60
|
|
1229
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
1258
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:66
|
|
1230
1259
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:12
|
|
1231
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
1260
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:57
|
|
1232
1261
|
#: ../lib/hammer_cli_foreman/template.rb:27
|
|
1233
1262
|
msgid "Type"
|
|
1234
1263
|
msgstr "Tipo"
|
|
1235
1264
|
|
|
1236
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1265
|
+
#: ../lib/hammer_cli_foreman/host.rb:225
|
|
1237
1266
|
#: ../lib/hammer_cli_foreman/interface.rb:26
|
|
1238
1267
|
#: ../lib/hammer_cli_foreman/interface.rb:46
|
|
1239
1268
|
msgid "MAC address"
|
|
1240
1269
|
msgstr "Dirección MAC"
|
|
1241
1270
|
|
|
1242
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1271
|
+
#: ../lib/hammer_cli_foreman/host.rb:226
|
|
1243
1272
|
#: ../lib/hammer_cli_foreman/interface.rb:27
|
|
1244
1273
|
#: ../lib/hammer_cli_foreman/interface.rb:47
|
|
1245
1274
|
msgid "IP address"
|
|
1246
1275
|
msgstr "Dirección IP"
|
|
1247
1276
|
|
|
1248
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1277
|
+
#: ../lib/hammer_cli_foreman/host.rb:227
|
|
1249
1278
|
msgid "FQDN"
|
|
1250
1279
|
msgstr "FQDN"
|
|
1251
1280
|
|
|
1252
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1281
|
+
#: ../lib/hammer_cli_foreman/host.rb:230
|
|
1253
1282
|
msgid "Operating system"
|
|
1254
1283
|
msgstr "Sistema Operativo"
|
|
1255
1284
|
|
|
1256
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1285
|
+
#: ../lib/hammer_cli_foreman/host.rb:231
|
|
1257
1286
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:75
|
|
1258
1287
|
#: ../lib/hammer_cli_foreman/image.rb:45
|
|
1259
1288
|
msgid "Architecture"
|
|
1260
1289
|
msgstr "Arquitectura"
|
|
1261
1290
|
|
|
1262
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1291
|
+
#: ../lib/hammer_cli_foreman/host.rb:235
|
|
1263
1292
|
msgid "Build"
|
|
1264
1293
|
msgstr "Compilar"
|
|
1265
1294
|
|
|
1266
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1295
|
+
#: ../lib/hammer_cli_foreman/host.rb:236
|
|
1267
1296
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1268
1297
|
msgid "Medium"
|
|
1269
1298
|
msgstr "Medio"
|
|
1270
1299
|
|
|
1271
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1300
|
+
#: ../lib/hammer_cli_foreman/host.rb:237
|
|
1272
1301
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1273
1302
|
msgid "Partition Table"
|
|
1274
1303
|
msgstr "Tabla de particiones"
|
|
1275
1304
|
|
|
1276
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1305
|
+
#: ../lib/hammer_cli_foreman/host.rb:238
|
|
1277
1306
|
msgid "Custom partition table"
|
|
1278
1307
|
msgstr "Tabla de particiones personalizadas"
|
|
1279
1308
|
|
|
1280
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1309
|
+
#: ../lib/hammer_cli_foreman/host.rb:241
|
|
1281
1310
|
msgid "Image"
|
|
1282
1311
|
msgstr "Imagen"
|
|
1283
1312
|
|
|
1284
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1313
|
+
#: ../lib/hammer_cli_foreman/host.rb:242
|
|
1285
1314
|
msgid "Image file"
|
|
1286
1315
|
msgstr "Archivo de imagen"
|
|
1287
1316
|
|
|
1288
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1317
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
|
1289
1318
|
msgid "Use image"
|
|
1290
1319
|
msgstr "Usar imagen"
|
|
1291
1320
|
|
|
1292
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1321
|
+
#: ../lib/hammer_cli_foreman/host.rb:249
|
|
1293
1322
|
msgid "Additional info"
|
|
1294
1323
|
msgstr "Información adicional"
|
|
1295
1324
|
|
|
1296
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1325
|
+
#: ../lib/hammer_cli_foreman/host.rb:250
|
|
1297
1326
|
msgid "Owner Id"
|
|
1298
1327
|
msgstr "ID de propietario"
|
|
1299
1328
|
|
|
1300
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1329
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
|
1301
1330
|
msgid "Owner Type"
|
|
1302
1331
|
msgstr "Tipo de propietario"
|
|
1303
1332
|
|
|
1304
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1333
|
+
#: ../lib/hammer_cli_foreman/host.rb:252
|
|
1305
1334
|
msgid "Enabled"
|
|
1306
1335
|
msgstr "Habilitado"
|
|
1307
1336
|
|
|
1308
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1337
|
+
#: ../lib/hammer_cli_foreman/host.rb:253
|
|
1309
1338
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1310
1339
|
msgid "Model"
|
|
1311
1340
|
msgstr "Modelo"
|
|
1312
1341
|
|
|
1313
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1342
|
+
#: ../lib/hammer_cli_foreman/host.rb:254
|
|
1314
1343
|
msgid "Comment"
|
|
1315
1344
|
msgstr "Comentario"
|
|
1316
1345
|
|
|
1317
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1346
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1318
1347
|
msgid "Status"
|
|
1319
1348
|
msgstr "Estatus"
|
|
1320
1349
|
|
|
1321
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1350
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1322
1351
|
msgid "Power"
|
|
1323
1352
|
msgstr "Energía"
|
|
1324
1353
|
|
|
1325
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1354
|
+
#: ../lib/hammer_cli_foreman/host.rb:304
|
|
1326
1355
|
msgid "Puppet run triggered"
|
|
1327
1356
|
msgstr "Se activó una ejecución de Puppet"
|
|
1328
1357
|
|
|
1329
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1358
|
+
#: ../lib/hammer_cli_foreman/host.rb:357
|
|
1330
1359
|
msgid "Host created"
|
|
1331
1360
|
msgstr "Host creado"
|
|
1332
1361
|
|
|
1333
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1362
|
+
#: ../lib/hammer_cli_foreman/host.rb:358
|
|
1334
1363
|
msgid "Could not create the host"
|
|
1335
1364
|
msgstr "No se pudo crear el host"
|
|
1336
1365
|
|
|
1337
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1366
|
+
#: ../lib/hammer_cli_foreman/host.rb:375
|
|
1338
1367
|
msgid "Host updated"
|
|
1339
1368
|
msgstr "Se actualizó el host"
|
|
1340
1369
|
|
|
1341
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1370
|
+
#: ../lib/hammer_cli_foreman/host.rb:376
|
|
1342
1371
|
msgid "Could not update the host"
|
|
1343
1372
|
msgstr "No se pudo actualizar el host"
|
|
1344
1373
|
|
|
1345
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1374
|
+
#: ../lib/hammer_cli_foreman/host.rb:383
|
|
1346
1375
|
msgid "Host deleted"
|
|
1347
1376
|
msgstr "Host borrado"
|
|
1348
1377
|
|
|
1349
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1378
|
+
#: ../lib/hammer_cli_foreman/host.rb:384
|
|
1350
1379
|
msgid "Could not delete the host"
|
|
1351
1380
|
msgstr "No se pudo borrar el host"
|
|
1352
1381
|
|
|
1353
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1382
|
+
#: ../lib/hammer_cli_foreman/host.rb:391
|
|
1354
1383
|
msgid "Create or update parameter for a host."
|
|
1355
1384
|
msgstr "Crear o actualizar parámetro de un host."
|
|
1356
1385
|
|
|
1357
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1386
|
+
#: ../lib/hammer_cli_foreman/host.rb:393
|
|
1358
1387
|
msgid "Host parameter updated"
|
|
1359
1388
|
msgstr "Se actualizó el parámetro de host"
|
|
1360
1389
|
|
|
1361
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1390
|
+
#: ../lib/hammer_cli_foreman/host.rb:394
|
|
1362
1391
|
msgid "New host parameter created"
|
|
1363
1392
|
msgstr "Se ha creado parámetro de host"
|
|
1364
1393
|
|
|
1365
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1394
|
+
#: ../lib/hammer_cli_foreman/host.rb:395
|
|
1366
1395
|
msgid "Could not set host parameter"
|
|
1367
1396
|
msgstr "No se pudo establecer el parámetro de host"
|
|
1368
1397
|
|
|
1369
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1398
|
+
#: ../lib/hammer_cli_foreman/host.rb:407
|
|
1370
1399
|
msgid "Delete parameter for a host."
|
|
1371
1400
|
msgstr "Borrar parámetro de un host."
|
|
1372
1401
|
|
|
1373
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1402
|
+
#: ../lib/hammer_cli_foreman/host.rb:409
|
|
1374
1403
|
msgid "Host parameter deleted"
|
|
1375
1404
|
msgstr "Parámetro de host borrado"
|
|
1376
1405
|
|
|
1377
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1406
|
+
#: ../lib/hammer_cli_foreman/host.rb:424
|
|
1378
1407
|
msgid "Power a host on"
|
|
1379
1408
|
msgstr "Encender un host"
|
|
1380
1409
|
|
|
1381
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1410
|
+
#: ../lib/hammer_cli_foreman/host.rb:425
|
|
1382
1411
|
msgid "The host is starting."
|
|
1383
1412
|
msgstr "El host está arrancando."
|
|
1384
1413
|
|
|
1385
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1414
|
+
#: ../lib/hammer_cli_foreman/host.rb:442
|
|
1386
1415
|
msgid "Force turning off a host"
|
|
1387
1416
|
msgstr "Forzar apagado de un host"
|
|
1388
1417
|
|
|
1389
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1418
|
+
#: ../lib/hammer_cli_foreman/host.rb:447
|
|
1390
1419
|
msgid "Power a host off"
|
|
1391
1420
|
msgstr "Apagar un host"
|
|
1392
1421
|
|
|
1393
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1422
|
+
#: ../lib/hammer_cli_foreman/host.rb:459
|
|
1394
1423
|
msgid "Power off forced."
|
|
1395
1424
|
msgstr "Se forzó el apagado"
|
|
1396
1425
|
|
|
1397
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1426
|
+
#: ../lib/hammer_cli_foreman/host.rb:461
|
|
1398
1427
|
msgid "Powering the host off."
|
|
1399
1428
|
msgstr "Apagando el host a la fuerza."
|
|
1400
1429
|
|
|
1401
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1430
|
+
#: ../lib/hammer_cli_foreman/host.rb:478
|
|
1402
1431
|
msgid "Reboot a host"
|
|
1403
1432
|
msgstr "Reiniciar un host"
|
|
1404
1433
|
|
|
1405
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1434
|
+
#: ../lib/hammer_cli_foreman/host.rb:479
|
|
1406
1435
|
msgid "Host reboot started."
|
|
1407
1436
|
msgstr "Reinicio del host en proceso."
|
|
1408
1437
|
|
|
1409
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1438
|
+
#: ../lib/hammer_cli_foreman/host.rb:515
|
|
1410
1439
|
msgid "Rebuild orchestration related configurations for host"
|
|
1411
1440
|
msgstr "Recrear la orquestación con la configuración parecida para el aparato"
|
|
1412
1441
|
|
|
1413
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1442
|
+
#: ../lib/hammer_cli_foreman/host.rb:516
|
|
1414
1443
|
msgid "Configuration successfully rebuilt."
|
|
1415
1444
|
msgstr "La configuración fue recreada satisfactoriamente"
|
|
1416
1445
|
|
|
@@ -1596,6 +1625,8 @@ msgid "Smart class parameter name"
|
|
|
1596
1625
|
msgstr "Nombre de parámetro de clase inteligente"
|
|
1597
1626
|
|
|
1598
1627
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:63
|
|
1628
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50
|
|
1629
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:113
|
|
1599
1630
|
msgid "Smart variable name"
|
|
1600
1631
|
msgstr "Nombre de la variable inteligente"
|
|
1601
1632
|
|
|
@@ -1759,74 +1790,74 @@ msgstr "Interfaz borrada"
|
|
|
1759
1790
|
msgid "Could not delete the interface"
|
|
1760
1791
|
msgstr "No se pudo borrar la interfaz"
|
|
1761
1792
|
|
|
1762
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1763
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1764
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1793
|
+
#: ../lib/hammer_cli_foreman/location.rb:25
|
|
1794
|
+
#: ../lib/hammer_cli_foreman/location.rb:64
|
|
1795
|
+
#: ../lib/hammer_cli_foreman/location.rb:76
|
|
1765
1796
|
msgid "Location numeric id to search by"
|
|
1766
1797
|
msgstr "ID numérico de ubicación para la búsqueda"
|
|
1767
1798
|
|
|
1768
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1769
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
1799
|
+
#: ../lib/hammer_cli_foreman/location.rb:28
|
|
1800
|
+
#: ../lib/hammer_cli_foreman/organization.rb:28
|
|
1770
1801
|
msgid "Parent"
|
|
1771
1802
|
msgstr "Ancestro"
|
|
1772
1803
|
|
|
1773
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1804
|
+
#: ../lib/hammer_cli_foreman/location.rb:39
|
|
1774
1805
|
#: ../lib/hammer_cli_foreman/references.rb:18
|
|
1775
1806
|
msgid "Organizations"
|
|
1776
1807
|
msgstr "Organizaciones"
|
|
1777
1808
|
|
|
1778
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1809
|
+
#: ../lib/hammer_cli_foreman/location.rb:54
|
|
1779
1810
|
msgid "Location created"
|
|
1780
1811
|
msgstr "Ubicación creada"
|
|
1781
1812
|
|
|
1782
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1813
|
+
#: ../lib/hammer_cli_foreman/location.rb:55
|
|
1783
1814
|
msgid "Could not create the location"
|
|
1784
1815
|
msgstr "No se pudo crear la ubicación"
|
|
1785
1816
|
|
|
1786
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1817
|
+
#: ../lib/hammer_cli_foreman/location.rb:66
|
|
1787
1818
|
msgid "Location updated"
|
|
1788
1819
|
msgstr "Ubicación actualizada"
|
|
1789
1820
|
|
|
1790
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1821
|
+
#: ../lib/hammer_cli_foreman/location.rb:67
|
|
1791
1822
|
msgid "Could not update the location"
|
|
1792
1823
|
msgstr "No se pudo actualizar la ubicación"
|
|
1793
1824
|
|
|
1794
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1825
|
+
#: ../lib/hammer_cli_foreman/location.rb:78
|
|
1795
1826
|
msgid "Location deleted"
|
|
1796
1827
|
msgstr "Se borró la ubicación"
|
|
1797
1828
|
|
|
1798
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1829
|
+
#: ../lib/hammer_cli_foreman/location.rb:79
|
|
1799
1830
|
msgid "Could not delete the location"
|
|
1800
1831
|
msgstr "No se pudo borrar la ubicación"
|
|
1801
1832
|
|
|
1802
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1833
|
+
#: ../lib/hammer_cli_foreman/location.rb:88
|
|
1803
1834
|
msgid "Create or update parameter for a location."
|
|
1804
1835
|
msgstr "Crear o actualizar parámetro para ubicación."
|
|
1805
1836
|
|
|
1806
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1807
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
1837
|
+
#: ../lib/hammer_cli_foreman/location.rb:90
|
|
1838
|
+
#: ../lib/hammer_cli_foreman/organization.rb:91
|
|
1808
1839
|
msgid "Parameter [%{name}] updated to value [%{value}]"
|
|
1809
1840
|
msgstr "Parámetro [%{name}] actualizado al valor [%{value}]"
|
|
1810
1841
|
|
|
1811
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1812
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
1842
|
+
#: ../lib/hammer_cli_foreman/location.rb:91
|
|
1843
|
+
#: ../lib/hammer_cli_foreman/organization.rb:92
|
|
1813
1844
|
msgid "Parameter [%{name}] created with value [%{value}]"
|
|
1814
1845
|
msgstr "Parámetro [%{name}] creado con el valor [%{value}]"
|
|
1815
1846
|
|
|
1816
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1847
|
+
#: ../lib/hammer_cli_foreman/location.rb:92
|
|
1817
1848
|
msgid "Could not set location parameter"
|
|
1818
1849
|
msgstr "No se pudo establecer el parámetro de ubicación"
|
|
1819
1850
|
|
|
1820
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1851
|
+
#: ../lib/hammer_cli_foreman/location.rb:99
|
|
1821
1852
|
msgid "Delete parameter for a location."
|
|
1822
1853
|
msgstr "Eliminar parámetro de ubicación."
|
|
1823
1854
|
|
|
1824
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1825
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
1855
|
+
#: ../lib/hammer_cli_foreman/location.rb:101
|
|
1856
|
+
#: ../lib/hammer_cli_foreman/organization.rb:102
|
|
1826
1857
|
msgid "Parameter [%{name}] deleted"
|
|
1827
1858
|
msgstr "Parámetro [%{name}] eliminado"
|
|
1828
1859
|
|
|
1829
|
-
#: ../lib/hammer_cli_foreman/location.rb:
|
|
1860
|
+
#: ../lib/hammer_cli_foreman/location.rb:102
|
|
1830
1861
|
msgid "Could not delete location parameter"
|
|
1831
1862
|
msgstr "No se pudo eliminar el parámetro de ubicación"
|
|
1832
1863
|
|
|
@@ -2009,48 +2040,48 @@ msgstr "No se pudo borrar la plantilla predeterminada"
|
|
|
2009
2040
|
msgid "Default template of type %s not found"
|
|
2010
2041
|
msgstr "No se encontró la plantilla predeterminada del tipo %s"
|
|
2011
2042
|
|
|
2012
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2043
|
+
#: ../lib/hammer_cli_foreman/organization.rb:39
|
|
2013
2044
|
#: ../lib/hammer_cli_foreman/references.rb:15
|
|
2014
2045
|
msgid "Locations"
|
|
2015
2046
|
msgstr "Ubicaciones"
|
|
2016
2047
|
|
|
2017
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2048
|
+
#: ../lib/hammer_cli_foreman/organization.rb:55
|
|
2018
2049
|
msgid "Organization created"
|
|
2019
2050
|
msgstr "Se creó organización"
|
|
2020
2051
|
|
|
2021
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2052
|
+
#: ../lib/hammer_cli_foreman/organization.rb:56
|
|
2022
2053
|
msgid "Could not create the organization"
|
|
2023
2054
|
msgstr "No se pudo crear organización"
|
|
2024
2055
|
|
|
2025
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2056
|
+
#: ../lib/hammer_cli_foreman/organization.rb:67
|
|
2026
2057
|
msgid "Organization updated"
|
|
2027
2058
|
msgstr "Se actualizó organización"
|
|
2028
2059
|
|
|
2029
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2060
|
+
#: ../lib/hammer_cli_foreman/organization.rb:68
|
|
2030
2061
|
msgid "Could not update the organization"
|
|
2031
2062
|
msgstr "No se pudo actualizar la organización"
|
|
2032
2063
|
|
|
2033
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2064
|
+
#: ../lib/hammer_cli_foreman/organization.rb:79
|
|
2034
2065
|
msgid "Organization deleted"
|
|
2035
2066
|
msgstr "Se borró organización"
|
|
2036
2067
|
|
|
2037
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2068
|
+
#: ../lib/hammer_cli_foreman/organization.rb:80
|
|
2038
2069
|
msgid "Could not delete the organization"
|
|
2039
2070
|
msgstr "No se pudo borrar la organización"
|
|
2040
2071
|
|
|
2041
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2072
|
+
#: ../lib/hammer_cli_foreman/organization.rb:89
|
|
2042
2073
|
msgid "Create or update parameter for an organization."
|
|
2043
2074
|
msgstr "Crear o actualizar el parámetro para una organización."
|
|
2044
2075
|
|
|
2045
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2076
|
+
#: ../lib/hammer_cli_foreman/organization.rb:93
|
|
2046
2077
|
msgid "Could not set organization parameter"
|
|
2047
2078
|
msgstr "No se pudo establecer el parámetro de organización"
|
|
2048
2079
|
|
|
2049
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2080
|
+
#: ../lib/hammer_cli_foreman/organization.rb:100
|
|
2050
2081
|
msgid "Delete parameter for an organization."
|
|
2051
2082
|
msgstr "Eliminar el parámetro para una organización."
|
|
2052
2083
|
|
|
2053
|
-
#: ../lib/hammer_cli_foreman/organization.rb:
|
|
2084
|
+
#: ../lib/hammer_cli_foreman/organization.rb:103
|
|
2054
2085
|
msgid "Could not delete organization parameter"
|
|
2055
2086
|
msgstr "No se puede eliminar el parámetro de la organización"
|
|
2056
2087
|
|
|
@@ -2109,6 +2140,38 @@ msgstr "Valor predeterminado"
|
|
|
2109
2140
|
msgid "Smart class parameters"
|
|
2110
2141
|
msgstr "Parámetros de clase inteligentes"
|
|
2111
2142
|
|
|
2143
|
+
#: ../lib/hammer_cli_foreman/realm.rb:18
|
|
2144
|
+
msgid "Realm proxy id"
|
|
2145
|
+
msgstr ""
|
|
2146
|
+
|
|
2147
|
+
#: ../lib/hammer_cli_foreman/realm.rb:19
|
|
2148
|
+
msgid "Realm type"
|
|
2149
|
+
msgstr ""
|
|
2150
|
+
|
|
2151
|
+
#: ../lib/hammer_cli_foreman/realm.rb:29
|
|
2152
|
+
msgid "Realm [%{name}] created"
|
|
2153
|
+
msgstr ""
|
|
2154
|
+
|
|
2155
|
+
#: ../lib/hammer_cli_foreman/realm.rb:30
|
|
2156
|
+
msgid "Could not create the realm"
|
|
2157
|
+
msgstr ""
|
|
2158
|
+
|
|
2159
|
+
#: ../lib/hammer_cli_foreman/realm.rb:37
|
|
2160
|
+
msgid "Realm [%{name}] updated"
|
|
2161
|
+
msgstr ""
|
|
2162
|
+
|
|
2163
|
+
#: ../lib/hammer_cli_foreman/realm.rb:38
|
|
2164
|
+
msgid "Could not update the realm"
|
|
2165
|
+
msgstr ""
|
|
2166
|
+
|
|
2167
|
+
#: ../lib/hammer_cli_foreman/realm.rb:45
|
|
2168
|
+
msgid "Realm [%{name}] deleted"
|
|
2169
|
+
msgstr ""
|
|
2170
|
+
|
|
2171
|
+
#: ../lib/hammer_cli_foreman/realm.rb:46
|
|
2172
|
+
msgid "Could not delete the realm"
|
|
2173
|
+
msgstr ""
|
|
2174
|
+
|
|
2112
2175
|
#: ../lib/hammer_cli_foreman/references.rb:8
|
|
2113
2176
|
msgid "Created at"
|
|
2114
2177
|
msgstr "Creado"
|
|
@@ -2347,106 +2410,111 @@ msgid "Class Id"
|
|
|
2347
2410
|
msgstr "Id de clase"
|
|
2348
2411
|
|
|
2349
2412
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61
|
|
2350
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2413
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:54
|
|
2351
2414
|
msgid "Hidden Value?"
|
|
2352
2415
|
msgstr "Valor ocultado?"
|
|
2353
2416
|
|
|
2354
2417
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62
|
|
2418
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:78
|
|
2419
|
+
msgid "Use puppet default"
|
|
2420
|
+
msgstr ""
|
|
2421
|
+
|
|
2422
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
|
|
2355
2423
|
msgid "Required"
|
|
2356
2424
|
msgstr "Obligatorio"
|
|
2357
2425
|
|
|
2358
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2359
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2426
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65
|
|
2427
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:56
|
|
2360
2428
|
msgid "Validator"
|
|
2361
2429
|
msgstr "Validador"
|
|
2362
2430
|
|
|
2363
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2364
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2431
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:67
|
|
2432
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:58
|
|
2365
2433
|
msgid "Rule"
|
|
2366
2434
|
msgstr "Regla"
|
|
2367
2435
|
|
|
2368
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2369
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2436
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69
|
|
2437
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:60
|
|
2370
2438
|
msgid "Override values"
|
|
2371
2439
|
msgstr "Sobrescribir valores"
|
|
2372
2440
|
|
|
2373
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2374
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2441
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70
|
|
2442
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:61
|
|
2375
2443
|
msgid "Merge overrides"
|
|
2376
2444
|
msgstr "Combinar sustituciones"
|
|
2377
2445
|
|
|
2378
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2379
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2446
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71
|
|
2447
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:62
|
|
2380
2448
|
msgid "Merge default value"
|
|
2381
2449
|
msgstr "Combinar valor predeterminado"
|
|
2382
2450
|
|
|
2383
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2384
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2451
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72
|
|
2452
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:63
|
|
2385
2453
|
msgid "Avoid duplicates"
|
|
2386
2454
|
msgstr "Evitar duplicados"
|
|
2387
2455
|
|
|
2388
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2389
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2456
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73
|
|
2457
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:64
|
|
2390
2458
|
msgid "Order"
|
|
2391
2459
|
msgstr "Orden"
|
|
2392
2460
|
|
|
2393
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2394
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2461
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74
|
|
2462
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2395
2463
|
msgid "Values"
|
|
2396
2464
|
msgstr "Valores"
|
|
2397
2465
|
|
|
2398
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2399
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2466
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76
|
|
2467
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2400
2468
|
msgid "Match"
|
|
2401
2469
|
msgstr "Corresponder"
|
|
2402
2470
|
|
|
2403
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2471
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:105
|
|
2404
2472
|
msgid "Parameter updated"
|
|
2405
2473
|
msgstr "Parámetro actualizado"
|
|
2406
2474
|
|
|
2407
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2475
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:106
|
|
2408
2476
|
msgid "Could not update the parameter"
|
|
2409
2477
|
msgstr "No se pudo actualizar el parámetro"
|
|
2410
2478
|
|
|
2411
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2479
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:113
|
|
2412
2480
|
msgid "Override this parameter."
|
|
2413
2481
|
msgstr "Sobrescribir este parámetro."
|
|
2414
2482
|
|
|
2415
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2483
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:115
|
|
2416
2484
|
msgid "This parameter is required."
|
|
2417
2485
|
msgstr "El parámetro es obligatorio."
|
|
2418
2486
|
|
|
2419
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2487
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117
|
|
2420
2488
|
msgid "Type of the parameter."
|
|
2421
2489
|
msgstr "Tipo de parámetro."
|
|
2422
2490
|
|
|
2423
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2424
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2425
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2491
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120
|
|
2492
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:93
|
|
2493
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:107
|
|
2426
2494
|
msgid "Type of the validator."
|
|
2427
2495
|
msgstr "Tipo de validador."
|
|
2428
2496
|
|
|
2429
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2430
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2497
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134
|
|
2498
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2431
2499
|
msgid "Override value created"
|
|
2432
2500
|
msgstr "Sustituir valor creado"
|
|
2433
2501
|
|
|
2434
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2435
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2502
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135
|
|
2503
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:127
|
|
2436
2504
|
msgid "Could not create the override value"
|
|
2437
2505
|
msgstr "No se pudo crear override_value"
|
|
2438
2506
|
|
|
2439
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2507
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2440
2508
|
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2441
2509
|
msgstr "No se pudo usar --valor cuando --usa-puppet-defaul es verdad"
|
|
2442
2510
|
|
|
2443
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2444
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2511
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158
|
|
2512
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2445
2513
|
msgid "Override value deleted"
|
|
2446
2514
|
msgstr "Sustituir valor borrado"
|
|
2447
2515
|
|
|
2448
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2449
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2516
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159
|
|
2517
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:140
|
|
2450
2518
|
msgid "Could not delete the override value"
|
|
2451
2519
|
msgstr "No se pudo borrar el valor sustituido"
|
|
2452
2520
|
|
|
@@ -2503,32 +2571,41 @@ msgstr "Se actualizaron las funcionalidades del proxy inteligente"
|
|
|
2503
2571
|
msgid "Refresh of smart proxy features failed"
|
|
2504
2572
|
msgstr "Error al actualizar las funcionalidades del proxy inteligente"
|
|
2505
2573
|
|
|
2506
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2574
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:10
|
|
2575
|
+
msgid "Variable"
|
|
2576
|
+
msgstr ""
|
|
2577
|
+
|
|
2578
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50
|
|
2579
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:113
|
|
2580
|
+
msgid "Use --variable instead"
|
|
2581
|
+
msgstr ""
|
|
2582
|
+
|
|
2583
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2507
2584
|
msgid "Smart variable [%{variable}] created"
|
|
2508
2585
|
msgstr "Variable inteligente [%{variable}] creada"
|
|
2509
2586
|
|
|
2510
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2587
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:86
|
|
2511
2588
|
msgid "Could not create the smart variable"
|
|
2512
2589
|
msgstr "No se pudo crear la variable inteligente"
|
|
2513
2590
|
|
|
2514
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2515
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2591
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:90
|
|
2592
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:104
|
|
2516
2593
|
msgid "Type of the variable."
|
|
2517
2594
|
msgstr "Tipo de variable."
|
|
2518
2595
|
|
|
2519
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2596
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2520
2597
|
msgid "Smart variable [%{variable}] updated"
|
|
2521
2598
|
msgstr "Variable inteligente [%{variable}] actualizada"
|
|
2522
2599
|
|
|
2523
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2600
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:100
|
|
2524
2601
|
msgid "Could not update the smart variable"
|
|
2525
2602
|
msgstr "No se pudo actualizar la variable inteligente"
|
|
2526
2603
|
|
|
2527
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2604
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2528
2605
|
msgid "Smart variable [%{variable}] deleted"
|
|
2529
2606
|
msgstr "Variable inteligente [%{variable}] eliminada"
|
|
2530
2607
|
|
|
2531
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2608
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:116
|
|
2532
2609
|
msgid "Could not delete the smart variable"
|
|
2533
2610
|
msgstr "No se pudo borrar la variable inteligente"
|
|
2534
2611
|
|
|
@@ -2667,6 +2744,7 @@ msgid "Email"
|
|
|
2667
2744
|
msgstr "Correo electrónico"
|
|
2668
2745
|
|
|
2669
2746
|
#: ../lib/hammer_cli_foreman/user.rb:28
|
|
2747
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:13
|
|
2670
2748
|
msgid "Admin"
|
|
2671
2749
|
msgstr "Administrar"
|
|
2672
2750
|
|
|
@@ -2726,26 +2804,26 @@ msgstr "Se borró el usuario [%{login}]"
|
|
|
2726
2804
|
msgid "Could not delete the user"
|
|
2727
2805
|
msgstr "No se pudo borrar el usuario"
|
|
2728
2806
|
|
|
2729
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2807
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:32
|
|
2730
2808
|
msgid "User group [%<name>s] created"
|
|
2731
2809
|
msgstr "Se creó el grupo de usuario [%<name>s]"
|
|
2732
2810
|
|
|
2733
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2811
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:33
|
|
2734
2812
|
msgid "Could not create the user group"
|
|
2735
2813
|
msgstr "No se pudo crear el grupo de usuarios"
|
|
2736
2814
|
|
|
2737
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2815
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:39
|
|
2738
2816
|
msgid "User group [%<name>s] updated"
|
|
2739
2817
|
msgstr "Se actualizó el grupo de usuarios [%<name>s]"
|
|
2740
2818
|
|
|
2741
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2819
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:40
|
|
2742
2820
|
msgid "Could not update the user group"
|
|
2743
2821
|
msgstr "No se pudo actualizar el grupo de usuarios"
|
|
2744
2822
|
|
|
2745
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2823
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:46
|
|
2746
2824
|
msgid "User group [%<name>s] deleted"
|
|
2747
2825
|
msgstr "Se borró el grupo de usuarios [%<name>s]"
|
|
2748
2826
|
|
|
2749
|
-
#: ../lib/hammer_cli_foreman/usergroup.rb:
|
|
2827
|
+
#: ../lib/hammer_cli_foreman/usergroup.rb:47
|
|
2750
2828
|
msgid "Could not delete the user group"
|
|
2751
2829
|
msgstr "No se pudo borrar el grupo de usuarios"
|