hammer_cli_foreman 0.1.4 → 0.2.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.
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
@@ -7,10 +7,10 @@
7
7
  # Giuseppe Pignataro <anubisteam01@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
10
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2014-09-19 13:34+0200\n"
13
- "PO-Revision-Date: 2014-10-11 10:31+0000\n"
12
+ "POT-Creation-Date: 2014-12-11 13:21+0100\n"
13
+ "PO-Revision-Date: 2015-03-22 03:37+0000\n"
14
14
  "Last-Translator: Lukáš Zapletal\n"
15
15
  "Language-Team: Italian (http://www.transifex.com/projects/p/foreman/language/it/)\n"
16
16
  "MIME-Version: 1.0\n"
@@ -24,13 +24,10 @@ msgstr ""
24
24
  #: lib/hammer_cli_foreman/organization.rb:13
25
25
  #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
26
26
  #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
27
- #: lib/hammer_cli_foreman/override_value.rb:28
28
27
  #: lib/hammer_cli_foreman/compute_resource.rb:11
29
- #: lib/hammer_cli_foreman/smart_variables.rb:7
30
- #: lib/hammer_cli_foreman/smart_variables.rb:65
31
- #: lib/hammer_cli_foreman/hostgroup.rb:39
32
- #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
33
- #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
28
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
29
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:128
30
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
34
31
  #: lib/hammer_cli_foreman/operating_system.rb:10
35
32
  #: lib/hammer_cli_foreman/smart_proxy.rb:11
36
33
  #: lib/hammer_cli_foreman/environment.rb:14
@@ -52,7 +49,7 @@ msgstr "Id"
52
49
  msgid "Host"
53
50
  msgstr "Host"
54
51
 
55
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
52
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
56
53
  msgid "Last report"
57
54
  msgstr "Ultimo riporto"
58
55
 
@@ -162,12 +159,11 @@ msgstr ""
162
159
  #: lib/hammer_cli_foreman/common_parameter.rb:12
163
160
  #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
164
161
  #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
165
- #: lib/hammer_cli_foreman/override_value.rb:29
166
162
  #: lib/hammer_cli_foreman/compute_resource.rb:12
167
- #: lib/hammer_cli_foreman/hostgroup.rb:40
163
+ #: lib/hammer_cli_foreman/hostgroup.rb:47
168
164
  #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
169
- #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
170
- #: lib/hammer_cli_foreman/host.rb:209
165
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
166
+ #: lib/hammer_cli_foreman/host.rb:213
171
167
  #: lib/hammer_cli_foreman/operating_system.rb:22
172
168
  #: lib/hammer_cli_foreman/smart_proxy.rb:12
173
169
  #: lib/hammer_cli_foreman/environment.rb:15
@@ -245,10 +241,7 @@ msgid "Could not delete the organization"
245
241
  msgstr "Impossibile rimuovere l'organizzazione"
246
242
 
247
243
  #: lib/hammer_cli_foreman/common_parameter.rb:13
248
- #: lib/hammer_cli_foreman/fact.rb:14
249
- #: lib/hammer_cli_foreman/smart_variables.rb:64
250
- #: lib/hammer_cli_foreman/smart_variables.rb:67
251
- #: lib/hammer_cli_foreman/host.rb:282
244
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
252
245
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
253
246
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
254
247
  msgid "Value"
@@ -401,41 +394,41 @@ msgstr "Impossibile aggiornare il modello hardware"
401
394
  msgid "User role id"
402
395
  msgstr "ID ruolo utente"
403
396
 
404
- #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
397
+ #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
405
398
  #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
406
399
  msgid "(Miscellaneous)"
407
400
  msgstr "(Altro)"
408
401
 
409
- #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
402
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
410
403
  #: lib/hammer_cli_foreman/filter.rb:35
411
404
  msgid "none"
412
405
  msgstr "nessuno"
413
406
 
414
- #: lib/hammer_cli_foreman/role.rb:50
407
+ #: lib/hammer_cli_foreman/role.rb:47
415
408
  msgid "User role [%<name>s] created"
416
409
  msgstr "Ruolo utente [%<name>s] creato"
417
410
 
418
- #: lib/hammer_cli_foreman/role.rb:51
411
+ #: lib/hammer_cli_foreman/role.rb:48
419
412
  msgid "Could not create the user role"
420
413
  msgstr "Impossibile creare il ruolo utente"
421
414
 
422
- #: lib/hammer_cli_foreman/role.rb:58
415
+ #: lib/hammer_cli_foreman/role.rb:55
423
416
  msgid "User role [%<name>s] updated"
424
417
  msgstr "Ruolo utente [%<name>s] aggiornato"
425
418
 
426
- #: lib/hammer_cli_foreman/role.rb:59
419
+ #: lib/hammer_cli_foreman/role.rb:56
427
420
  msgid "Could not update the user role"
428
421
  msgstr "Impossibile aggiornare il ruolo utente"
429
422
 
430
- #: lib/hammer_cli_foreman/role.rb:66
423
+ #: lib/hammer_cli_foreman/role.rb:63
431
424
  msgid "User role [%<name>s] deleted"
432
425
  msgstr "Ruolo utente [%<name>s] rimosso"
433
426
 
434
- #: lib/hammer_cli_foreman/role.rb:67
427
+ #: lib/hammer_cli_foreman/role.rb:64
435
428
  msgid "Could not delete the user roles"
436
429
  msgstr "Impossibile rimuovere questi ruoli utente"
437
430
 
438
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
431
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
439
432
  msgid "Fact"
440
433
  msgstr "Evento"
441
434
 
@@ -472,64 +465,6 @@ msgstr "Supporto d'installazione rimosso"
472
465
  msgid "Could not delete the installation media"
473
466
  msgstr "Impossibile rimuovere il dispositivo d'installazione"
474
467
 
475
- #: lib/hammer_cli_foreman/override_value.rb:7
476
- msgid "View and manage override values"
477
- msgstr ""
478
-
479
- #: lib/hammer_cli_foreman/override_value.rb:30
480
- #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:126
481
- #: lib/hammer_cli_foreman/image.rb:31
482
- msgid "Operating System"
483
- msgstr "Sistema Operativo"
484
-
485
- #: lib/hammer_cli_foreman/override_value.rb:31
486
- #: lib/hammer_cli_foreman/image.rb:32
487
- msgid "Username"
488
- msgstr "Nome utente"
489
-
490
- #: lib/hammer_cli_foreman/override_value.rb:32
491
- #: lib/hammer_cli_foreman/compute_resource.rb:23
492
- #: lib/hammer_cli_foreman/compute_resource.rb:29
493
- #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
494
- #: lib/hammer_cli_foreman/image.rb:71
495
- msgid "UUID"
496
- msgstr "UUID"
497
-
498
- #: lib/hammer_cli_foreman/override_value.rb:44
499
- #: lib/hammer_cli_foreman/hostgroup.rb:58 lib/hammer_cli_foreman/host.rb:188
500
- #: lib/hammer_cli_foreman/image.rb:45
501
- msgid "Architecture"
502
- msgstr "Architettura"
503
-
504
- #: lib/hammer_cli_foreman/override_value.rb:45
505
- #: lib/hammer_cli_foreman/image.rb:46
506
- msgid "IAM role"
507
- msgstr "Ruolo IAM"
508
-
509
- #: lib/hammer_cli_foreman/override_value.rb:55
510
- msgid "OverrideValue created"
511
- msgstr ""
512
-
513
- #: lib/hammer_cli_foreman/override_value.rb:56
514
- msgid "Could not create the override_value"
515
- msgstr ""
516
-
517
- #: lib/hammer_cli_foreman/override_value.rb:64
518
- msgid "OverrideValue updated"
519
- msgstr ""
520
-
521
- #: lib/hammer_cli_foreman/override_value.rb:65
522
- msgid "Could not update the override_value"
523
- msgstr ""
524
-
525
- #: lib/hammer_cli_foreman/override_value.rb:73
526
- msgid "OverrideValue deleted"
527
- msgstr ""
528
-
529
- #: lib/hammer_cli_foreman/override_value.rb:74
530
- msgid "Could not delete the override_value"
531
- msgstr ""
532
-
533
468
  #: lib/hammer_cli_foreman/exception_handler.rb:41
534
469
  msgid "Forbidden - server refused to process the request"
535
470
  msgstr "Non consentito - il server ha rifiutato di processare la richiesta"
@@ -552,6 +487,13 @@ msgstr ""
552
487
  msgid "Provider"
553
488
  msgstr "Provider"
554
489
 
490
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
491
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
492
+ #: lib/hammer_cli_foreman/host.rb:161 lib/hammer_cli_foreman/image.rb:33
493
+ #: lib/hammer_cli_foreman/image.rb:71
494
+ msgid "UUID"
495
+ msgstr "UUID"
496
+
555
497
  #: lib/hammer_cli_foreman/compute_resource.rb:26
556
498
  #: lib/hammer_cli_foreman/compute_resource.rb:36
557
499
  msgid "Region"
@@ -570,7 +512,6 @@ msgid "Url"
570
512
  msgstr "Url"
571
513
 
572
514
  #: lib/hammer_cli_foreman/compute_resource.rb:44
573
- #: lib/hammer_cli_foreman/smart_variables.rb:52
574
515
  #: lib/hammer_cli_foreman/domain.rb:21
575
516
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
576
517
  msgid "Description"
@@ -788,109 +729,6 @@ msgstr "Il ruolo utente è stato rimosso"
788
729
  msgid "Could not remove the user role"
789
730
  msgstr "Impossibile rimuovere il ruolo utente"
790
731
 
791
- #: lib/hammer_cli_foreman/smart_variables.rb:9
792
- #: lib/hammer_cli_foreman/puppet_class.rb:34
793
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
794
- msgid "Parameter"
795
- msgstr "Parametro"
796
-
797
- #: lib/hammer_cli_foreman/smart_variables.rb:10
798
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
799
- msgid "Default Value"
800
- msgstr "Valore predefinito"
801
-
802
- #: lib/hammer_cli_foreman/smart_variables.rb:11
803
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
804
- msgid "Override"
805
- msgstr "Override"
806
-
807
- #: lib/hammer_cli_foreman/smart_variables.rb:32
808
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
809
- msgid "Puppet class"
810
- msgstr "Classe del puppet"
811
-
812
- #: lib/hammer_cli_foreman/smart_variables.rb:33
813
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
814
- msgid "Class Id"
815
- msgstr "ID classe"
816
-
817
- #: lib/hammer_cli_foreman/smart_variables.rb:53
818
- #: lib/hammer_cli_foreman/smart_variables.rb:57
819
- #: lib/hammer_cli_foreman/template.rb:27
820
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
821
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
822
- msgid "Type"
823
- msgstr "Tipo"
824
-
825
- #: lib/hammer_cli_foreman/smart_variables.rb:54
826
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
827
- msgid "Required"
828
- msgstr "Obbligatorio"
829
-
830
- #: lib/hammer_cli_foreman/smart_variables.rb:56
831
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
832
- msgid "Validator"
833
- msgstr "Convalidatore"
834
-
835
- #: lib/hammer_cli_foreman/smart_variables.rb:58
836
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
837
- msgid "Rule"
838
- msgstr "Regola"
839
-
840
- #: lib/hammer_cli_foreman/smart_variables.rb:60
841
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
842
- msgid "Override values"
843
- msgstr "Valori override"
844
-
845
- #: lib/hammer_cli_foreman/smart_variables.rb:61
846
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
847
- msgid "Order"
848
- msgstr "Ordine"
849
-
850
- #: lib/hammer_cli_foreman/smart_variables.rb:62
851
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
852
- msgid "Count"
853
- msgstr "Conteggio"
854
-
855
- #: lib/hammer_cli_foreman/smart_variables.rb:66
856
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
857
- msgid "Match"
858
- msgstr "Corrispondenza"
859
-
860
- #: lib/hammer_cli_foreman/smart_variables.rb:85
861
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
862
- msgid "Parameter updated"
863
- msgstr "Parametro aggiornato"
864
-
865
- #: lib/hammer_cli_foreman/smart_variables.rb:86
866
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
867
- msgid "Could not update the parameter"
868
- msgstr "Impossibile aggiornare il parametro"
869
-
870
- #: lib/hammer_cli_foreman/smart_variables.rb:90
871
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
872
- msgid "Override this parameter."
873
- msgstr "Sovrascrivi questo parametro."
874
-
875
- #: lib/hammer_cli_foreman/smart_variables.rb:92
876
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
877
- msgid "This parameter is required."
878
- msgstr "Questo parametro è obbligatorio."
879
-
880
- #: lib/hammer_cli_foreman/smart_variables.rb:94
881
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
882
- msgid "Type of the parameter."
883
- msgstr "Tipo di parametro."
884
-
885
- #: lib/hammer_cli_foreman/smart_variables.rb:97
886
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
887
- msgid "Type of the validator."
888
- msgstr "Tipo di convalidatore."
889
-
890
- #: lib/hammer_cli_foreman/smart_variables.rb:109
891
- msgid "Manipulate smart variables."
892
- msgstr ""
893
-
894
732
  #: lib/hammer_cli_foreman/hostgroup.rb:9
895
733
  msgid "List of puppetclass ids"
896
734
  msgstr ""
@@ -903,98 +741,119 @@ msgstr ""
903
741
  msgid "Name of puppet proxy"
904
742
  msgstr ""
905
743
 
906
- #: lib/hammer_cli_foreman/hostgroup.rb:41
907
- msgid "Label"
908
- msgstr "Etichetta"
744
+ #: lib/hammer_cli_foreman/hostgroup.rb:13
745
+ msgid "Name of parent hostgroup"
746
+ msgstr ""
747
+
748
+ #: lib/hammer_cli_foreman/hostgroup.rb:48
749
+ #: lib/hammer_cli_foreman/operating_system.rb:11
750
+ msgid "Title"
751
+ msgstr ""
752
+
753
+ #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
754
+ #: lib/hammer_cli_foreman/image.rb:31
755
+ msgid "Operating System"
756
+ msgstr "Sistema Operativo"
909
757
 
910
- #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
758
+ #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
911
759
  msgid "Environment"
912
760
  msgstr "Ambiente"
913
761
 
914
- #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
762
+ #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
915
763
  msgid "Model"
916
764
  msgstr "Modello"
917
765
 
918
- #: lib/hammer_cli_foreman/hostgroup.rb:45
919
- msgid "Ancestry"
920
- msgstr "ascendenza"
921
-
922
- #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
766
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
923
767
  msgid "Subnet"
924
768
  msgstr "Sottorete"
925
769
 
926
- #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
770
+ #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
927
771
  msgid "Domain"
928
772
  msgstr "Dominio"
929
773
 
930
- #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
774
+ #: lib/hammer_cli_foreman/hostgroup.rb:64 lib/hammer_cli_foreman/host.rb:192
775
+ #: lib/hammer_cli_foreman/image.rb:45
776
+ msgid "Architecture"
777
+ msgstr "Architettura"
778
+
779
+ #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
931
780
  msgid "Partition Table"
932
781
  msgstr "Tabella delle partizioni"
933
782
 
934
- #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
783
+ #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
935
784
  msgid "Medium"
936
785
  msgstr "Supporto"
937
786
 
938
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
787
+ #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
939
788
  msgid "Puppet CA Proxy Id"
940
789
  msgstr "ID CA Proxy del Puppet"
941
790
 
942
- #: lib/hammer_cli_foreman/hostgroup.rb:62
791
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
943
792
  msgid "Puppet Master Proxy Id"
944
793
  msgstr "ID Proxy master del Puppet"
945
794
 
946
- #: lib/hammer_cli_foreman/hostgroup.rb:63
795
+ #: lib/hammer_cli_foreman/hostgroup.rb:69
947
796
  msgid "ComputeProfile"
948
797
  msgstr "ComputeProfile"
949
798
 
950
- #: lib/hammer_cli_foreman/hostgroup.rb:76
799
+ #: lib/hammer_cli_foreman/hostgroup.rb:73
800
+ msgid "Parent Id"
801
+ msgstr ""
802
+
803
+ #: lib/hammer_cli_foreman/hostgroup.rb:83
951
804
  msgid "Hostgroup created"
952
805
  msgstr "Hostgroup creato"
953
806
 
954
- #: lib/hammer_cli_foreman/hostgroup.rb:77
807
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
955
808
  msgid "Could not create the hostgroup"
956
809
  msgstr "Impossibile creare l'hostgroup"
957
810
 
958
- #: lib/hammer_cli_foreman/hostgroup.rb:86
811
+ #: lib/hammer_cli_foreman/hostgroup.rb:93
959
812
  msgid "Hostgroup updated"
960
813
  msgstr "Hostgroup aggiornato"
961
814
 
962
- #: lib/hammer_cli_foreman/hostgroup.rb:87
815
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
963
816
  msgid "Could not update the hostgroup"
964
817
  msgstr "Impossibile aggiornare l'hostgroup"
965
818
 
966
- #: lib/hammer_cli_foreman/hostgroup.rb:94
819
+ #: lib/hammer_cli_foreman/hostgroup.rb:101
967
820
  msgid "Hostgroup deleted"
968
821
  msgstr "Hostgroup rimosso"
969
822
 
970
- #: lib/hammer_cli_foreman/hostgroup.rb:95
823
+ #: lib/hammer_cli_foreman/hostgroup.rb:102
971
824
  msgid "Could not delete the hostgroup"
972
825
  msgstr "Impossibile rimuovere l'hostgroup"
973
826
 
974
- #: lib/hammer_cli_foreman/hostgroup.rb:122
827
+ #: lib/hammer_cli_foreman/hostgroup.rb:129
975
828
  msgid "Create or update parameter for a hostgroup."
976
829
  msgstr "Creare o aggiornare un parametro per un hostgroup."
977
830
 
978
- #: lib/hammer_cli_foreman/hostgroup.rb:124
831
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
979
832
  msgid "Hostgroup parameter updated"
980
833
  msgstr "Parametro hostgroup aggiornato"
981
834
 
982
- #: lib/hammer_cli_foreman/hostgroup.rb:125
835
+ #: lib/hammer_cli_foreman/hostgroup.rb:132
983
836
  msgid "New hostgroup parameter created"
984
837
  msgstr "Creato nuovo parametro hostgroup"
985
838
 
986
- #: lib/hammer_cli_foreman/hostgroup.rb:126
839
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
987
840
  msgid "Could not set hostgroup parameter"
988
841
  msgstr "Impossibile impostare il parametro hostgroup"
989
842
 
990
- #: lib/hammer_cli_foreman/hostgroup.rb:133
843
+ #: lib/hammer_cli_foreman/hostgroup.rb:140
991
844
  msgid "Delete parameter for a hostgroup."
992
845
  msgstr "Cancella il parametro per un hostgroup."
993
846
 
994
- #: lib/hammer_cli_foreman/hostgroup.rb:135
847
+ #: lib/hammer_cli_foreman/hostgroup.rb:142
995
848
  msgid "Hostgroup parameter deleted"
996
849
  msgstr "Parametro hostgroup cancellato"
997
850
 
851
+ #: lib/hammer_cli_foreman/template.rb:27
852
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
853
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
854
+ msgid "Type"
855
+ msgstr "Tipo"
856
+
998
857
  #: lib/hammer_cli_foreman/template.rb:71
999
858
  msgid "List available config template kinds."
1000
859
  msgstr "Elenca i tipi di modelli di configurazione disponibili."
@@ -1037,245 +896,267 @@ msgstr "Modello di configurazione rimosso"
1037
896
  msgid "Could not delete the config template"
1038
897
  msgstr "Impossibile rimuovere il modello di configurazione"
1039
898
 
1040
- #: lib/hammer_cli_foreman/host.rb:36
899
+ #: lib/hammer_cli_foreman/host.rb:12
900
+ msgid "Login of the owner"
901
+ msgstr ""
902
+
903
+ #: lib/hammer_cli_foreman/host.rb:14
904
+ msgid "ID of the owner"
905
+ msgstr ""
906
+
907
+ #: lib/hammer_cli_foreman/host.rb:39
1041
908
  msgid "Host parameters."
1042
909
  msgstr "Parametri host"
1043
910
 
1044
- #: lib/hammer_cli_foreman/host.rb:38
911
+ #: lib/hammer_cli_foreman/host.rb:41
1045
912
  msgid "Compute resource attributes."
1046
913
  msgstr "Attributi risorsa di colacolo."
1047
914
 
1048
- #: lib/hammer_cli_foreman/host.rb:40
915
+ #: lib/hammer_cli_foreman/host.rb:43
1049
916
  msgid "Volume parameters"
1050
917
  msgstr "Parametri del volume"
1051
918
 
1052
- #: lib/hammer_cli_foreman/host.rb:42
919
+ #: lib/hammer_cli_foreman/host.rb:45
1053
920
  msgid "Interface parameters."
1054
921
  msgstr "Parametri dell'interfaccia."
1055
922
 
1056
- #: lib/hammer_cli_foreman/host.rb:127
923
+ #: lib/hammer_cli_foreman/host.rb:131
1057
924
  msgid "Host Group"
1058
925
  msgstr "Gruppo di host"
1059
926
 
1060
- #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1061
- #: lib/hammer_cli_foreman/host.rb:210
927
+ #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
928
+ #: lib/hammer_cli_foreman/host.rb:214
1062
929
  msgid "IP"
1063
930
  msgstr "IP"
1064
931
 
1065
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1066
- #: lib/hammer_cli_foreman/host.rb:211
932
+ #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
933
+ #: lib/hammer_cli_foreman/host.rb:215
1067
934
  msgid "MAC"
1068
935
  msgstr "MAC"
1069
936
 
1070
- #: lib/hammer_cli_foreman/host.rb:158
937
+ #: lib/hammer_cli_foreman/host.rb:162
1071
938
  msgid "Cert name"
1072
939
  msgstr "Nome certificato"
1073
940
 
1074
- #: lib/hammer_cli_foreman/host.rb:162
941
+ #: lib/hammer_cli_foreman/host.rb:166
1075
942
  msgid "Managed"
1076
943
  msgstr "Gestito"
1077
944
 
1078
- #: lib/hammer_cli_foreman/host.rb:163
945
+ #: lib/hammer_cli_foreman/host.rb:167
1079
946
  msgid "Enabled"
1080
947
  msgstr "Abilitato"
1081
948
 
1082
- #: lib/hammer_cli_foreman/host.rb:164
949
+ #: lib/hammer_cli_foreman/host.rb:168
1083
950
  msgid "Build"
1084
951
  msgstr "Compilazione"
1085
952
 
1086
- #: lib/hammer_cli_foreman/host.rb:166
953
+ #: lib/hammer_cli_foreman/host.rb:170
1087
954
  msgid "Use image"
1088
955
  msgstr "Usa immagine"
1089
956
 
1090
- #: lib/hammer_cli_foreman/host.rb:167
957
+ #: lib/hammer_cli_foreman/host.rb:171
1091
958
  msgid "Disk"
1092
959
  msgstr "Disco"
1093
960
 
1094
- #: lib/hammer_cli_foreman/host.rb:168
961
+ #: lib/hammer_cli_foreman/host.rb:172
1095
962
  msgid "Image file"
1096
963
  msgstr "File immagine"
1097
964
 
1098
- #: lib/hammer_cli_foreman/host.rb:170
965
+ #: lib/hammer_cli_foreman/host.rb:174
1099
966
  msgid "SP Name"
1100
967
  msgstr "Nome SP"
1101
968
 
1102
- #: lib/hammer_cli_foreman/host.rb:171
969
+ #: lib/hammer_cli_foreman/host.rb:175
1103
970
  msgid "SP IP"
1104
971
  msgstr "IP SP"
1105
972
 
1106
- #: lib/hammer_cli_foreman/host.rb:172
973
+ #: lib/hammer_cli_foreman/host.rb:176
1107
974
  msgid "SP MAC"
1108
975
  msgstr "MCA SP"
1109
976
 
1110
- #: lib/hammer_cli_foreman/host.rb:174
977
+ #: lib/hammer_cli_foreman/host.rb:178
1111
978
  msgid "SP Subnet"
1112
979
  msgstr "Sottorete SP"
1113
980
 
1114
- #: lib/hammer_cli_foreman/host.rb:176
981
+ #: lib/hammer_cli_foreman/host.rb:180
1115
982
  msgid "Installed at"
1116
983
  msgstr "Installato"
1117
984
 
1118
- #: lib/hammer_cli_foreman/host.rb:182
985
+ #: lib/hammer_cli_foreman/host.rb:186
1119
986
  msgid "Owner Id"
1120
987
  msgstr "ID proprietario"
1121
988
 
1122
- #: lib/hammer_cli_foreman/host.rb:185
989
+ #: lib/hammer_cli_foreman/host.rb:189
1123
990
  msgid "Puppet Proxy Id"
1124
991
  msgstr "ID Proxy del Puppet"
1125
992
 
1126
- #: lib/hammer_cli_foreman/host.rb:186
993
+ #: lib/hammer_cli_foreman/host.rb:190
1127
994
  msgid "Owner Type"
1128
995
  msgstr "Tipo di proprietario"
1129
996
 
1130
- #: lib/hammer_cli_foreman/host.rb:189
997
+ #: lib/hammer_cli_foreman/host.rb:193
1131
998
  msgid "Image"
1132
999
  msgstr "Immagine"
1133
1000
 
1134
- #: lib/hammer_cli_foreman/host.rb:190
1001
+ #: lib/hammer_cli_foreman/host.rb:194
1135
1002
  msgid "Compute Resource"
1136
1003
  msgstr "Risorsa di calcolo"
1137
1004
 
1138
- #: lib/hammer_cli_foreman/host.rb:192
1005
+ #: lib/hammer_cli_foreman/host.rb:196
1139
1006
  msgid "Comment"
1140
1007
  msgstr "Commento"
1141
1008
 
1142
- #: lib/hammer_cli_foreman/host.rb:194
1009
+ #: lib/hammer_cli_foreman/host.rb:198
1143
1010
  msgid "BMC Network Interfaces"
1144
1011
  msgstr "Interfacce di rete BMC"
1145
1012
 
1146
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1013
+ #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1147
1014
  msgid "Domain Id"
1148
1015
  msgstr "ID del dominio"
1149
1016
 
1150
- #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1017
+ #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1151
1018
  msgid "Domain Name"
1152
1019
  msgstr "Nome del dominio"
1153
1020
 
1154
- #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1021
+ #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1155
1022
  msgid "Subnet Id"
1156
1023
  msgstr "ID della sottorete"
1157
1024
 
1158
- #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1025
+ #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1159
1026
  msgid "Subnet Name"
1160
1027
  msgstr "Nome sottorete"
1161
1028
 
1162
- #: lib/hammer_cli_foreman/host.rb:203
1029
+ #: lib/hammer_cli_foreman/host.rb:207
1163
1030
  msgid "BMC Username"
1164
1031
  msgstr "Nome utente BMC"
1165
1032
 
1166
- #: lib/hammer_cli_foreman/host.rb:204
1033
+ #: lib/hammer_cli_foreman/host.rb:208
1167
1034
  msgid "BMC Password"
1168
1035
  msgstr "Password BMC"
1169
1036
 
1170
- #: lib/hammer_cli_foreman/host.rb:207
1037
+ #: lib/hammer_cli_foreman/host.rb:211
1171
1038
  msgid "Managed Network Interfaces"
1172
1039
  msgstr "Interfacce di rete gestite"
1173
1040
 
1174
- #: lib/hammer_cli_foreman/host.rb:231
1041
+ #: lib/hammer_cli_foreman/host.rb:235
1175
1042
  msgid "Status"
1176
1043
  msgstr "Stato"
1177
1044
 
1178
- #: lib/hammer_cli_foreman/host.rb:232
1045
+ #: lib/hammer_cli_foreman/host.rb:236
1179
1046
  msgid "Power"
1180
1047
  msgstr "Alimentazione"
1181
1048
 
1182
- #: lib/hammer_cli_foreman/host.rb:268
1049
+ #: lib/hammer_cli_foreman/host.rb:272
1183
1050
  msgid "Puppet run triggered"
1184
1051
  msgstr "Esecuzione puppet attivata"
1185
1052
 
1186
- #: lib/hammer_cli_foreman/host.rb:319
1053
+ #: lib/hammer_cli_foreman/host.rb:323
1187
1054
  msgid "Host created"
1188
1055
  msgstr "Host creato"
1189
1056
 
1190
- #: lib/hammer_cli_foreman/host.rb:320
1057
+ #: lib/hammer_cli_foreman/host.rb:324
1191
1058
  msgid "Could not create the host"
1192
1059
  msgstr "Impossibile creare l'host"
1193
1060
 
1194
- #: lib/hammer_cli_foreman/host.rb:341
1061
+ #: lib/hammer_cli_foreman/host.rb:345
1195
1062
  msgid "Host updated"
1196
1063
  msgstr "Host aggiornato"
1197
1064
 
1198
- #: lib/hammer_cli_foreman/host.rb:342
1065
+ #: lib/hammer_cli_foreman/host.rb:346
1199
1066
  msgid "Could not update the host"
1200
1067
  msgstr "Impossibile aggiornare l'host"
1201
1068
 
1202
- #: lib/hammer_cli_foreman/host.rb:349
1069
+ #: lib/hammer_cli_foreman/host.rb:353
1203
1070
  msgid "Host deleted"
1204
1071
  msgstr "Host rimosso"
1205
1072
 
1206
- #: lib/hammer_cli_foreman/host.rb:350
1073
+ #: lib/hammer_cli_foreman/host.rb:354
1207
1074
  msgid "Could not delete the host"
1208
1075
  msgstr "Impossibile rimuovere l'host"
1209
1076
 
1210
- #: lib/hammer_cli_foreman/host.rb:357
1077
+ #: lib/hammer_cli_foreman/host.rb:361
1211
1078
  msgid "Create or update parameter for a host."
1212
1079
  msgstr "Creare o aggiornare il parametro per un host."
1213
1080
 
1214
- #: lib/hammer_cli_foreman/host.rb:359
1081
+ #: lib/hammer_cli_foreman/host.rb:363
1215
1082
  msgid "Host parameter updated"
1216
1083
  msgstr "Parametro host aggiornato"
1217
1084
 
1218
- #: lib/hammer_cli_foreman/host.rb:360
1085
+ #: lib/hammer_cli_foreman/host.rb:364
1219
1086
  msgid "New host parameter created"
1220
1087
  msgstr "Creato nuovo parametro dell'host"
1221
1088
 
1222
- #: lib/hammer_cli_foreman/host.rb:361
1089
+ #: lib/hammer_cli_foreman/host.rb:365
1223
1090
  msgid "Could not set host parameter"
1224
1091
  msgstr "Impossibile impostare il parametro dell'host"
1225
1092
 
1226
- #: lib/hammer_cli_foreman/host.rb:373
1093
+ #: lib/hammer_cli_foreman/host.rb:377
1227
1094
  msgid "Delete parameter for a host."
1228
1095
  msgstr "Cancella il parametro per un host."
1229
1096
 
1230
- #: lib/hammer_cli_foreman/host.rb:375
1097
+ #: lib/hammer_cli_foreman/host.rb:379
1231
1098
  msgid "Host parameter deleted"
1232
1099
  msgstr "Parametro host cancellato"
1233
1100
 
1234
- #: lib/hammer_cli_foreman/host.rb:390
1101
+ #: lib/hammer_cli_foreman/host.rb:394
1235
1102
  msgid "Power a host on"
1236
1103
  msgstr "Attiva un host"
1237
1104
 
1238
- #: lib/hammer_cli_foreman/host.rb:391
1105
+ #: lib/hammer_cli_foreman/host.rb:395
1239
1106
  msgid "The host is starting."
1240
1107
  msgstr "L'host è stato avviato."
1241
1108
 
1242
- #: lib/hammer_cli_foreman/host.rb:408
1109
+ #: lib/hammer_cli_foreman/host.rb:412
1243
1110
  msgid "Force turning off a host"
1244
1111
  msgstr "Forza la disattivazione di un host."
1245
1112
 
1246
- #: lib/hammer_cli_foreman/host.rb:413
1113
+ #: lib/hammer_cli_foreman/host.rb:417
1247
1114
  msgid "Power a host off"
1248
1115
  msgstr "Disattiva un host"
1249
1116
 
1250
- #: lib/hammer_cli_foreman/host.rb:425
1117
+ #: lib/hammer_cli_foreman/host.rb:429
1251
1118
  msgid "Power off forced."
1252
1119
  msgstr "Disattivazione forzata."
1253
1120
 
1254
- #: lib/hammer_cli_foreman/host.rb:427
1121
+ #: lib/hammer_cli_foreman/host.rb:431
1255
1122
  msgid "Powering the host off."
1256
1123
  msgstr "Disattivazione host in corso."
1257
1124
 
1258
- #: lib/hammer_cli_foreman/host.rb:444
1125
+ #: lib/hammer_cli_foreman/host.rb:448
1259
1126
  msgid "Reboot a host"
1260
1127
  msgstr "Riavvia un host"
1261
1128
 
1262
- #: lib/hammer_cli_foreman/host.rb:445
1129
+ #: lib/hammer_cli_foreman/host.rb:449
1263
1130
  msgid "Host reboot started."
1264
1131
  msgstr "Riavvio host iniziato."
1265
1132
 
1266
- #: lib/hammer_cli_foreman/commands.rb:77
1133
+ #: lib/hammer_cli_foreman/commands.rb:83
1267
1134
  msgid "Received data of unknown format"
1268
1135
  msgstr "Dati ricevuti con un formato sconosciuto"
1269
1136
 
1270
- #: lib/hammer_cli_foreman/commands.rb:244
1137
+ #: lib/hammer_cli_foreman/commands.rb:185
1138
+ msgid ""
1139
+ "Could not find %{resource}. Some search options were missing, please see "
1140
+ "--help."
1141
+ msgstr ""
1142
+
1143
+ #: lib/hammer_cli_foreman/commands.rb:187
1144
+ msgid "Could not find %{resource}, please set option %{switches}."
1145
+ msgstr ""
1146
+
1147
+ #: lib/hammer_cli_foreman/commands.rb:189
1148
+ msgid "Could not find %{resource}, please set one of options %{switches}."
1149
+ msgstr ""
1150
+
1151
+ #: lib/hammer_cli_foreman/commands.rb:288
1271
1152
  msgid "List next page? (%s): "
1272
1153
  msgstr "Elenca pagina successiva? (%s): "
1273
1154
 
1274
- #: lib/hammer_cli_foreman/commands.rb:448
1155
+ #: lib/hammer_cli_foreman/commands.rb:492
1275
1156
  msgid "Associate a resource"
1276
1157
  msgstr "Associare una risorsa"
1277
1158
 
1278
- #: lib/hammer_cli_foreman/commands.rb:470
1159
+ #: lib/hammer_cli_foreman/commands.rb:514
1279
1160
  msgid "Disassociate a resource"
1280
1161
  msgstr "Rimuovere associazione di una risorsa"
1281
1162
 
@@ -1356,10 +1237,6 @@ msgstr ""
1356
1237
  msgid "The server does not support such operation."
1357
1238
  msgstr "Il server non supporta questa operazione."
1358
1239
 
1359
- #: lib/hammer_cli_foreman/operating_system.rb:11
1360
- msgid "Full name"
1361
- msgstr "Nome completo"
1362
-
1363
1240
  #: lib/hammer_cli_foreman/operating_system.rb:12
1364
1241
  msgid "Release name"
1365
1242
  msgstr "Nome della release"
@@ -1388,105 +1265,85 @@ msgstr "Modelli predefiniti"
1388
1265
  msgid "Architectures"
1389
1266
  msgstr "Architetture"
1390
1267
 
1391
- #: lib/hammer_cli_foreman/operating_system.rb:46
1392
- #: lib/hammer_cli_foreman/operating_system.rb:73
1393
- msgid "set associated architectures"
1394
- msgstr "imposta architetture associate"
1395
-
1396
- #: lib/hammer_cli_foreman/operating_system.rb:48
1397
- #: lib/hammer_cli_foreman/operating_system.rb:75
1398
- msgid "set associated templates"
1399
- msgstr "imposta modelli associati"
1400
-
1401
- #: lib/hammer_cli_foreman/operating_system.rb:50
1402
- #: lib/hammer_cli_foreman/operating_system.rb:77
1403
- msgid "set associated installation media"
1404
- msgstr "imposta dispositivi d'installazione associati"
1405
-
1406
- #: lib/hammer_cli_foreman/operating_system.rb:52
1407
- #: lib/hammer_cli_foreman/operating_system.rb:79
1408
- msgid "set associated partition tables"
1409
- msgstr "imposta le tabelle delle partizioni associate"
1410
-
1411
- #: lib/hammer_cli_foreman/operating_system.rb:55
1268
+ #: lib/hammer_cli_foreman/operating_system.rb:44
1412
1269
  msgid "Operating system created"
1413
1270
  msgstr "Sistema operativo creato"
1414
1271
 
1415
- #: lib/hammer_cli_foreman/operating_system.rb:56
1272
+ #: lib/hammer_cli_foreman/operating_system.rb:45
1416
1273
  msgid "Could not create the operating system"
1417
1274
  msgstr "Impossibile creare un sistema operativo"
1418
1275
 
1419
- #: lib/hammer_cli_foreman/operating_system.rb:82
1276
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1420
1277
  msgid "Operating system updated"
1421
1278
  msgstr "Sistema operativo aggiornato"
1422
1279
 
1423
- #: lib/hammer_cli_foreman/operating_system.rb:83
1280
+ #: lib/hammer_cli_foreman/operating_system.rb:53
1424
1281
  msgid "Could not update the operating system"
1425
1282
  msgstr "Impossibile aggiornare il sistema operativo"
1426
1283
 
1427
- #: lib/hammer_cli_foreman/operating_system.rb:99
1284
+ #: lib/hammer_cli_foreman/operating_system.rb:60
1428
1285
  msgid "Operating system deleted"
1429
1286
  msgstr "Sistema operativo rimosso"
1430
1287
 
1431
- #: lib/hammer_cli_foreman/operating_system.rb:100
1288
+ #: lib/hammer_cli_foreman/operating_system.rb:61
1432
1289
  msgid "Could not delete the operating system"
1433
1290
  msgstr "Impossibile rimuovere il sistema operativo"
1434
1291
 
1435
- #: lib/hammer_cli_foreman/operating_system.rb:107
1292
+ #: lib/hammer_cli_foreman/operating_system.rb:68
1436
1293
  msgid "Create or update parameter for an operating system."
1437
1294
  msgstr "Creare o aggiornare un parametro per un sistema operativo."
1438
1295
 
1439
- #: lib/hammer_cli_foreman/operating_system.rb:109
1296
+ #: lib/hammer_cli_foreman/operating_system.rb:70
1440
1297
  msgid "Operating system parameter updated"
1441
1298
  msgstr "Parametro del sistema operativo aggiornato"
1442
1299
 
1443
- #: lib/hammer_cli_foreman/operating_system.rb:110
1300
+ #: lib/hammer_cli_foreman/operating_system.rb:71
1444
1301
  msgid "New operating system parameter created"
1445
1302
  msgstr "Creato un nuovo parametro del sistema operativo"
1446
1303
 
1447
- #: lib/hammer_cli_foreman/operating_system.rb:111
1304
+ #: lib/hammer_cli_foreman/operating_system.rb:72
1448
1305
  msgid "Could not set operating system parameter"
1449
1306
  msgstr "Impossibile impostare il parametro del sistema operativo"
1450
1307
 
1451
- #: lib/hammer_cli_foreman/operating_system.rb:123
1308
+ #: lib/hammer_cli_foreman/operating_system.rb:84
1452
1309
  msgid "Delete parameter for an operating system."
1453
1310
  msgstr "Rimuovere il parametro per un sistema operativo."
1454
1311
 
1455
- #: lib/hammer_cli_foreman/operating_system.rb:125
1312
+ #: lib/hammer_cli_foreman/operating_system.rb:86
1456
1313
  msgid "operating system parameter deleted"
1457
1314
  msgstr "parametro del sistema operativo rimosso"
1458
1315
 
1459
- #: lib/hammer_cli_foreman/operating_system.rb:140
1460
- #: lib/hammer_cli_foreman/operating_system.rb:206
1316
+ #: lib/hammer_cli_foreman/operating_system.rb:101
1317
+ #: lib/hammer_cli_foreman/operating_system.rb:167
1461
1318
  msgid "operatingsystem id"
1462
1319
  msgstr "operatingsystem id"
1463
1320
 
1464
- #: lib/hammer_cli_foreman/operating_system.rb:141
1321
+ #: lib/hammer_cli_foreman/operating_system.rb:102
1465
1322
  msgid "config template id to be set"
1466
1323
  msgstr "id modello di configurazione da impostare"
1467
1324
 
1468
- #: lib/hammer_cli_foreman/operating_system.rb:144
1325
+ #: lib/hammer_cli_foreman/operating_system.rb:105
1469
1326
  msgid ""
1470
1327
  "[%{config_template_name}] was set as default %{template_kind_name} template"
1471
1328
  msgstr "[%{config_template_name}] è stato impostato come modello %{template_kind_name} predefinito"
1472
1329
 
1473
- #: lib/hammer_cli_foreman/operating_system.rb:145
1330
+ #: lib/hammer_cli_foreman/operating_system.rb:106
1474
1331
  msgid "Could not set the os default template"
1475
1332
  msgstr "Impossibile impostare il modello predefinito del sistema operativo"
1476
1333
 
1477
- #: lib/hammer_cli_foreman/operating_system.rb:207
1334
+ #: lib/hammer_cli_foreman/operating_system.rb:168
1478
1335
  msgid "Type of the config template"
1479
1336
  msgstr "Tipo di modello di configurazione"
1480
1337
 
1481
- #: lib/hammer_cli_foreman/operating_system.rb:209
1338
+ #: lib/hammer_cli_foreman/operating_system.rb:170
1482
1339
  msgid "Default template deleted"
1483
1340
  msgstr "Modello predefinito rimosso"
1484
1341
 
1485
- #: lib/hammer_cli_foreman/operating_system.rb:210
1342
+ #: lib/hammer_cli_foreman/operating_system.rb:171
1486
1343
  msgid "Could not delete the default template"
1487
1344
  msgstr "Impossibile rimuovere il modello predefinito"
1488
1345
 
1489
- #: lib/hammer_cli_foreman/operating_system.rb:217
1346
+ #: lib/hammer_cli_foreman/operating_system.rb:178
1490
1347
  msgid "Default template of type %s not found"
1491
1348
  msgstr ""
1492
1349
 
@@ -1571,6 +1428,11 @@ msgstr "Impossibile rimuovere l'ambiente"
1571
1428
  msgid "Smart variables"
1572
1429
  msgstr "Variabili smart"
1573
1430
 
1431
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
1432
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1433
+ msgid "Parameter"
1434
+ msgstr "Parametro"
1435
+
1574
1436
  #: lib/hammer_cli_foreman/puppet_class.rb:35
1575
1437
  msgid "Default value"
1576
1438
  msgstr "Valore predefinito"
@@ -1635,6 +1497,74 @@ msgstr "Rimuovi parametro di un dominio."
1635
1497
  msgid "Domain parameter deleted"
1636
1498
  msgstr "Parametro dominio rimosso"
1637
1499
 
1500
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1501
+ msgid "Default Value"
1502
+ msgstr "Valore predefinito"
1503
+
1504
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1505
+ msgid "Override"
1506
+ msgstr "Override"
1507
+
1508
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1509
+ msgid "Puppet class"
1510
+ msgstr "Classe del puppet"
1511
+
1512
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1513
+ msgid "Class Id"
1514
+ msgstr "ID classe"
1515
+
1516
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1517
+ msgid "Required"
1518
+ msgstr "Obbligatorio"
1519
+
1520
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1521
+ msgid "Validator"
1522
+ msgstr "Convalidatore"
1523
+
1524
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1525
+ msgid "Rule"
1526
+ msgstr "Regola"
1527
+
1528
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1529
+ msgid "Override values"
1530
+ msgstr "Valori override"
1531
+
1532
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1533
+ msgid "Order"
1534
+ msgstr "Ordine"
1535
+
1536
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1537
+ msgid "Count"
1538
+ msgstr "Conteggio"
1539
+
1540
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1541
+ msgid "Match"
1542
+ msgstr "Corrispondenza"
1543
+
1544
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1545
+ msgid "Parameter updated"
1546
+ msgstr "Parametro aggiornato"
1547
+
1548
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1549
+ msgid "Could not update the parameter"
1550
+ msgstr "Impossibile aggiornare il parametro"
1551
+
1552
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1553
+ msgid "Override this parameter."
1554
+ msgstr "Sovrascrivi questo parametro."
1555
+
1556
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1557
+ msgid "This parameter is required."
1558
+ msgstr "Questo parametro è obbligatorio."
1559
+
1560
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1561
+ msgid "Type of the parameter."
1562
+ msgstr "Tipo di parametro."
1563
+
1564
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1565
+ msgid "Type of the validator."
1566
+ msgstr "Tipo di convalidatore."
1567
+
1638
1568
  #: lib/hammer_cli_foreman/auth.rb:7
1639
1569
  msgid "Set credentials"
1640
1570
  msgstr "Imposta le credenziali"
@@ -1689,6 +1619,14 @@ msgstr "Impossibile cancellare il gruppo di utenti"
1689
1619
  msgid "View and manage compute resource's images"
1690
1620
  msgstr "Visualizza e gestisci le immagini della risorsa di calcolo"
1691
1621
 
1622
+ #: lib/hammer_cli_foreman/image.rb:32
1623
+ msgid "Username"
1624
+ msgstr "Nome utente"
1625
+
1626
+ #: lib/hammer_cli_foreman/image.rb:46
1627
+ msgid "IAM role"
1628
+ msgstr "Ruolo IAM"
1629
+
1692
1630
  #: lib/hammer_cli_foreman/image.rb:56
1693
1631
  msgid "Show images available for addition"
1694
1632
  msgstr "Mostra le immagini disponibili da aggiungere"
@@ -1750,103 +1688,111 @@ msgstr "Tabella delle partizioni rimossa"
1750
1688
  msgid "Could not delete the partition table"
1751
1689
  msgstr "Impossibile rimuovere la tabellla delle partizioni"
1752
1690
 
1753
- #: lib/hammer_cli_foreman/credentials.rb:10
1754
- msgid "[Foreman] username: "
1755
- msgstr "Nome utente [Foreman]: "
1691
+ #: lib/hammer_cli_foreman/credentials.rb:26
1692
+ msgid "[Foreman] Username: "
1693
+ msgstr ""
1756
1694
 
1757
- #: lib/hammer_cli_foreman/credentials.rb:15
1758
- msgid "[Foreman] password for %s: "
1759
- msgstr "Password [Foreman] per %s: "
1695
+ #: lib/hammer_cli_foreman/credentials.rb:33
1696
+ msgid "[Foreman] Password for %s: "
1697
+ msgstr ""
1760
1698
 
1761
- #: lib/hammer_cli_foreman/id_resolver.rb:32
1699
+ #: lib/hammer_cli_foreman/id_resolver.rb:36
1762
1700
  msgid "Architecture name"
1763
1701
  msgstr "Nome architettura"
1764
1702
 
1765
- #: lib/hammer_cli_foreman/id_resolver.rb:33
1703
+ #: lib/hammer_cli_foreman/id_resolver.rb:37
1766
1704
  msgid "Compute resource name"
1767
1705
  msgstr "Nome risorsa di calcolo"
1768
1706
 
1769
- #: lib/hammer_cli_foreman/id_resolver.rb:34
1707
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1770
1708
  msgid "Domain name"
1771
1709
  msgstr "Nome del dominio"
1772
1710
 
1773
- #: lib/hammer_cli_foreman/id_resolver.rb:35
1711
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1774
1712
  msgid "Environment name"
1775
1713
  msgstr "Nome ambiente"
1776
1714
 
1777
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1715
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1778
1716
  msgid "Host name"
1779
1717
  msgstr "Hostname"
1780
1718
 
1781
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1719
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1782
1720
  msgid "Hostgroup name"
1783
1721
  msgstr "Nome hostgroup"
1784
1722
 
1785
- #: lib/hammer_cli_foreman/id_resolver.rb:41
1723
+ #: lib/hammer_cli_foreman/id_resolver.rb:45
1786
1724
  msgid "Location name"
1787
1725
  msgstr "Nome posizione"
1788
1726
 
1789
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1727
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1790
1728
  msgid "Medium name"
1791
1729
  msgstr "Nome supporto"
1792
1730
 
1793
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1731
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1794
1732
  msgid "Model name"
1795
1733
  msgstr "Nome modello"
1796
1734
 
1797
- #: lib/hammer_cli_foreman/id_resolver.rb:44
1735
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1798
1736
  msgid "Organization name"
1799
1737
  msgstr "Nome organizzazione"
1800
1738
 
1801
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1739
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1740
+ msgid "Operating system title"
1741
+ msgstr ""
1742
+
1743
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1802
1744
  msgid "Partition table name"
1803
1745
  msgstr "Nome tabella delle partizioni"
1804
1746
 
1805
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1747
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1806
1748
  msgid "Proxy name"
1807
1749
  msgstr "Nome proxy"
1808
1750
 
1809
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1751
+ #: lib/hammer_cli_foreman/id_resolver.rb:52
1810
1752
  msgid "Puppet class name"
1811
1753
  msgstr "Nome classe del puppet"
1812
1754
 
1813
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1755
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1814
1756
  msgid "Report name"
1815
1757
  msgstr "Nome riporto"
1816
1758
 
1817
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1759
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1818
1760
  msgid "User role name"
1819
1761
  msgstr "Nome ruolo utente"
1820
1762
 
1821
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1763
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1822
1764
  msgid "Subnet name"
1823
1765
  msgstr "Nome sottorete"
1824
1766
 
1825
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1767
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1826
1768
  msgid "User's login to search by"
1827
1769
  msgstr "Login utente per la ricerca"
1828
1770
 
1829
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1771
+ #: lib/hammer_cli_foreman/id_resolver.rb:58
1830
1772
  msgid "Common parameter name"
1831
1773
  msgstr "Nome parametro comune"
1832
1774
 
1833
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1775
+ #: lib/hammer_cli_foreman/id_resolver.rb:59
1834
1776
  msgid "Smart class parameter name"
1835
1777
  msgstr "Nome parametro classe smart"
1836
1778
 
1837
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1779
+ #: lib/hammer_cli_foreman/id_resolver.rb:61
1838
1780
  msgid "Name to search by"
1839
1781
  msgstr "Nome per la ricerca"
1840
1782
 
1841
- #: lib/hammer_cli_foreman/id_resolver.rb:140
1783
+ #: lib/hammer_cli_foreman/id_resolver.rb:149
1784
+ msgid "one of %s not found"
1785
+ msgstr ""
1786
+
1787
+ #: lib/hammer_cli_foreman/id_resolver.rb:191
1842
1788
  msgid "%s not found"
1843
1789
  msgstr "%s non trovato"
1844
1790
 
1845
- #: lib/hammer_cli_foreman/id_resolver.rb:141
1791
+ #: lib/hammer_cli_foreman/id_resolver.rb:192
1846
1792
  msgid "%s found more than once"
1847
1793
  msgstr "%s trovato più di una volta"
1848
1794
 
1849
- #: lib/hammer_cli_foreman/id_resolver.rb:152
1795
+ #: lib/hammer_cli_foreman/id_resolver.rb:203
1850
1796
  msgid "Missing options to search %s"
1851
1797
  msgstr "Opzioni mancanti per la ricerca di %s"
1852
1798