hammer_cli_foreman 0.1.4 → 0.2.0

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

Potentially problematic release.


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

Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +16 -0
  3. data/doc/host_create.md +102 -54
  4. data/doc/release_notes.md +20 -0
  5. data/lib/hammer_cli_foreman.rb +8 -0
  6. data/lib/hammer_cli_foreman/commands.rb +33 -9
  7. data/lib/hammer_cli_foreman/compute_resource.rb +13 -2
  8. data/lib/hammer_cli_foreman/domain.rb +24 -1
  9. data/lib/hammer_cli_foreman/environment.rb +1 -2
  10. data/lib/hammer_cli_foreman/host.rb +131 -73
  11. data/lib/hammer_cli_foreman/hostgroup.rb +18 -8
  12. data/lib/hammer_cli_foreman/i18n.rb +2 -6
  13. data/lib/hammer_cli_foreman/id_resolver.rb +41 -6
  14. data/lib/hammer_cli_foreman/interface.rb +165 -0
  15. data/lib/hammer_cli_foreman/output/fields.rb +7 -0
  16. data/lib/hammer_cli_foreman/output/formatters.rb +3 -5
  17. data/lib/hammer_cli_foreman/puppet_class.rb +16 -2
  18. data/lib/hammer_cli_foreman/settings.rb +37 -0
  19. data/lib/hammer_cli_foreman/smart_class_parameter.rb +75 -11
  20. data/lib/hammer_cli_foreman/smart_variable.rb +146 -0
  21. data/lib/hammer_cli_foreman/user.rb +9 -3
  22. data/lib/hammer_cli_foreman/version.rb +1 -1
  23. data/locale/Makefile +9 -17
  24. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/de/hammer-cli-foreman.edit.po +2403 -0
  26. data/locale/de/hammer-cli-foreman.po +302 -355
  27. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  28. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/en/hammer-cli-foreman.edit.po +2260 -0
  30. data/locale/en/hammer-cli-foreman.po +946 -823
  31. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  32. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  33. data/locale/en_GB/hammer-cli-foreman.edit.po +2267 -0
  34. data/locale/en_GB/hammer-cli-foreman.po +297 -351
  35. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  36. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  37. data/locale/es/hammer-cli-foreman.edit.po +2427 -0
  38. data/locale/es/hammer-cli-foreman.po +301 -354
  39. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  40. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/fr/hammer-cli-foreman.edit.po +2427 -0
  42. data/locale/fr/hammer-cli-foreman.po +299 -353
  43. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  44. data/locale/hammer-cli-foreman.pot +1413 -1112
  45. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/it/hammer-cli-foreman.edit.po +2402 -0
  47. data/locale/it/hammer-cli-foreman.po +299 -353
  48. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  49. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/ja/hammer-cli-foreman.edit.po +2401 -0
  51. data/locale/ja/hammer-cli-foreman.po +338 -391
  52. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  53. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/ko/hammer-cli-foreman.edit.po +2401 -0
  55. data/locale/ko/hammer-cli-foreman.po +299 -353
  56. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  57. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  58. data/locale/pt_BR/hammer-cli-foreman.edit.po +2417 -0
  59. data/locale/pt_BR/hammer-cli-foreman.po +312 -365
  60. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  61. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  62. data/locale/ru/hammer-cli-foreman.edit.po +2401 -0
  63. data/locale/ru/hammer-cli-foreman.po +300 -354
  64. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  65. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  66. data/locale/zh_CN/hammer-cli-foreman.edit.po +2400 -0
  67. data/locale/zh_CN/hammer-cli-foreman.po +299 -353
  68. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  69. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  70. data/locale/zh_TW/hammer-cli-foreman.edit.po +2400 -0
  71. data/locale/zh_TW/hammer-cli-foreman.po +299 -353
  72. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  73. data/test/unit/apipie_resource_mock.rb +7 -0
  74. data/test/unit/commands_test.rb +42 -0
  75. data/test/unit/data/1.7/foreman_api.json +1 -0
  76. data/test/unit/dependency_resolver_test.rb +4 -2
  77. data/test/unit/environment_test.rb +2 -2
  78. data/test/unit/host_test.rb +50 -27
  79. data/test/unit/hostgroup_test.rb +19 -3
  80. data/test/unit/media_test.rb +2 -2
  81. data/test/unit/puppet_class_test.rb +17 -2
  82. data/test/unit/smart_class_parameter_test.rb +26 -2
  83. data/test/unit/smart_variable_test.rb +134 -0
  84. data/test/unit/test_helper.rb +1 -1
  85. metadata +36 -4
@@ -5,14 +5,15 @@
5
5
  # Translators:
6
6
  # Dominic Cleal <dcleal@redhat.com>, 2014
7
7
  # elobato <elobatocs@gmail.com>, 2014
8
+ # francis <hackgo@gmail.com>, 2014
8
9
  # Sergio Ocón <sergio.ocon@redhat.com>, 2014
9
10
  msgid ""
10
11
  msgstr ""
11
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
12
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
12
13
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2014-09-19 13:34+0200\n"
14
- "PO-Revision-Date: 2014-10-11 10:31+0000\n"
15
- "Last-Translator: Sergio Ocón <sergio.ocon@redhat.com>\n"
14
+ "POT-Creation-Date: 2014-12-11 13:21+0100\n"
15
+ "PO-Revision-Date: 2015-03-22 03:37+0000\n"
16
+ "Last-Translator: francis <hackgo@gmail.com>\n"
16
17
  "Language-Team: Spanish (http://www.transifex.com/projects/p/foreman/language/es/)\n"
17
18
  "MIME-Version: 1.0\n"
18
19
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,13 +26,10 @@ msgstr ""
25
26
  #: lib/hammer_cli_foreman/organization.rb:13
26
27
  #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
27
28
  #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
28
- #: lib/hammer_cli_foreman/override_value.rb:28
29
29
  #: lib/hammer_cli_foreman/compute_resource.rb:11
30
- #: lib/hammer_cli_foreman/smart_variables.rb:7
31
- #: lib/hammer_cli_foreman/smart_variables.rb:65
32
- #: lib/hammer_cli_foreman/hostgroup.rb:39
33
- #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
34
- #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
30
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
31
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:128
32
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
35
33
  #: lib/hammer_cli_foreman/operating_system.rb:10
36
34
  #: lib/hammer_cli_foreman/smart_proxy.rb:11
37
35
  #: lib/hammer_cli_foreman/environment.rb:14
@@ -53,7 +51,7 @@ msgstr "Id"
53
51
  msgid "Host"
54
52
  msgstr "Equipo"
55
53
 
56
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
54
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
57
55
  msgid "Last report"
58
56
  msgstr "Último informe"
59
57
 
@@ -163,12 +161,11 @@ msgstr "Ver y gestionar los grupos de usuarios externos de los grupos de usuario
163
161
  #: lib/hammer_cli_foreman/common_parameter.rb:12
164
162
  #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
165
163
  #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
166
- #: lib/hammer_cli_foreman/override_value.rb:29
167
164
  #: lib/hammer_cli_foreman/compute_resource.rb:12
168
- #: lib/hammer_cli_foreman/hostgroup.rb:40
165
+ #: lib/hammer_cli_foreman/hostgroup.rb:47
169
166
  #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
170
- #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
171
- #: lib/hammer_cli_foreman/host.rb:209
167
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
168
+ #: lib/hammer_cli_foreman/host.rb:213
172
169
  #: lib/hammer_cli_foreman/operating_system.rb:22
173
170
  #: lib/hammer_cli_foreman/smart_proxy.rb:12
174
171
  #: lib/hammer_cli_foreman/environment.rb:15
@@ -246,10 +243,7 @@ msgid "Could not delete the organization"
246
243
  msgstr "No se pudo borrar la organización"
247
244
 
248
245
  #: lib/hammer_cli_foreman/common_parameter.rb:13
249
- #: lib/hammer_cli_foreman/fact.rb:14
250
- #: lib/hammer_cli_foreman/smart_variables.rb:64
251
- #: lib/hammer_cli_foreman/smart_variables.rb:67
252
- #: lib/hammer_cli_foreman/host.rb:282
246
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
253
247
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
254
248
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
255
249
  msgid "Value"
@@ -402,41 +396,41 @@ msgstr "No se pudo actualizar el modelo de hardware"
402
396
  msgid "User role id"
403
397
  msgstr "ID de rol de usuario"
404
398
 
405
- #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
399
+ #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
406
400
  #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
407
401
  msgid "(Miscellaneous)"
408
402
  msgstr "(Misceláneo)"
409
403
 
410
- #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
404
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
411
405
  #: lib/hammer_cli_foreman/filter.rb:35
412
406
  msgid "none"
413
407
  msgstr "nada"
414
408
 
415
- #: lib/hammer_cli_foreman/role.rb:50
409
+ #: lib/hammer_cli_foreman/role.rb:47
416
410
  msgid "User role [%<name>s] created"
417
411
  msgstr "Rol de usuario [%<name>s] creado"
418
412
 
419
- #: lib/hammer_cli_foreman/role.rb:51
413
+ #: lib/hammer_cli_foreman/role.rb:48
420
414
  msgid "Could not create the user role"
421
415
  msgstr "No se pudo crear el rol de usuario"
422
416
 
423
- #: lib/hammer_cli_foreman/role.rb:58
417
+ #: lib/hammer_cli_foreman/role.rb:55
424
418
  msgid "User role [%<name>s] updated"
425
419
  msgstr "Rol de usuario [%<name>s] actualizado"
426
420
 
427
- #: lib/hammer_cli_foreman/role.rb:59
421
+ #: lib/hammer_cli_foreman/role.rb:56
428
422
  msgid "Could not update the user role"
429
423
  msgstr "No se pudo actualizar el rol de usuario"
430
424
 
431
- #: lib/hammer_cli_foreman/role.rb:66
425
+ #: lib/hammer_cli_foreman/role.rb:63
432
426
  msgid "User role [%<name>s] deleted"
433
427
  msgstr "Rol de usuario [%<name>s] borrado"
434
428
 
435
- #: lib/hammer_cli_foreman/role.rb:67
429
+ #: lib/hammer_cli_foreman/role.rb:64
436
430
  msgid "Could not delete the user roles"
437
431
  msgstr "No se pudo borrar los roles del usuario"
438
432
 
439
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
433
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
440
434
  msgid "Fact"
441
435
  msgstr "Dato"
442
436
 
@@ -473,64 +467,6 @@ msgstr "Se borró el medio de instalación"
473
467
  msgid "Could not delete the installation media"
474
468
  msgstr "No se pudo borrar el medio de instalación"
475
469
 
476
- #: lib/hammer_cli_foreman/override_value.rb:7
477
- msgid "View and manage override values"
478
- msgstr "Ver y gestionar valores preponderantes"
479
-
480
- #: lib/hammer_cli_foreman/override_value.rb:30
481
- #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:126
482
- #: lib/hammer_cli_foreman/image.rb:31
483
- msgid "Operating System"
484
- msgstr "Sistema Operativo"
485
-
486
- #: lib/hammer_cli_foreman/override_value.rb:31
487
- #: lib/hammer_cli_foreman/image.rb:32
488
- msgid "Username"
489
- msgstr "Nombre de usuario"
490
-
491
- #: lib/hammer_cli_foreman/override_value.rb:32
492
- #: lib/hammer_cli_foreman/compute_resource.rb:23
493
- #: lib/hammer_cli_foreman/compute_resource.rb:29
494
- #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
495
- #: lib/hammer_cli_foreman/image.rb:71
496
- msgid "UUID"
497
- msgstr "UUID"
498
-
499
- #: lib/hammer_cli_foreman/override_value.rb:44
500
- #: lib/hammer_cli_foreman/hostgroup.rb:58 lib/hammer_cli_foreman/host.rb:188
501
- #: lib/hammer_cli_foreman/image.rb:45
502
- msgid "Architecture"
503
- msgstr "Arquitectura"
504
-
505
- #: lib/hammer_cli_foreman/override_value.rb:45
506
- #: lib/hammer_cli_foreman/image.rb:46
507
- msgid "IAM role"
508
- msgstr "rol de IAM"
509
-
510
- #: lib/hammer_cli_foreman/override_value.rb:55
511
- msgid "OverrideValue created"
512
- msgstr "Se creó OverrideValue"
513
-
514
- #: lib/hammer_cli_foreman/override_value.rb:56
515
- msgid "Could not create the override_value"
516
- msgstr "No se pudo crear override_value"
517
-
518
- #: lib/hammer_cli_foreman/override_value.rb:64
519
- msgid "OverrideValue updated"
520
- msgstr "Se actualizó OverrideValue"
521
-
522
- #: lib/hammer_cli_foreman/override_value.rb:65
523
- msgid "Could not update the override_value"
524
- msgstr "No se pudo actualizar override_value"
525
-
526
- #: lib/hammer_cli_foreman/override_value.rb:73
527
- msgid "OverrideValue deleted"
528
- msgstr "Se borró OverrideValue"
529
-
530
- #: lib/hammer_cli_foreman/override_value.rb:74
531
- msgid "Could not delete the override_value"
532
- msgstr "No se pudo borrar override_value"
533
-
534
470
  #: lib/hammer_cli_foreman/exception_handler.rb:41
535
471
  msgid "Forbidden - server refused to process the request"
536
472
  msgstr "Prohibido - el servidor se negó a procesar la petición"
@@ -553,6 +489,13 @@ msgstr "¿se ejecutó '%s' en el servidor al usar la caché apipe? (configuraci
553
489
  msgid "Provider"
554
490
  msgstr "Proveedor"
555
491
 
492
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
493
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
494
+ #: lib/hammer_cli_foreman/host.rb:161 lib/hammer_cli_foreman/image.rb:33
495
+ #: lib/hammer_cli_foreman/image.rb:71
496
+ msgid "UUID"
497
+ msgstr "UUID"
498
+
556
499
  #: lib/hammer_cli_foreman/compute_resource.rb:26
557
500
  #: lib/hammer_cli_foreman/compute_resource.rb:36
558
501
  msgid "Region"
@@ -571,7 +514,6 @@ msgid "Url"
571
514
  msgstr "Url"
572
515
 
573
516
  #: lib/hammer_cli_foreman/compute_resource.rb:44
574
- #: lib/hammer_cli_foreman/smart_variables.rb:52
575
517
  #: lib/hammer_cli_foreman/domain.rb:21
576
518
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
577
519
  msgid "Description"
@@ -789,109 +731,6 @@ msgstr "El rol de usuario ha sido eliminado"
789
731
  msgid "Could not remove the user role"
790
732
  msgstr "No se pudo eliminar el rol de usuario"
791
733
 
792
- #: lib/hammer_cli_foreman/smart_variables.rb:9
793
- #: lib/hammer_cli_foreman/puppet_class.rb:34
794
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
795
- msgid "Parameter"
796
- msgstr "Parámetro"
797
-
798
- #: lib/hammer_cli_foreman/smart_variables.rb:10
799
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
800
- msgid "Default Value"
801
- msgstr "Valor por Defecto"
802
-
803
- #: lib/hammer_cli_foreman/smart_variables.rb:11
804
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
805
- msgid "Override"
806
- msgstr "Reemplazar"
807
-
808
- #: lib/hammer_cli_foreman/smart_variables.rb:32
809
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
810
- msgid "Puppet class"
811
- msgstr "Clase Puppet"
812
-
813
- #: lib/hammer_cli_foreman/smart_variables.rb:33
814
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
815
- msgid "Class Id"
816
- msgstr "Id de clase"
817
-
818
- #: lib/hammer_cli_foreman/smart_variables.rb:53
819
- #: lib/hammer_cli_foreman/smart_variables.rb:57
820
- #: lib/hammer_cli_foreman/template.rb:27
821
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
822
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
823
- msgid "Type"
824
- msgstr "Tipo"
825
-
826
- #: lib/hammer_cli_foreman/smart_variables.rb:54
827
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
828
- msgid "Required"
829
- msgstr "Necesario"
830
-
831
- #: lib/hammer_cli_foreman/smart_variables.rb:56
832
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
833
- msgid "Validator"
834
- msgstr "Validador"
835
-
836
- #: lib/hammer_cli_foreman/smart_variables.rb:58
837
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
838
- msgid "Rule"
839
- msgstr "Regla"
840
-
841
- #: lib/hammer_cli_foreman/smart_variables.rb:60
842
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
843
- msgid "Override values"
844
- msgstr "Reemplazar valores"
845
-
846
- #: lib/hammer_cli_foreman/smart_variables.rb:61
847
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
848
- msgid "Order"
849
- msgstr "Orden"
850
-
851
- #: lib/hammer_cli_foreman/smart_variables.rb:62
852
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
853
- msgid "Count"
854
- msgstr "Cuenta"
855
-
856
- #: lib/hammer_cli_foreman/smart_variables.rb:66
857
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
858
- msgid "Match"
859
- msgstr "Corresponder"
860
-
861
- #: lib/hammer_cli_foreman/smart_variables.rb:85
862
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
863
- msgid "Parameter updated"
864
- msgstr "Parámetro actualizado"
865
-
866
- #: lib/hammer_cli_foreman/smart_variables.rb:86
867
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
868
- msgid "Could not update the parameter"
869
- msgstr "No se pudo actualizar el parámetro"
870
-
871
- #: lib/hammer_cli_foreman/smart_variables.rb:90
872
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
873
- msgid "Override this parameter."
874
- msgstr "Reemplazar este parámetro."
875
-
876
- #: lib/hammer_cli_foreman/smart_variables.rb:92
877
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
878
- msgid "This parameter is required."
879
- msgstr "El parámetro es obligatorio."
880
-
881
- #: lib/hammer_cli_foreman/smart_variables.rb:94
882
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
883
- msgid "Type of the parameter."
884
- msgstr "Tipo de parámetro."
885
-
886
- #: lib/hammer_cli_foreman/smart_variables.rb:97
887
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
888
- msgid "Type of the validator."
889
- msgstr "Tipo de validador."
890
-
891
- #: lib/hammer_cli_foreman/smart_variables.rb:109
892
- msgid "Manipulate smart variables."
893
- msgstr "Manipular variables inteligentes."
894
-
895
734
  #: lib/hammer_cli_foreman/hostgroup.rb:9
896
735
  msgid "List of puppetclass ids"
897
736
  msgstr "Lista de ID de puppetclasses"
@@ -904,98 +743,119 @@ msgstr "Nomre del proxy puppet CA"
904
743
  msgid "Name of puppet proxy"
905
744
  msgstr "Nombre del puppet proxy"
906
745
 
907
- #: lib/hammer_cli_foreman/hostgroup.rb:41
908
- msgid "Label"
909
- msgstr "Etiqueta"
746
+ #: lib/hammer_cli_foreman/hostgroup.rb:13
747
+ msgid "Name of parent hostgroup"
748
+ msgstr "Nombre del grupo padre"
910
749
 
911
- #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
750
+ #: lib/hammer_cli_foreman/hostgroup.rb:48
751
+ #: lib/hammer_cli_foreman/operating_system.rb:11
752
+ msgid "Title"
753
+ msgstr "Título"
754
+
755
+ #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
756
+ #: lib/hammer_cli_foreman/image.rb:31
757
+ msgid "Operating System"
758
+ msgstr "Sistema Operativo"
759
+
760
+ #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
912
761
  msgid "Environment"
913
762
  msgstr "Entorno"
914
763
 
915
- #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
764
+ #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
916
765
  msgid "Model"
917
766
  msgstr "Modelo"
918
767
 
919
- #: lib/hammer_cli_foreman/hostgroup.rb:45
920
- msgid "Ancestry"
921
- msgstr "Ancestros"
922
-
923
- #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
768
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
924
769
  msgid "Subnet"
925
770
  msgstr "Subred"
926
771
 
927
- #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
772
+ #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
928
773
  msgid "Domain"
929
774
  msgstr "Dominio"
930
775
 
931
- #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
776
+ #: lib/hammer_cli_foreman/hostgroup.rb:64 lib/hammer_cli_foreman/host.rb:192
777
+ #: lib/hammer_cli_foreman/image.rb:45
778
+ msgid "Architecture"
779
+ msgstr "Arquitectura"
780
+
781
+ #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
932
782
  msgid "Partition Table"
933
783
  msgstr "Tabla de Particiones"
934
784
 
935
- #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
785
+ #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
936
786
  msgid "Medium"
937
787
  msgstr "Medio"
938
788
 
939
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
789
+ #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
940
790
  msgid "Puppet CA Proxy Id"
941
791
  msgstr "Id del Proxy Puppet CA"
942
792
 
943
- #: lib/hammer_cli_foreman/hostgroup.rb:62
793
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
944
794
  msgid "Puppet Master Proxy Id"
945
795
  msgstr "ID del Proxy de Puppet Master"
946
796
 
947
- #: lib/hammer_cli_foreman/hostgroup.rb:63
797
+ #: lib/hammer_cli_foreman/hostgroup.rb:69
948
798
  msgid "ComputeProfile"
949
799
  msgstr "PerfildeCómputo"
950
800
 
951
- #: lib/hammer_cli_foreman/hostgroup.rb:76
801
+ #: lib/hammer_cli_foreman/hostgroup.rb:73
802
+ msgid "Parent Id"
803
+ msgstr "ID Padre"
804
+
805
+ #: lib/hammer_cli_foreman/hostgroup.rb:83
952
806
  msgid "Hostgroup created"
953
807
  msgstr "Grupo de hosts creado"
954
808
 
955
- #: lib/hammer_cli_foreman/hostgroup.rb:77
809
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
956
810
  msgid "Could not create the hostgroup"
957
811
  msgstr "No se pudo crear el grupo de hosts"
958
812
 
959
- #: lib/hammer_cli_foreman/hostgroup.rb:86
813
+ #: lib/hammer_cli_foreman/hostgroup.rb:93
960
814
  msgid "Hostgroup updated"
961
815
  msgstr "Grupo de hosts actualizado"
962
816
 
963
- #: lib/hammer_cli_foreman/hostgroup.rb:87
817
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
964
818
  msgid "Could not update the hostgroup"
965
819
  msgstr "No se pudo actualizar el grupo de hosts"
966
820
 
967
- #: lib/hammer_cli_foreman/hostgroup.rb:94
821
+ #: lib/hammer_cli_foreman/hostgroup.rb:101
968
822
  msgid "Hostgroup deleted"
969
823
  msgstr "Grupo de hosts borrado"
970
824
 
971
- #: lib/hammer_cli_foreman/hostgroup.rb:95
825
+ #: lib/hammer_cli_foreman/hostgroup.rb:102
972
826
  msgid "Could not delete the hostgroup"
973
827
  msgstr "No se pudo borrar el grupo de hosts"
974
828
 
975
- #: lib/hammer_cli_foreman/hostgroup.rb:122
829
+ #: lib/hammer_cli_foreman/hostgroup.rb:129
976
830
  msgid "Create or update parameter for a hostgroup."
977
831
  msgstr "Crear o actualizar parámetro de un grupo de hosts."
978
832
 
979
- #: lib/hammer_cli_foreman/hostgroup.rb:124
833
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
980
834
  msgid "Hostgroup parameter updated"
981
835
  msgstr "Parámetro de grupo de hosts actualizado"
982
836
 
983
- #: lib/hammer_cli_foreman/hostgroup.rb:125
837
+ #: lib/hammer_cli_foreman/hostgroup.rb:132
984
838
  msgid "New hostgroup parameter created"
985
839
  msgstr "Nuevo parámetro de grupo de hosts creado"
986
840
 
987
- #: lib/hammer_cli_foreman/hostgroup.rb:126
841
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
988
842
  msgid "Could not set hostgroup parameter"
989
843
  msgstr "No se pudo establecer el parámetro del grupo de hosts"
990
844
 
991
- #: lib/hammer_cli_foreman/hostgroup.rb:133
845
+ #: lib/hammer_cli_foreman/hostgroup.rb:140
992
846
  msgid "Delete parameter for a hostgroup."
993
847
  msgstr "Borrar parámetro de un grupo de hosts."
994
848
 
995
- #: lib/hammer_cli_foreman/hostgroup.rb:135
849
+ #: lib/hammer_cli_foreman/hostgroup.rb:142
996
850
  msgid "Hostgroup parameter deleted"
997
851
  msgstr "Parámetro del grupo de hosts borrado"
998
852
 
853
+ #: lib/hammer_cli_foreman/template.rb:27
854
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
855
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
856
+ msgid "Type"
857
+ msgstr "Tipo"
858
+
999
859
  #: lib/hammer_cli_foreman/template.rb:71
1000
860
  msgid "List available config template kinds."
1001
861
  msgstr "Lista de tipos de plantillas de configuración."
@@ -1038,245 +898,267 @@ msgstr "Se borró la plantilla de configuración"
1038
898
  msgid "Could not delete the config template"
1039
899
  msgstr "No se pudo borrar la plantilla de configuración"
1040
900
 
1041
- #: lib/hammer_cli_foreman/host.rb:36
901
+ #: lib/hammer_cli_foreman/host.rb:12
902
+ msgid "Login of the owner"
903
+ msgstr "Inicio de sesión del propietario"
904
+
905
+ #: lib/hammer_cli_foreman/host.rb:14
906
+ msgid "ID of the owner"
907
+ msgstr "ID del propietario"
908
+
909
+ #: lib/hammer_cli_foreman/host.rb:39
1042
910
  msgid "Host parameters."
1043
911
  msgstr "Parámetros del host."
1044
912
 
1045
- #: lib/hammer_cli_foreman/host.rb:38
913
+ #: lib/hammer_cli_foreman/host.rb:41
1046
914
  msgid "Compute resource attributes."
1047
915
  msgstr "Atributos de recursos de computación."
1048
916
 
1049
- #: lib/hammer_cli_foreman/host.rb:40
917
+ #: lib/hammer_cli_foreman/host.rb:43
1050
918
  msgid "Volume parameters"
1051
919
  msgstr "Parámetros de volumen"
1052
920
 
1053
- #: lib/hammer_cli_foreman/host.rb:42
921
+ #: lib/hammer_cli_foreman/host.rb:45
1054
922
  msgid "Interface parameters."
1055
923
  msgstr "Parámetros del interfaz."
1056
924
 
1057
- #: lib/hammer_cli_foreman/host.rb:127
925
+ #: lib/hammer_cli_foreman/host.rb:131
1058
926
  msgid "Host Group"
1059
927
  msgstr "Grupo de Equipo"
1060
928
 
1061
- #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1062
- #: lib/hammer_cli_foreman/host.rb:210
929
+ #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
930
+ #: lib/hammer_cli_foreman/host.rb:214
1063
931
  msgid "IP"
1064
932
  msgstr "IP"
1065
933
 
1066
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1067
- #: lib/hammer_cli_foreman/host.rb:211
934
+ #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
935
+ #: lib/hammer_cli_foreman/host.rb:215
1068
936
  msgid "MAC"
1069
937
  msgstr "Dirección MAC"
1070
938
 
1071
- #: lib/hammer_cli_foreman/host.rb:158
939
+ #: lib/hammer_cli_foreman/host.rb:162
1072
940
  msgid "Cert name"
1073
941
  msgstr "Nombre del certificado"
1074
942
 
1075
- #: lib/hammer_cli_foreman/host.rb:162
943
+ #: lib/hammer_cli_foreman/host.rb:166
1076
944
  msgid "Managed"
1077
945
  msgstr "Gestionado"
1078
946
 
1079
- #: lib/hammer_cli_foreman/host.rb:163
947
+ #: lib/hammer_cli_foreman/host.rb:167
1080
948
  msgid "Enabled"
1081
949
  msgstr "Habilitado"
1082
950
 
1083
- #: lib/hammer_cli_foreman/host.rb:164
951
+ #: lib/hammer_cli_foreman/host.rb:168
1084
952
  msgid "Build"
1085
953
  msgstr "Construir"
1086
954
 
1087
- #: lib/hammer_cli_foreman/host.rb:166
955
+ #: lib/hammer_cli_foreman/host.rb:170
1088
956
  msgid "Use image"
1089
957
  msgstr "Usar imagen"
1090
958
 
1091
- #: lib/hammer_cli_foreman/host.rb:167
959
+ #: lib/hammer_cli_foreman/host.rb:171
1092
960
  msgid "Disk"
1093
961
  msgstr "Disco"
1094
962
 
1095
- #: lib/hammer_cli_foreman/host.rb:168
963
+ #: lib/hammer_cli_foreman/host.rb:172
1096
964
  msgid "Image file"
1097
965
  msgstr "Archivo de imagen"
1098
966
 
1099
- #: lib/hammer_cli_foreman/host.rb:170
967
+ #: lib/hammer_cli_foreman/host.rb:174
1100
968
  msgid "SP Name"
1101
969
  msgstr "Nombre de SP"
1102
970
 
1103
- #: lib/hammer_cli_foreman/host.rb:171
971
+ #: lib/hammer_cli_foreman/host.rb:175
1104
972
  msgid "SP IP"
1105
973
  msgstr "IP de SP"
1106
974
 
1107
- #: lib/hammer_cli_foreman/host.rb:172
975
+ #: lib/hammer_cli_foreman/host.rb:176
1108
976
  msgid "SP MAC"
1109
977
  msgstr "MAC de SP"
1110
978
 
1111
- #: lib/hammer_cli_foreman/host.rb:174
979
+ #: lib/hammer_cli_foreman/host.rb:178
1112
980
  msgid "SP Subnet"
1113
981
  msgstr "Subred de SP"
1114
982
 
1115
- #: lib/hammer_cli_foreman/host.rb:176
983
+ #: lib/hammer_cli_foreman/host.rb:180
1116
984
  msgid "Installed at"
1117
985
  msgstr "Instalado en"
1118
986
 
1119
- #: lib/hammer_cli_foreman/host.rb:182
987
+ #: lib/hammer_cli_foreman/host.rb:186
1120
988
  msgid "Owner Id"
1121
989
  msgstr "Id del dueño"
1122
990
 
1123
- #: lib/hammer_cli_foreman/host.rb:185
991
+ #: lib/hammer_cli_foreman/host.rb:189
1124
992
  msgid "Puppet Proxy Id"
1125
993
  msgstr "Id del proxy Puppet"
1126
994
 
1127
- #: lib/hammer_cli_foreman/host.rb:186
995
+ #: lib/hammer_cli_foreman/host.rb:190
1128
996
  msgid "Owner Type"
1129
997
  msgstr "Tipo de dueño"
1130
998
 
1131
- #: lib/hammer_cli_foreman/host.rb:189
999
+ #: lib/hammer_cli_foreman/host.rb:193
1132
1000
  msgid "Image"
1133
1001
  msgstr "Imagen"
1134
1002
 
1135
- #: lib/hammer_cli_foreman/host.rb:190
1003
+ #: lib/hammer_cli_foreman/host.rb:194
1136
1004
  msgid "Compute Resource"
1137
1005
  msgstr "Recurso de Computación"
1138
1006
 
1139
- #: lib/hammer_cli_foreman/host.rb:192
1007
+ #: lib/hammer_cli_foreman/host.rb:196
1140
1008
  msgid "Comment"
1141
1009
  msgstr "Comentario"
1142
1010
 
1143
- #: lib/hammer_cli_foreman/host.rb:194
1011
+ #: lib/hammer_cli_foreman/host.rb:198
1144
1012
  msgid "BMC Network Interfaces"
1145
1013
  msgstr "Interfaces de red BMC"
1146
1014
 
1147
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1015
+ #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1148
1016
  msgid "Domain Id"
1149
1017
  msgstr "Id de Dominio"
1150
1018
 
1151
- #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1019
+ #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1152
1020
  msgid "Domain Name"
1153
1021
  msgstr "Nombre de dominio"
1154
1022
 
1155
- #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1023
+ #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1156
1024
  msgid "Subnet Id"
1157
1025
  msgstr "Id de Subred"
1158
1026
 
1159
- #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1027
+ #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1160
1028
  msgid "Subnet Name"
1161
1029
  msgstr "Nombre de subred"
1162
1030
 
1163
- #: lib/hammer_cli_foreman/host.rb:203
1031
+ #: lib/hammer_cli_foreman/host.rb:207
1164
1032
  msgid "BMC Username"
1165
1033
  msgstr "Usuario de BMC"
1166
1034
 
1167
- #: lib/hammer_cli_foreman/host.rb:204
1035
+ #: lib/hammer_cli_foreman/host.rb:208
1168
1036
  msgid "BMC Password"
1169
1037
  msgstr "Password de BMC"
1170
1038
 
1171
- #: lib/hammer_cli_foreman/host.rb:207
1039
+ #: lib/hammer_cli_foreman/host.rb:211
1172
1040
  msgid "Managed Network Interfaces"
1173
1041
  msgstr "Interfaces de red gestionados"
1174
1042
 
1175
- #: lib/hammer_cli_foreman/host.rb:231
1043
+ #: lib/hammer_cli_foreman/host.rb:235
1176
1044
  msgid "Status"
1177
1045
  msgstr "Estado"
1178
1046
 
1179
- #: lib/hammer_cli_foreman/host.rb:232
1047
+ #: lib/hammer_cli_foreman/host.rb:236
1180
1048
  msgid "Power"
1181
1049
  msgstr "Energía"
1182
1050
 
1183
- #: lib/hammer_cli_foreman/host.rb:268
1051
+ #: lib/hammer_cli_foreman/host.rb:272
1184
1052
  msgid "Puppet run triggered"
1185
1053
  msgstr "Se lanzó una ejecución de puppet"
1186
1054
 
1187
- #: lib/hammer_cli_foreman/host.rb:319
1055
+ #: lib/hammer_cli_foreman/host.rb:323
1188
1056
  msgid "Host created"
1189
1057
  msgstr "El host se ha creado"
1190
1058
 
1191
- #: lib/hammer_cli_foreman/host.rb:320
1059
+ #: lib/hammer_cli_foreman/host.rb:324
1192
1060
  msgid "Could not create the host"
1193
1061
  msgstr "No se pudo crear el host"
1194
1062
 
1195
- #: lib/hammer_cli_foreman/host.rb:341
1063
+ #: lib/hammer_cli_foreman/host.rb:345
1196
1064
  msgid "Host updated"
1197
1065
  msgstr "Se actualizó el host"
1198
1066
 
1199
- #: lib/hammer_cli_foreman/host.rb:342
1067
+ #: lib/hammer_cli_foreman/host.rb:346
1200
1068
  msgid "Could not update the host"
1201
1069
  msgstr "No se pudo actualizar el host"
1202
1070
 
1203
- #: lib/hammer_cli_foreman/host.rb:349
1071
+ #: lib/hammer_cli_foreman/host.rb:353
1204
1072
  msgid "Host deleted"
1205
1073
  msgstr "Host borrado"
1206
1074
 
1207
- #: lib/hammer_cli_foreman/host.rb:350
1075
+ #: lib/hammer_cli_foreman/host.rb:354
1208
1076
  msgid "Could not delete the host"
1209
1077
  msgstr "No se pudo borrar el host"
1210
1078
 
1211
- #: lib/hammer_cli_foreman/host.rb:357
1079
+ #: lib/hammer_cli_foreman/host.rb:361
1212
1080
  msgid "Create or update parameter for a host."
1213
1081
  msgstr "Crear o actualizar un parámetro de un host."
1214
1082
 
1215
- #: lib/hammer_cli_foreman/host.rb:359
1083
+ #: lib/hammer_cli_foreman/host.rb:363
1216
1084
  msgid "Host parameter updated"
1217
1085
  msgstr "Se actualizó el parámetro del host"
1218
1086
 
1219
- #: lib/hammer_cli_foreman/host.rb:360
1087
+ #: lib/hammer_cli_foreman/host.rb:364
1220
1088
  msgid "New host parameter created"
1221
1089
  msgstr "Nuevo parámetro de host creado"
1222
1090
 
1223
- #: lib/hammer_cli_foreman/host.rb:361
1091
+ #: lib/hammer_cli_foreman/host.rb:365
1224
1092
  msgid "Could not set host parameter"
1225
1093
  msgstr "No se pudo establecer el parámetro del host"
1226
1094
 
1227
- #: lib/hammer_cli_foreman/host.rb:373
1095
+ #: lib/hammer_cli_foreman/host.rb:377
1228
1096
  msgid "Delete parameter for a host."
1229
1097
  msgstr "Borrar parámetro de host."
1230
1098
 
1231
- #: lib/hammer_cli_foreman/host.rb:375
1099
+ #: lib/hammer_cli_foreman/host.rb:379
1232
1100
  msgid "Host parameter deleted"
1233
1101
  msgstr "Parámetro de host borrado"
1234
1102
 
1235
- #: lib/hammer_cli_foreman/host.rb:390
1103
+ #: lib/hammer_cli_foreman/host.rb:394
1236
1104
  msgid "Power a host on"
1237
1105
  msgstr "Encender un host"
1238
1106
 
1239
- #: lib/hammer_cli_foreman/host.rb:391
1107
+ #: lib/hammer_cli_foreman/host.rb:395
1240
1108
  msgid "The host is starting."
1241
1109
  msgstr "El host está arrancando."
1242
1110
 
1243
- #: lib/hammer_cli_foreman/host.rb:408
1111
+ #: lib/hammer_cli_foreman/host.rb:412
1244
1112
  msgid "Force turning off a host"
1245
1113
  msgstr "Apagado forzoso de un host"
1246
1114
 
1247
- #: lib/hammer_cli_foreman/host.rb:413
1115
+ #: lib/hammer_cli_foreman/host.rb:417
1248
1116
  msgid "Power a host off"
1249
1117
  msgstr "Apagar un host"
1250
1118
 
1251
- #: lib/hammer_cli_foreman/host.rb:425
1119
+ #: lib/hammer_cli_foreman/host.rb:429
1252
1120
  msgid "Power off forced."
1253
1121
  msgstr "Se forzó el apagado"
1254
1122
 
1255
- #: lib/hammer_cli_foreman/host.rb:427
1123
+ #: lib/hammer_cli_foreman/host.rb:431
1256
1124
  msgid "Powering the host off."
1257
1125
  msgstr "Apagando el host a la fuerza."
1258
1126
 
1259
- #: lib/hammer_cli_foreman/host.rb:444
1127
+ #: lib/hammer_cli_foreman/host.rb:448
1260
1128
  msgid "Reboot a host"
1261
1129
  msgstr "Reiniciar un host"
1262
1130
 
1263
- #: lib/hammer_cli_foreman/host.rb:445
1131
+ #: lib/hammer_cli_foreman/host.rb:449
1264
1132
  msgid "Host reboot started."
1265
1133
  msgstr "Reinicio del host en proceso."
1266
1134
 
1267
- #: lib/hammer_cli_foreman/commands.rb:77
1135
+ #: lib/hammer_cli_foreman/commands.rb:83
1268
1136
  msgid "Received data of unknown format"
1269
1137
  msgstr "Se ha recibido dato en formato desconocido"
1270
1138
 
1271
- #: lib/hammer_cli_foreman/commands.rb:244
1139
+ #: lib/hammer_cli_foreman/commands.rb:185
1140
+ msgid ""
1141
+ "Could not find %{resource}. Some search options were missing, please see "
1142
+ "--help."
1143
+ msgstr "No se pudo encontrar %{resource}. No se encontraron algunas opciones de búsqueda, por favor vea --help."
1144
+
1145
+ #: lib/hammer_cli_foreman/commands.rb:187
1146
+ msgid "Could not find %{resource}, please set option %{switches}."
1147
+ msgstr "No se pudo encontrar %{resource}, por favor establezca la opción ${switches}"
1148
+
1149
+ #: lib/hammer_cli_foreman/commands.rb:189
1150
+ msgid "Could not find %{resource}, please set one of options %{switches}."
1151
+ msgstr "No se pudo encontrar %{resource}, por favor establezca una de las opciones %{switches}"
1152
+
1153
+ #: lib/hammer_cli_foreman/commands.rb:288
1272
1154
  msgid "List next page? (%s): "
1273
1155
  msgstr "¿Nueva página de lista? (%s): "
1274
1156
 
1275
- #: lib/hammer_cli_foreman/commands.rb:448
1157
+ #: lib/hammer_cli_foreman/commands.rb:492
1276
1158
  msgid "Associate a resource"
1277
1159
  msgstr "Asociar un recurso"
1278
1160
 
1279
- #: lib/hammer_cli_foreman/commands.rb:470
1161
+ #: lib/hammer_cli_foreman/commands.rb:514
1280
1162
  msgid "Disassociate a resource"
1281
1163
  msgstr "Desasociar un recurso"
1282
1164
 
@@ -1357,10 +1239,6 @@ msgstr "Grupos de usuarios externos"
1357
1239
  msgid "The server does not support such operation."
1358
1240
  msgstr "El servidor no soporta esa operación."
1359
1241
 
1360
- #: lib/hammer_cli_foreman/operating_system.rb:11
1361
- msgid "Full name"
1362
- msgstr "Nombre completo"
1363
-
1364
1242
  #: lib/hammer_cli_foreman/operating_system.rb:12
1365
1243
  msgid "Release name"
1366
1244
  msgstr "Nombre de versión"
@@ -1389,105 +1267,85 @@ msgstr "Plantillas por defecto"
1389
1267
  msgid "Architectures"
1390
1268
  msgstr "Arquitecturas"
1391
1269
 
1392
- #: lib/hammer_cli_foreman/operating_system.rb:46
1393
- #: lib/hammer_cli_foreman/operating_system.rb:73
1394
- msgid "set associated architectures"
1395
- msgstr "establecer arquitecturas asociadas"
1396
-
1397
- #: lib/hammer_cli_foreman/operating_system.rb:48
1398
- #: lib/hammer_cli_foreman/operating_system.rb:75
1399
- msgid "set associated templates"
1400
- msgstr "establecer plantillas asociadas"
1401
-
1402
- #: lib/hammer_cli_foreman/operating_system.rb:50
1403
- #: lib/hammer_cli_foreman/operating_system.rb:77
1404
- msgid "set associated installation media"
1405
- msgstr "establecer medios de instalación asociados"
1406
-
1407
- #: lib/hammer_cli_foreman/operating_system.rb:52
1408
- #: lib/hammer_cli_foreman/operating_system.rb:79
1409
- msgid "set associated partition tables"
1410
- msgstr "establecer tablas de partición asociadas"
1411
-
1412
- #: lib/hammer_cli_foreman/operating_system.rb:55
1270
+ #: lib/hammer_cli_foreman/operating_system.rb:44
1413
1271
  msgid "Operating system created"
1414
1272
  msgstr "Se creó el sistema operativo"
1415
1273
 
1416
- #: lib/hammer_cli_foreman/operating_system.rb:56
1274
+ #: lib/hammer_cli_foreman/operating_system.rb:45
1417
1275
  msgid "Could not create the operating system"
1418
1276
  msgstr "No se pudo crear el sistema operativo"
1419
1277
 
1420
- #: lib/hammer_cli_foreman/operating_system.rb:82
1278
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1421
1279
  msgid "Operating system updated"
1422
1280
  msgstr "Se actualizó el sistema operativo"
1423
1281
 
1424
- #: lib/hammer_cli_foreman/operating_system.rb:83
1282
+ #: lib/hammer_cli_foreman/operating_system.rb:53
1425
1283
  msgid "Could not update the operating system"
1426
1284
  msgstr "No se pudo actualizar el sistema operativo"
1427
1285
 
1428
- #: lib/hammer_cli_foreman/operating_system.rb:99
1286
+ #: lib/hammer_cli_foreman/operating_system.rb:60
1429
1287
  msgid "Operating system deleted"
1430
1288
  msgstr "Sistema operativo borrado"
1431
1289
 
1432
- #: lib/hammer_cli_foreman/operating_system.rb:100
1290
+ #: lib/hammer_cli_foreman/operating_system.rb:61
1433
1291
  msgid "Could not delete the operating system"
1434
1292
  msgstr "No se pudo borrar el sistema operativo"
1435
1293
 
1436
- #: lib/hammer_cli_foreman/operating_system.rb:107
1294
+ #: lib/hammer_cli_foreman/operating_system.rb:68
1437
1295
  msgid "Create or update parameter for an operating system."
1438
1296
  msgstr "Crear o actualizar un parámetro de un sistema operativo."
1439
1297
 
1440
- #: lib/hammer_cli_foreman/operating_system.rb:109
1298
+ #: lib/hammer_cli_foreman/operating_system.rb:70
1441
1299
  msgid "Operating system parameter updated"
1442
1300
  msgstr "Se actualizó el parámetro del sistema operativo"
1443
1301
 
1444
- #: lib/hammer_cli_foreman/operating_system.rb:110
1302
+ #: lib/hammer_cli_foreman/operating_system.rb:71
1445
1303
  msgid "New operating system parameter created"
1446
1304
  msgstr "Se creó un nuevo parámetro de sistema operativo"
1447
1305
 
1448
- #: lib/hammer_cli_foreman/operating_system.rb:111
1306
+ #: lib/hammer_cli_foreman/operating_system.rb:72
1449
1307
  msgid "Could not set operating system parameter"
1450
1308
  msgstr "No se pudo establecer el parámetro de sistema operativo"
1451
1309
 
1452
- #: lib/hammer_cli_foreman/operating_system.rb:123
1310
+ #: lib/hammer_cli_foreman/operating_system.rb:84
1453
1311
  msgid "Delete parameter for an operating system."
1454
1312
  msgstr "Borrar parámetro de un sistema operativo."
1455
1313
 
1456
- #: lib/hammer_cli_foreman/operating_system.rb:125
1314
+ #: lib/hammer_cli_foreman/operating_system.rb:86
1457
1315
  msgid "operating system parameter deleted"
1458
1316
  msgstr "parámetro de sistema operativo borrado"
1459
1317
 
1460
- #: lib/hammer_cli_foreman/operating_system.rb:140
1461
- #: lib/hammer_cli_foreman/operating_system.rb:206
1318
+ #: lib/hammer_cli_foreman/operating_system.rb:101
1319
+ #: lib/hammer_cli_foreman/operating_system.rb:167
1462
1320
  msgid "operatingsystem id"
1463
1321
  msgstr "operatingsystem id"
1464
1322
 
1465
- #: lib/hammer_cli_foreman/operating_system.rb:141
1323
+ #: lib/hammer_cli_foreman/operating_system.rb:102
1466
1324
  msgid "config template id to be set"
1467
1325
  msgstr "id de plantilla de configuración a establecer"
1468
1326
 
1469
- #: lib/hammer_cli_foreman/operating_system.rb:144
1327
+ #: lib/hammer_cli_foreman/operating_system.rb:105
1470
1328
  msgid ""
1471
1329
  "[%{config_template_name}] was set as default %{template_kind_name} template"
1472
1330
  msgstr "[%{config_template_name}] se estableció como plantilla %{template_kind_name} por defecto"
1473
1331
 
1474
- #: lib/hammer_cli_foreman/operating_system.rb:145
1332
+ #: lib/hammer_cli_foreman/operating_system.rb:106
1475
1333
  msgid "Could not set the os default template"
1476
1334
  msgstr "No se pudo establecer la plantilla de so por defecto"
1477
1335
 
1478
- #: lib/hammer_cli_foreman/operating_system.rb:207
1336
+ #: lib/hammer_cli_foreman/operating_system.rb:168
1479
1337
  msgid "Type of the config template"
1480
1338
  msgstr "Tipo de la plantilla de configuración"
1481
1339
 
1482
- #: lib/hammer_cli_foreman/operating_system.rb:209
1340
+ #: lib/hammer_cli_foreman/operating_system.rb:170
1483
1341
  msgid "Default template deleted"
1484
1342
  msgstr "Se borró la plantilla por defecto"
1485
1343
 
1486
- #: lib/hammer_cli_foreman/operating_system.rb:210
1344
+ #: lib/hammer_cli_foreman/operating_system.rb:171
1487
1345
  msgid "Could not delete the default template"
1488
1346
  msgstr "No se pudo borrar la plantilla por defecto"
1489
1347
 
1490
- #: lib/hammer_cli_foreman/operating_system.rb:217
1348
+ #: lib/hammer_cli_foreman/operating_system.rb:178
1491
1349
  msgid "Default template of type %s not found"
1492
1350
  msgstr "No se encontró la plantilla por defecto del tipo %s"
1493
1351
 
@@ -1572,6 +1430,11 @@ msgstr "No se pudo borrar el entorno"
1572
1430
  msgid "Smart variables"
1573
1431
  msgstr "Variables inteligentes"
1574
1432
 
1433
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
1434
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1435
+ msgid "Parameter"
1436
+ msgstr "Parámetro"
1437
+
1575
1438
  #: lib/hammer_cli_foreman/puppet_class.rb:35
1576
1439
  msgid "Default value"
1577
1440
  msgstr "Valor predeterminado"
@@ -1636,6 +1499,74 @@ msgstr "Borrar parámetro de dominio"
1636
1499
  msgid "Domain parameter deleted"
1637
1500
  msgstr "Se borró el parámetro de dominio"
1638
1501
 
1502
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1503
+ msgid "Default Value"
1504
+ msgstr "Valor por Defecto"
1505
+
1506
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1507
+ msgid "Override"
1508
+ msgstr "Reemplazar"
1509
+
1510
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1511
+ msgid "Puppet class"
1512
+ msgstr "Clase Puppet"
1513
+
1514
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1515
+ msgid "Class Id"
1516
+ msgstr "Id de clase"
1517
+
1518
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1519
+ msgid "Required"
1520
+ msgstr "Necesario"
1521
+
1522
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1523
+ msgid "Validator"
1524
+ msgstr "Validador"
1525
+
1526
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1527
+ msgid "Rule"
1528
+ msgstr "Regla"
1529
+
1530
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1531
+ msgid "Override values"
1532
+ msgstr "Reemplazar valores"
1533
+
1534
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1535
+ msgid "Order"
1536
+ msgstr "Orden"
1537
+
1538
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1539
+ msgid "Count"
1540
+ msgstr "Cuenta"
1541
+
1542
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1543
+ msgid "Match"
1544
+ msgstr "Corresponder"
1545
+
1546
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1547
+ msgid "Parameter updated"
1548
+ msgstr "Parámetro actualizado"
1549
+
1550
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1551
+ msgid "Could not update the parameter"
1552
+ msgstr "No se pudo actualizar el parámetro"
1553
+
1554
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1555
+ msgid "Override this parameter."
1556
+ msgstr "Reemplazar este parámetro."
1557
+
1558
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1559
+ msgid "This parameter is required."
1560
+ msgstr "El parámetro es obligatorio."
1561
+
1562
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1563
+ msgid "Type of the parameter."
1564
+ msgstr "Tipo de parámetro."
1565
+
1566
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1567
+ msgid "Type of the validator."
1568
+ msgstr "Tipo de validador."
1569
+
1639
1570
  #: lib/hammer_cli_foreman/auth.rb:7
1640
1571
  msgid "Set credentials"
1641
1572
  msgstr "Establecer credenciales"
@@ -1690,6 +1621,14 @@ msgstr "No se pudo borrar el grupo de usuarios"
1690
1621
  msgid "View and manage compute resource's images"
1691
1622
  msgstr "Ver y gestionar imágenes de recursos de computación"
1692
1623
 
1624
+ #: lib/hammer_cli_foreman/image.rb:32
1625
+ msgid "Username"
1626
+ msgstr "Nombre de usuario"
1627
+
1628
+ #: lib/hammer_cli_foreman/image.rb:46
1629
+ msgid "IAM role"
1630
+ msgstr "rol de IAM"
1631
+
1693
1632
  #: lib/hammer_cli_foreman/image.rb:56
1694
1633
  msgid "Show images available for addition"
1695
1634
  msgstr "Mostrar imágenes disponibles para añadir"
@@ -1751,103 +1690,111 @@ msgstr "Se borró la tabla de particiones"
1751
1690
  msgid "Could not delete the partition table"
1752
1691
  msgstr "No se pudo borrar la tabla de particiones"
1753
1692
 
1754
- #: lib/hammer_cli_foreman/credentials.rb:10
1755
- msgid "[Foreman] username: "
1756
- msgstr "[Foreman] nombre de usuario: "
1693
+ #: lib/hammer_cli_foreman/credentials.rb:26
1694
+ msgid "[Foreman] Username: "
1695
+ msgstr "[Foreman] Nombre de usuario:"
1757
1696
 
1758
- #: lib/hammer_cli_foreman/credentials.rb:15
1759
- msgid "[Foreman] password for %s: "
1760
- msgstr "[Foreman] palabra clave de %s: "
1697
+ #: lib/hammer_cli_foreman/credentials.rb:33
1698
+ msgid "[Foreman] Password for %s: "
1699
+ msgstr "[Foreman] Password para %s:"
1761
1700
 
1762
- #: lib/hammer_cli_foreman/id_resolver.rb:32
1701
+ #: lib/hammer_cli_foreman/id_resolver.rb:36
1763
1702
  msgid "Architecture name"
1764
1703
  msgstr "Nombre de la arquitectura"
1765
1704
 
1766
- #: lib/hammer_cli_foreman/id_resolver.rb:33
1705
+ #: lib/hammer_cli_foreman/id_resolver.rb:37
1767
1706
  msgid "Compute resource name"
1768
1707
  msgstr "Nombre del recurso de cómputo"
1769
1708
 
1770
- #: lib/hammer_cli_foreman/id_resolver.rb:34
1709
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1771
1710
  msgid "Domain name"
1772
1711
  msgstr "Nombre del dominio"
1773
1712
 
1774
- #: lib/hammer_cli_foreman/id_resolver.rb:35
1713
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1775
1714
  msgid "Environment name"
1776
1715
  msgstr "Nombre del entorno"
1777
1716
 
1778
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1717
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1779
1718
  msgid "Host name"
1780
1719
  msgstr "Nombre del host"
1781
1720
 
1782
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1721
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1783
1722
  msgid "Hostgroup name"
1784
1723
  msgstr "Nombre del grupo de hosts"
1785
1724
 
1786
- #: lib/hammer_cli_foreman/id_resolver.rb:41
1725
+ #: lib/hammer_cli_foreman/id_resolver.rb:45
1787
1726
  msgid "Location name"
1788
1727
  msgstr "Nombre de la ubicación"
1789
1728
 
1790
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1729
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1791
1730
  msgid "Medium name"
1792
1731
  msgstr "Nombre del medio"
1793
1732
 
1794
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1733
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1795
1734
  msgid "Model name"
1796
1735
  msgstr "Nombre del modelo"
1797
1736
 
1798
- #: lib/hammer_cli_foreman/id_resolver.rb:44
1737
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1799
1738
  msgid "Organization name"
1800
1739
  msgstr "Nombre de la organización"
1801
1740
 
1802
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1741
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1742
+ msgid "Operating system title"
1743
+ msgstr "Titulo del sistema operativo"
1744
+
1745
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1803
1746
  msgid "Partition table name"
1804
1747
  msgstr "Nomre de la tabla de particiones"
1805
1748
 
1806
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1749
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1807
1750
  msgid "Proxy name"
1808
1751
  msgstr "Nombre del proxy"
1809
1752
 
1810
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1753
+ #: lib/hammer_cli_foreman/id_resolver.rb:52
1811
1754
  msgid "Puppet class name"
1812
1755
  msgstr "Nombre de la clase Puppet"
1813
1756
 
1814
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1757
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1815
1758
  msgid "Report name"
1816
1759
  msgstr "Nombre del informe"
1817
1760
 
1818
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1761
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1819
1762
  msgid "User role name"
1820
1763
  msgstr "Nombre del rol de usuario"
1821
1764
 
1822
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1765
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1823
1766
  msgid "Subnet name"
1824
1767
  msgstr "Nombre de subred"
1825
1768
 
1826
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1769
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1827
1770
  msgid "User's login to search by"
1828
1771
  msgstr "Login de usuario a buscar"
1829
1772
 
1830
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1773
+ #: lib/hammer_cli_foreman/id_resolver.rb:58
1831
1774
  msgid "Common parameter name"
1832
1775
  msgstr "Nombre del parámetro común"
1833
1776
 
1834
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1777
+ #: lib/hammer_cli_foreman/id_resolver.rb:59
1835
1778
  msgid "Smart class parameter name"
1836
1779
  msgstr "Nombre del parámetro de clase inteligente"
1837
1780
 
1838
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1781
+ #: lib/hammer_cli_foreman/id_resolver.rb:61
1839
1782
  msgid "Name to search by"
1840
1783
  msgstr "Nombre a buscar"
1841
1784
 
1842
- #: lib/hammer_cli_foreman/id_resolver.rb:140
1785
+ #: lib/hammer_cli_foreman/id_resolver.rb:149
1786
+ msgid "one of %s not found"
1787
+ msgstr "uno de %s no encontrado"
1788
+
1789
+ #: lib/hammer_cli_foreman/id_resolver.rb:191
1843
1790
  msgid "%s not found"
1844
1791
  msgstr "no se encuentra %s"
1845
1792
 
1846
- #: lib/hammer_cli_foreman/id_resolver.rb:141
1793
+ #: lib/hammer_cli_foreman/id_resolver.rb:192
1847
1794
  msgid "%s found more than once"
1848
1795
  msgstr "se encontró %s más de una vez"
1849
1796
 
1850
- #: lib/hammer_cli_foreman/id_resolver.rb:152
1797
+ #: lib/hammer_cli_foreman/id_resolver.rb:203
1851
1798
  msgid "Missing options to search %s"
1852
1799
  msgstr "Faltan opciones para buscar %s"
1853
1800