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
@@ -8,10 +8,10 @@
8
8
  # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
11
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
12
12
  "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"
13
+ "POT-Creation-Date: 2014-12-11 13:21+0100\n"
14
+ "PO-Revision-Date: 2015-03-21 13:20+0000\n"
15
15
  "Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
16
16
  "Language-Team: French (http://www.transifex.com/projects/p/foreman/language/fr/)\n"
17
17
  "MIME-Version: 1.0\n"
@@ -25,13 +25,10 @@ msgstr ""
25
25
  #: lib/hammer_cli_foreman/organization.rb:13
26
26
  #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
27
27
  #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
28
- #: lib/hammer_cli_foreman/override_value.rb:28
29
28
  #: 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
29
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
30
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:128
31
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
35
32
  #: lib/hammer_cli_foreman/operating_system.rb:10
36
33
  #: lib/hammer_cli_foreman/smart_proxy.rb:11
37
34
  #: lib/hammer_cli_foreman/environment.rb:14
@@ -53,7 +50,7 @@ msgstr "Id"
53
50
  msgid "Host"
54
51
  msgstr "Hôte"
55
52
 
56
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
53
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
57
54
  msgid "Last report"
58
55
  msgstr "Dernier rapport"
59
56
 
@@ -163,12 +160,11 @@ msgstr "Visualiser et gérer les utilisateurs des groupes externes d'utilisateur
163
160
  #: lib/hammer_cli_foreman/common_parameter.rb:12
164
161
  #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
165
162
  #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
166
- #: lib/hammer_cli_foreman/override_value.rb:29
167
163
  #: lib/hammer_cli_foreman/compute_resource.rb:12
168
- #: lib/hammer_cli_foreman/hostgroup.rb:40
164
+ #: lib/hammer_cli_foreman/hostgroup.rb:47
169
165
  #: 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
166
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
167
+ #: lib/hammer_cli_foreman/host.rb:213
172
168
  #: lib/hammer_cli_foreman/operating_system.rb:22
173
169
  #: lib/hammer_cli_foreman/smart_proxy.rb:12
174
170
  #: lib/hammer_cli_foreman/environment.rb:15
@@ -246,10 +242,7 @@ msgid "Could not delete the organization"
246
242
  msgstr "Impossible de supprimer l'organisation"
247
243
 
248
244
  #: 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
245
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
253
246
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
254
247
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
255
248
  msgid "Value"
@@ -402,41 +395,41 @@ msgstr "Impossible de mettre à jour le modèle de matériel"
402
395
  msgid "User role id"
403
396
  msgstr "Identifiant du rôle utilisateur"
404
397
 
405
- #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
398
+ #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
406
399
  #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
407
400
  msgid "(Miscellaneous)"
408
401
  msgstr "(Divers)"
409
402
 
410
- #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
403
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
411
404
  #: lib/hammer_cli_foreman/filter.rb:35
412
405
  msgid "none"
413
406
  msgstr "Aucun"
414
407
 
415
- #: lib/hammer_cli_foreman/role.rb:50
408
+ #: lib/hammer_cli_foreman/role.rb:47
416
409
  msgid "User role [%<name>s] created"
417
410
  msgstr "Rôle utilisateur [%<name>s] créé"
418
411
 
419
- #: lib/hammer_cli_foreman/role.rb:51
412
+ #: lib/hammer_cli_foreman/role.rb:48
420
413
  msgid "Could not create the user role"
421
414
  msgstr "Impossible de créer le rôle utilisateur"
422
415
 
423
- #: lib/hammer_cli_foreman/role.rb:58
416
+ #: lib/hammer_cli_foreman/role.rb:55
424
417
  msgid "User role [%<name>s] updated"
425
418
  msgstr "Rôle utilisateur [%<name>s] mis à jour"
426
419
 
427
- #: lib/hammer_cli_foreman/role.rb:59
420
+ #: lib/hammer_cli_foreman/role.rb:56
428
421
  msgid "Could not update the user role"
429
422
  msgstr "Impossible de mettre à jour le rôle utilisateur"
430
423
 
431
- #: lib/hammer_cli_foreman/role.rb:66
424
+ #: lib/hammer_cli_foreman/role.rb:63
432
425
  msgid "User role [%<name>s] deleted"
433
426
  msgstr "Rôle utilisateur [%<name>s] supprimé"
434
427
 
435
- #: lib/hammer_cli_foreman/role.rb:67
428
+ #: lib/hammer_cli_foreman/role.rb:64
436
429
  msgid "Could not delete the user roles"
437
430
  msgstr "Impossible de supprimer le rôle utilisateur"
438
431
 
439
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
432
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
440
433
  msgid "Fact"
441
434
  msgstr "Fact"
442
435
 
@@ -473,64 +466,6 @@ msgstr "Média d'installation supprimé"
473
466
  msgid "Could not delete the installation media"
474
467
  msgstr "Impossible de supprimer le média d'installation"
475
468
 
476
- #: lib/hammer_cli_foreman/override_value.rb:7
477
- msgid "View and manage override values"
478
- msgstr "Visualiser et gérer les surcharges de valeurs"
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 "Système d'Exploitation"
485
-
486
- #: lib/hammer_cli_foreman/override_value.rb:31
487
- #: lib/hammer_cli_foreman/image.rb:32
488
- msgid "Username"
489
- msgstr "Nom d'utilisateur"
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 "Architecture"
504
-
505
- #: lib/hammer_cli_foreman/override_value.rb:45
506
- #: lib/hammer_cli_foreman/image.rb:46
507
- msgid "IAM role"
508
- msgstr "Rôle IAM"
509
-
510
- #: lib/hammer_cli_foreman/override_value.rb:55
511
- msgid "OverrideValue created"
512
- msgstr "Surcharge de valeur créée"
513
-
514
- #: lib/hammer_cli_foreman/override_value.rb:56
515
- msgid "Could not create the override_value"
516
- msgstr "Impossible de créer cette surcharge de valeur"
517
-
518
- #: lib/hammer_cli_foreman/override_value.rb:64
519
- msgid "OverrideValue updated"
520
- msgstr "Surcharge de valeur mis à jour"
521
-
522
- #: lib/hammer_cli_foreman/override_value.rb:65
523
- msgid "Could not update the override_value"
524
- msgstr "Impossible de mettre à jour cette surcharge de valeur "
525
-
526
- #: lib/hammer_cli_foreman/override_value.rb:73
527
- msgid "OverrideValue deleted"
528
- msgstr "Surcharge de valeur supprimée"
529
-
530
- #: lib/hammer_cli_foreman/override_value.rb:74
531
- msgid "Could not delete the override_value"
532
- msgstr "Impossible de supprimer cette surcharge de valeur "
533
-
534
469
  #: lib/hammer_cli_foreman/exception_handler.rb:41
535
470
  msgid "Forbidden - server refused to process the request"
536
471
  msgstr "Refusé - Le serveur refuse de traiter votre demande"
@@ -553,6 +488,13 @@ msgstr "Est ce que '%s' était lancé pendant que le cache apipie était en cour
553
488
  msgid "Provider"
554
489
  msgstr "Fournisseur"
555
490
 
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:161 lib/hammer_cli_foreman/image.rb:33
494
+ #: lib/hammer_cli_foreman/image.rb:71
495
+ msgid "UUID"
496
+ msgstr "UUID"
497
+
556
498
  #: lib/hammer_cli_foreman/compute_resource.rb:26
557
499
  #: lib/hammer_cli_foreman/compute_resource.rb:36
558
500
  msgid "Region"
@@ -571,7 +513,6 @@ msgid "Url"
571
513
  msgstr "URL"
572
514
 
573
515
  #: lib/hammer_cli_foreman/compute_resource.rb:44
574
- #: lib/hammer_cli_foreman/smart_variables.rb:52
575
516
  #: lib/hammer_cli_foreman/domain.rb:21
576
517
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
577
518
  msgid "Description"
@@ -789,109 +730,6 @@ msgstr "Rôle utilisateur supprimé"
789
730
  msgid "Could not remove the user role"
790
731
  msgstr "Impossible de supprimer le rôle utilisateur"
791
732
 
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 "Paramètre"
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 "Valeur par défaut"
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 "surcharger"
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 "Classe 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 classe"
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 "Type"
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 "Requis"
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 "Validateur"
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 "Règle"
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 "Surcharger les valeurs"
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 "Ordre"
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 "Nombre"
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 "Correspond"
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 "Paramètre mis à jour"
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 "Impossible de mettre à jour le paramètre"
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 "Surcharger ce paramètre."
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 "Ce paramètre est requis."
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 "Type de paramètre."
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 "Type du validateur."
890
-
891
- #: lib/hammer_cli_foreman/smart_variables.rb:109
892
- msgid "Manipulate smart variables."
893
- msgstr "Manipuler les smart variables."
894
-
895
733
  #: lib/hammer_cli_foreman/hostgroup.rb:9
896
734
  msgid "List of puppetclass ids"
897
735
  msgstr "Liste des identifiants de puppetclass"
@@ -904,98 +742,119 @@ msgstr "Nom du proxy pour Puppet CA"
904
742
  msgid "Name of puppet proxy"
905
743
  msgstr "Nom du proxy pour Puppet"
906
744
 
907
- #: lib/hammer_cli_foreman/hostgroup.rb:41
908
- msgid "Label"
909
- msgstr "Label"
745
+ #: lib/hammer_cli_foreman/hostgroup.rb:13
746
+ msgid "Name of parent hostgroup"
747
+ msgstr "Nom du groupe d'hôte parent"
910
748
 
911
- #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
749
+ #: lib/hammer_cli_foreman/hostgroup.rb:48
750
+ #: lib/hammer_cli_foreman/operating_system.rb:11
751
+ msgid "Title"
752
+ msgstr "Titre"
753
+
754
+ #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
755
+ #: lib/hammer_cli_foreman/image.rb:31
756
+ msgid "Operating System"
757
+ msgstr "Système d'Exploitation"
758
+
759
+ #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
912
760
  msgid "Environment"
913
761
  msgstr "Environnement"
914
762
 
915
- #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
763
+ #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
916
764
  msgid "Model"
917
765
  msgstr "Modèle"
918
766
 
919
- #: lib/hammer_cli_foreman/hostgroup.rb:45
920
- msgid "Ancestry"
921
- msgstr "Ancètre"
922
-
923
- #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
767
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
924
768
  msgid "Subnet"
925
769
  msgstr "Sous-Réseau"
926
770
 
927
- #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
771
+ #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
928
772
  msgid "Domain"
929
773
  msgstr "Domaine"
930
774
 
931
- #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
775
+ #: lib/hammer_cli_foreman/hostgroup.rb:64 lib/hammer_cli_foreman/host.rb:192
776
+ #: lib/hammer_cli_foreman/image.rb:45
777
+ msgid "Architecture"
778
+ msgstr "Architecture"
779
+
780
+ #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
932
781
  msgid "Partition Table"
933
782
  msgstr "Table de partition"
934
783
 
935
- #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
784
+ #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
936
785
  msgid "Medium"
937
786
  msgstr "Medium"
938
787
 
939
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
788
+ #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
940
789
  msgid "Puppet CA Proxy Id"
941
790
  msgstr "Id du Proxy Puppet CA"
942
791
 
943
- #: lib/hammer_cli_foreman/hostgroup.rb:62
792
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
944
793
  msgid "Puppet Master Proxy Id"
945
794
  msgstr "Id du proxy Puppet Master"
946
795
 
947
- #: lib/hammer_cli_foreman/hostgroup.rb:63
796
+ #: lib/hammer_cli_foreman/hostgroup.rb:69
948
797
  msgid "ComputeProfile"
949
798
  msgstr "Ressource d'ordinateur"
950
799
 
951
- #: lib/hammer_cli_foreman/hostgroup.rb:76
800
+ #: lib/hammer_cli_foreman/hostgroup.rb:73
801
+ msgid "Parent Id"
802
+ msgstr "Id du parent"
803
+
804
+ #: lib/hammer_cli_foreman/hostgroup.rb:83
952
805
  msgid "Hostgroup created"
953
806
  msgstr "Groupe d'hôtes créé"
954
807
 
955
- #: lib/hammer_cli_foreman/hostgroup.rb:77
808
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
956
809
  msgid "Could not create the hostgroup"
957
810
  msgstr "Impossible de créer le groupe d'hôtes"
958
811
 
959
- #: lib/hammer_cli_foreman/hostgroup.rb:86
812
+ #: lib/hammer_cli_foreman/hostgroup.rb:93
960
813
  msgid "Hostgroup updated"
961
814
  msgstr "Groupe d'hôtes mis à jour"
962
815
 
963
- #: lib/hammer_cli_foreman/hostgroup.rb:87
816
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
964
817
  msgid "Could not update the hostgroup"
965
818
  msgstr "Impossible de mettre à jour le groupe d'hôtes"
966
819
 
967
- #: lib/hammer_cli_foreman/hostgroup.rb:94
820
+ #: lib/hammer_cli_foreman/hostgroup.rb:101
968
821
  msgid "Hostgroup deleted"
969
822
  msgstr "Groupe d'hôtes supprimé"
970
823
 
971
- #: lib/hammer_cli_foreman/hostgroup.rb:95
824
+ #: lib/hammer_cli_foreman/hostgroup.rb:102
972
825
  msgid "Could not delete the hostgroup"
973
826
  msgstr "Impossible de supprimer le groupe d'hôtes"
974
827
 
975
- #: lib/hammer_cli_foreman/hostgroup.rb:122
828
+ #: lib/hammer_cli_foreman/hostgroup.rb:129
976
829
  msgid "Create or update parameter for a hostgroup."
977
830
  msgstr "Créer ou changer un paramètre d'un groupe d'hôtes."
978
831
 
979
- #: lib/hammer_cli_foreman/hostgroup.rb:124
832
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
980
833
  msgid "Hostgroup parameter updated"
981
834
  msgstr "Paramètre du groupe d'hôtes mis à jour"
982
835
 
983
- #: lib/hammer_cli_foreman/hostgroup.rb:125
836
+ #: lib/hammer_cli_foreman/hostgroup.rb:132
984
837
  msgid "New hostgroup parameter created"
985
838
  msgstr "Nouveau paramètre du groupe d'hôtes créé"
986
839
 
987
- #: lib/hammer_cli_foreman/hostgroup.rb:126
840
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
988
841
  msgid "Could not set hostgroup parameter"
989
842
  msgstr "Impossible de positionner le paramètre du groupe d'hôtes"
990
843
 
991
- #: lib/hammer_cli_foreman/hostgroup.rb:133
844
+ #: lib/hammer_cli_foreman/hostgroup.rb:140
992
845
  msgid "Delete parameter for a hostgroup."
993
846
  msgstr "Suppression du paramètre d'un groupe d'hôtes"
994
847
 
995
- #: lib/hammer_cli_foreman/hostgroup.rb:135
848
+ #: lib/hammer_cli_foreman/hostgroup.rb:142
996
849
  msgid "Hostgroup parameter deleted"
997
850
  msgstr "Paramètre du groupe d'hôtes supprimé"
998
851
 
852
+ #: lib/hammer_cli_foreman/template.rb:27
853
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
854
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
855
+ msgid "Type"
856
+ msgstr "Type"
857
+
999
858
  #: lib/hammer_cli_foreman/template.rb:71
1000
859
  msgid "List available config template kinds."
1001
860
  msgstr "Lister les types de modèles disponibles."
@@ -1038,245 +897,267 @@ msgstr "Modèle de configuration supprimé"
1038
897
  msgid "Could not delete the config template"
1039
898
  msgstr "Impossible de supprimer le modèle de configuration"
1040
899
 
1041
- #: lib/hammer_cli_foreman/host.rb:36
900
+ #: lib/hammer_cli_foreman/host.rb:12
901
+ msgid "Login of the owner"
902
+ msgstr "Login du propriétaire"
903
+
904
+ #: lib/hammer_cli_foreman/host.rb:14
905
+ msgid "ID of the owner"
906
+ msgstr "ID du propriétaire"
907
+
908
+ #: lib/hammer_cli_foreman/host.rb:39
1042
909
  msgid "Host parameters."
1043
910
  msgstr "Paramètres de l'Hôte"
1044
911
 
1045
- #: lib/hammer_cli_foreman/host.rb:38
912
+ #: lib/hammer_cli_foreman/host.rb:41
1046
913
  msgid "Compute resource attributes."
1047
914
  msgstr "Attributs des Ressources d'Ordinateur."
1048
915
 
1049
- #: lib/hammer_cli_foreman/host.rb:40
916
+ #: lib/hammer_cli_foreman/host.rb:43
1050
917
  msgid "Volume parameters"
1051
918
  msgstr "Paramètres du Volume"
1052
919
 
1053
- #: lib/hammer_cli_foreman/host.rb:42
920
+ #: lib/hammer_cli_foreman/host.rb:45
1054
921
  msgid "Interface parameters."
1055
922
  msgstr "Paramètres d'interface"
1056
923
 
1057
- #: lib/hammer_cli_foreman/host.rb:127
924
+ #: lib/hammer_cli_foreman/host.rb:131
1058
925
  msgid "Host Group"
1059
926
  msgstr "Groupe d'hôtes"
1060
927
 
1061
- #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1062
- #: lib/hammer_cli_foreman/host.rb:210
928
+ #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
929
+ #: lib/hammer_cli_foreman/host.rb:214
1063
930
  msgid "IP"
1064
931
  msgstr "IP"
1065
932
 
1066
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1067
- #: lib/hammer_cli_foreman/host.rb:211
933
+ #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
934
+ #: lib/hammer_cli_foreman/host.rb:215
1068
935
  msgid "MAC"
1069
936
  msgstr "MAC"
1070
937
 
1071
- #: lib/hammer_cli_foreman/host.rb:158
938
+ #: lib/hammer_cli_foreman/host.rb:162
1072
939
  msgid "Cert name"
1073
940
  msgstr "Nom du certificat"
1074
941
 
1075
- #: lib/hammer_cli_foreman/host.rb:162
942
+ #: lib/hammer_cli_foreman/host.rb:166
1076
943
  msgid "Managed"
1077
944
  msgstr "Géré"
1078
945
 
1079
- #: lib/hammer_cli_foreman/host.rb:163
946
+ #: lib/hammer_cli_foreman/host.rb:167
1080
947
  msgid "Enabled"
1081
948
  msgstr "Activé"
1082
949
 
1083
- #: lib/hammer_cli_foreman/host.rb:164
950
+ #: lib/hammer_cli_foreman/host.rb:168
1084
951
  msgid "Build"
1085
952
  msgstr "Construire"
1086
953
 
1087
- #: lib/hammer_cli_foreman/host.rb:166
954
+ #: lib/hammer_cli_foreman/host.rb:170
1088
955
  msgid "Use image"
1089
956
  msgstr "Utiliser l'image"
1090
957
 
1091
- #: lib/hammer_cli_foreman/host.rb:167
958
+ #: lib/hammer_cli_foreman/host.rb:171
1092
959
  msgid "Disk"
1093
960
  msgstr "Disque"
1094
961
 
1095
- #: lib/hammer_cli_foreman/host.rb:168
962
+ #: lib/hammer_cli_foreman/host.rb:172
1096
963
  msgid "Image file"
1097
964
  msgstr "Fichier Image"
1098
965
 
1099
- #: lib/hammer_cli_foreman/host.rb:170
966
+ #: lib/hammer_cli_foreman/host.rb:174
1100
967
  msgid "SP Name"
1101
968
  msgstr "SP Nom"
1102
969
 
1103
- #: lib/hammer_cli_foreman/host.rb:171
970
+ #: lib/hammer_cli_foreman/host.rb:175
1104
971
  msgid "SP IP"
1105
972
  msgstr "SP IP"
1106
973
 
1107
- #: lib/hammer_cli_foreman/host.rb:172
974
+ #: lib/hammer_cli_foreman/host.rb:176
1108
975
  msgid "SP MAC"
1109
976
  msgstr "SP MAC"
1110
977
 
1111
- #: lib/hammer_cli_foreman/host.rb:174
978
+ #: lib/hammer_cli_foreman/host.rb:178
1112
979
  msgid "SP Subnet"
1113
980
  msgstr "SP sous réseau"
1114
981
 
1115
- #: lib/hammer_cli_foreman/host.rb:176
982
+ #: lib/hammer_cli_foreman/host.rb:180
1116
983
  msgid "Installed at"
1117
984
  msgstr "Installé le"
1118
985
 
1119
- #: lib/hammer_cli_foreman/host.rb:182
986
+ #: lib/hammer_cli_foreman/host.rb:186
1120
987
  msgid "Owner Id"
1121
988
  msgstr "Id du Propriétaire"
1122
989
 
1123
- #: lib/hammer_cli_foreman/host.rb:185
990
+ #: lib/hammer_cli_foreman/host.rb:189
1124
991
  msgid "Puppet Proxy Id"
1125
992
  msgstr "Id du Proxy Puppet"
1126
993
 
1127
- #: lib/hammer_cli_foreman/host.rb:186
994
+ #: lib/hammer_cli_foreman/host.rb:190
1128
995
  msgid "Owner Type"
1129
996
  msgstr "Type de Propriétaire"
1130
997
 
1131
- #: lib/hammer_cli_foreman/host.rb:189
998
+ #: lib/hammer_cli_foreman/host.rb:193
1132
999
  msgid "Image"
1133
1000
  msgstr "Image"
1134
1001
 
1135
- #: lib/hammer_cli_foreman/host.rb:190
1002
+ #: lib/hammer_cli_foreman/host.rb:194
1136
1003
  msgid "Compute Resource"
1137
1004
  msgstr "Ressources d'Ordinateur"
1138
1005
 
1139
- #: lib/hammer_cli_foreman/host.rb:192
1006
+ #: lib/hammer_cli_foreman/host.rb:196
1140
1007
  msgid "Comment"
1141
1008
  msgstr "Commentaire"
1142
1009
 
1143
- #: lib/hammer_cli_foreman/host.rb:194
1010
+ #: lib/hammer_cli_foreman/host.rb:198
1144
1011
  msgid "BMC Network Interfaces"
1145
1012
  msgstr "Interface Réseau BMC"
1146
1013
 
1147
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1014
+ #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1148
1015
  msgid "Domain Id"
1149
1016
  msgstr "Id du domaine"
1150
1017
 
1151
- #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1018
+ #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1152
1019
  msgid "Domain Name"
1153
1020
  msgstr "Nom de domaine"
1154
1021
 
1155
- #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1022
+ #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1156
1023
  msgid "Subnet Id"
1157
1024
  msgstr "Id du sous réseau"
1158
1025
 
1159
- #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1026
+ #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1160
1027
  msgid "Subnet Name"
1161
1028
  msgstr "Nom du sous-réseau"
1162
1029
 
1163
- #: lib/hammer_cli_foreman/host.rb:203
1030
+ #: lib/hammer_cli_foreman/host.rb:207
1164
1031
  msgid "BMC Username"
1165
1032
  msgstr "Nom d'utilisateur BMC"
1166
1033
 
1167
- #: lib/hammer_cli_foreman/host.rb:204
1034
+ #: lib/hammer_cli_foreman/host.rb:208
1168
1035
  msgid "BMC Password"
1169
1036
  msgstr "Mot de passe BMC"
1170
1037
 
1171
- #: lib/hammer_cli_foreman/host.rb:207
1038
+ #: lib/hammer_cli_foreman/host.rb:211
1172
1039
  msgid "Managed Network Interfaces"
1173
1040
  msgstr "Interfaces réseaux gérées"
1174
1041
 
1175
- #: lib/hammer_cli_foreman/host.rb:231
1042
+ #: lib/hammer_cli_foreman/host.rb:235
1176
1043
  msgid "Status"
1177
1044
  msgstr "Statut"
1178
1045
 
1179
- #: lib/hammer_cli_foreman/host.rb:232
1046
+ #: lib/hammer_cli_foreman/host.rb:236
1180
1047
  msgid "Power"
1181
1048
  msgstr "Alimentation"
1182
1049
 
1183
- #: lib/hammer_cli_foreman/host.rb:268
1050
+ #: lib/hammer_cli_foreman/host.rb:272
1184
1051
  msgid "Puppet run triggered"
1185
1052
  msgstr "Puppet Run déclenché"
1186
1053
 
1187
- #: lib/hammer_cli_foreman/host.rb:319
1054
+ #: lib/hammer_cli_foreman/host.rb:323
1188
1055
  msgid "Host created"
1189
1056
  msgstr "Hôte créé"
1190
1057
 
1191
- #: lib/hammer_cli_foreman/host.rb:320
1058
+ #: lib/hammer_cli_foreman/host.rb:324
1192
1059
  msgid "Could not create the host"
1193
1060
  msgstr "Impossible de créer l'hôte"
1194
1061
 
1195
- #: lib/hammer_cli_foreman/host.rb:341
1062
+ #: lib/hammer_cli_foreman/host.rb:345
1196
1063
  msgid "Host updated"
1197
1064
  msgstr "Hôte mis à jour"
1198
1065
 
1199
- #: lib/hammer_cli_foreman/host.rb:342
1066
+ #: lib/hammer_cli_foreman/host.rb:346
1200
1067
  msgid "Could not update the host"
1201
1068
  msgstr "Impossible de mettre à jour l'hôte"
1202
1069
 
1203
- #: lib/hammer_cli_foreman/host.rb:349
1070
+ #: lib/hammer_cli_foreman/host.rb:353
1204
1071
  msgid "Host deleted"
1205
1072
  msgstr "Hôte supprimé"
1206
1073
 
1207
- #: lib/hammer_cli_foreman/host.rb:350
1074
+ #: lib/hammer_cli_foreman/host.rb:354
1208
1075
  msgid "Could not delete the host"
1209
1076
  msgstr "Impossible de supprimer l'hôte"
1210
1077
 
1211
- #: lib/hammer_cli_foreman/host.rb:357
1078
+ #: lib/hammer_cli_foreman/host.rb:361
1212
1079
  msgid "Create or update parameter for a host."
1213
1080
  msgstr "Créer ou changer un paramètre d'un hôte."
1214
1081
 
1215
- #: lib/hammer_cli_foreman/host.rb:359
1082
+ #: lib/hammer_cli_foreman/host.rb:363
1216
1083
  msgid "Host parameter updated"
1217
1084
  msgstr "Paramètre de l'hôte mis à jour"
1218
1085
 
1219
- #: lib/hammer_cli_foreman/host.rb:360
1086
+ #: lib/hammer_cli_foreman/host.rb:364
1220
1087
  msgid "New host parameter created"
1221
1088
  msgstr "Nouveau paramètre de l'hôte créé"
1222
1089
 
1223
- #: lib/hammer_cli_foreman/host.rb:361
1090
+ #: lib/hammer_cli_foreman/host.rb:365
1224
1091
  msgid "Could not set host parameter"
1225
1092
  msgstr "Impossible de positionner le paramètre de l'hôte"
1226
1093
 
1227
- #: lib/hammer_cli_foreman/host.rb:373
1094
+ #: lib/hammer_cli_foreman/host.rb:377
1228
1095
  msgid "Delete parameter for a host."
1229
1096
  msgstr "Suppression du paramètre d'un hôte."
1230
1097
 
1231
- #: lib/hammer_cli_foreman/host.rb:375
1098
+ #: lib/hammer_cli_foreman/host.rb:379
1232
1099
  msgid "Host parameter deleted"
1233
1100
  msgstr "Paramètre de l'hôte supprimé"
1234
1101
 
1235
- #: lib/hammer_cli_foreman/host.rb:390
1102
+ #: lib/hammer_cli_foreman/host.rb:394
1236
1103
  msgid "Power a host on"
1237
1104
  msgstr "Allumer une machine"
1238
1105
 
1239
- #: lib/hammer_cli_foreman/host.rb:391
1106
+ #: lib/hammer_cli_foreman/host.rb:395
1240
1107
  msgid "The host is starting."
1241
1108
  msgstr "L'hôte démarre."
1242
1109
 
1243
- #: lib/hammer_cli_foreman/host.rb:408
1110
+ #: lib/hammer_cli_foreman/host.rb:412
1244
1111
  msgid "Force turning off a host"
1245
1112
  msgstr "Forcer l'extinction d'un hôte"
1246
1113
 
1247
- #: lib/hammer_cli_foreman/host.rb:413
1114
+ #: lib/hammer_cli_foreman/host.rb:417
1248
1115
  msgid "Power a host off"
1249
1116
  msgstr "Éteindre un hôte "
1250
1117
 
1251
- #: lib/hammer_cli_foreman/host.rb:425
1118
+ #: lib/hammer_cli_foreman/host.rb:429
1252
1119
  msgid "Power off forced."
1253
1120
  msgstr "Extinction forcée."
1254
1121
 
1255
- #: lib/hammer_cli_foreman/host.rb:427
1122
+ #: lib/hammer_cli_foreman/host.rb:431
1256
1123
  msgid "Powering the host off."
1257
1124
  msgstr "Extinction de l'hôte."
1258
1125
 
1259
- #: lib/hammer_cli_foreman/host.rb:444
1126
+ #: lib/hammer_cli_foreman/host.rb:448
1260
1127
  msgid "Reboot a host"
1261
1128
  msgstr "Redémarrage d'un hôte"
1262
1129
 
1263
- #: lib/hammer_cli_foreman/host.rb:445
1130
+ #: lib/hammer_cli_foreman/host.rb:449
1264
1131
  msgid "Host reboot started."
1265
1132
  msgstr "Redémarrage de l'hôte lancé"
1266
1133
 
1267
- #: lib/hammer_cli_foreman/commands.rb:77
1134
+ #: lib/hammer_cli_foreman/commands.rb:83
1268
1135
  msgid "Received data of unknown format"
1269
1136
  msgstr "Format inconnu de la donnée reçue"
1270
1137
 
1271
- #: lib/hammer_cli_foreman/commands.rb:244
1138
+ #: lib/hammer_cli_foreman/commands.rb:185
1139
+ msgid ""
1140
+ "Could not find %{resource}. Some search options were missing, please see "
1141
+ "--help."
1142
+ msgstr "Impossible de trouver %{resource}. Certaines options de recherche étaient absentes, merci de regarder --help."
1143
+
1144
+ #: lib/hammer_cli_foreman/commands.rb:187
1145
+ msgid "Could not find %{resource}, please set option %{switches}."
1146
+ msgstr "Impossible de trouver %{resource}, merci de mositionner l'option %{switches}."
1147
+
1148
+ #: lib/hammer_cli_foreman/commands.rb:189
1149
+ msgid "Could not find %{resource}, please set one of options %{switches}."
1150
+ msgstr "Impossible de trouver %{ressource}, merci de positionner une des options suivantes %{switches}."
1151
+
1152
+ #: lib/hammer_cli_foreman/commands.rb:288
1272
1153
  msgid "List next page? (%s): "
1273
1154
  msgstr "Afficher la page suivante ? (%s): "
1274
1155
 
1275
- #: lib/hammer_cli_foreman/commands.rb:448
1156
+ #: lib/hammer_cli_foreman/commands.rb:492
1276
1157
  msgid "Associate a resource"
1277
1158
  msgstr "Associer à une ressource"
1278
1159
 
1279
- #: lib/hammer_cli_foreman/commands.rb:470
1160
+ #: lib/hammer_cli_foreman/commands.rb:514
1280
1161
  msgid "Disassociate a resource"
1281
1162
  msgstr "Dissocier la ressource"
1282
1163
 
@@ -1357,10 +1238,6 @@ msgstr "Groupes externes d'utilisateurs"
1357
1238
  msgid "The server does not support such operation."
1358
1239
  msgstr "Le serveur ne supporte pas cette opération."
1359
1240
 
1360
- #: lib/hammer_cli_foreman/operating_system.rb:11
1361
- msgid "Full name"
1362
- msgstr "Nom complet"
1363
-
1364
1241
  #: lib/hammer_cli_foreman/operating_system.rb:12
1365
1242
  msgid "Release name"
1366
1243
  msgstr "Nom de version"
@@ -1389,105 +1266,85 @@ msgstr "Modèles par défaut"
1389
1266
  msgid "Architectures"
1390
1267
  msgstr "Architectures"
1391
1268
 
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 "associer les architectures"
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 "associer les modèles"
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 "associer les médias d'installation"
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 "associer les tables de partition"
1411
-
1412
- #: lib/hammer_cli_foreman/operating_system.rb:55
1269
+ #: lib/hammer_cli_foreman/operating_system.rb:44
1413
1270
  msgid "Operating system created"
1414
1271
  msgstr "Système d'exploitation créé"
1415
1272
 
1416
- #: lib/hammer_cli_foreman/operating_system.rb:56
1273
+ #: lib/hammer_cli_foreman/operating_system.rb:45
1417
1274
  msgid "Could not create the operating system"
1418
1275
  msgstr "Impossible de créer le système d'exploitation"
1419
1276
 
1420
- #: lib/hammer_cli_foreman/operating_system.rb:82
1277
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1421
1278
  msgid "Operating system updated"
1422
1279
  msgstr "Système d'exploitation mis à jour"
1423
1280
 
1424
- #: lib/hammer_cli_foreman/operating_system.rb:83
1281
+ #: lib/hammer_cli_foreman/operating_system.rb:53
1425
1282
  msgid "Could not update the operating system"
1426
1283
  msgstr "Impossible de mettre à jour le système d'exploitation"
1427
1284
 
1428
- #: lib/hammer_cli_foreman/operating_system.rb:99
1285
+ #: lib/hammer_cli_foreman/operating_system.rb:60
1429
1286
  msgid "Operating system deleted"
1430
1287
  msgstr "Système d'exploitation supprimé"
1431
1288
 
1432
- #: lib/hammer_cli_foreman/operating_system.rb:100
1289
+ #: lib/hammer_cli_foreman/operating_system.rb:61
1433
1290
  msgid "Could not delete the operating system"
1434
1291
  msgstr "Impossible de supprimer le système d'expoitation"
1435
1292
 
1436
- #: lib/hammer_cli_foreman/operating_system.rb:107
1293
+ #: lib/hammer_cli_foreman/operating_system.rb:68
1437
1294
  msgid "Create or update parameter for an operating system."
1438
1295
  msgstr "Créer ou changer un paramètre d'un système d'exploitation."
1439
1296
 
1440
- #: lib/hammer_cli_foreman/operating_system.rb:109
1297
+ #: lib/hammer_cli_foreman/operating_system.rb:70
1441
1298
  msgid "Operating system parameter updated"
1442
1299
  msgstr "Paramètre du système d'exploitation mis à jour"
1443
1300
 
1444
- #: lib/hammer_cli_foreman/operating_system.rb:110
1301
+ #: lib/hammer_cli_foreman/operating_system.rb:71
1445
1302
  msgid "New operating system parameter created"
1446
1303
  msgstr "Nouveau paramètre du système d'exploitation créé"
1447
1304
 
1448
- #: lib/hammer_cli_foreman/operating_system.rb:111
1305
+ #: lib/hammer_cli_foreman/operating_system.rb:72
1449
1306
  msgid "Could not set operating system parameter"
1450
1307
  msgstr "Impossible de positionner le paramètre du système d'exploitation"
1451
1308
 
1452
- #: lib/hammer_cli_foreman/operating_system.rb:123
1309
+ #: lib/hammer_cli_foreman/operating_system.rb:84
1453
1310
  msgid "Delete parameter for an operating system."
1454
1311
  msgstr "Suppression du paramètre d'un système d'exploitation"
1455
1312
 
1456
- #: lib/hammer_cli_foreman/operating_system.rb:125
1313
+ #: lib/hammer_cli_foreman/operating_system.rb:86
1457
1314
  msgid "operating system parameter deleted"
1458
1315
  msgstr "Paramètre du système d'exploitation supprimé"
1459
1316
 
1460
- #: lib/hammer_cli_foreman/operating_system.rb:140
1461
- #: lib/hammer_cli_foreman/operating_system.rb:206
1317
+ #: lib/hammer_cli_foreman/operating_system.rb:101
1318
+ #: lib/hammer_cli_foreman/operating_system.rb:167
1462
1319
  msgid "operatingsystem id"
1463
1320
  msgstr "id du système d'exploitation"
1464
1321
 
1465
- #: lib/hammer_cli_foreman/operating_system.rb:141
1322
+ #: lib/hammer_cli_foreman/operating_system.rb:102
1466
1323
  msgid "config template id to be set"
1467
1324
  msgstr "id du modèle de configuration à configurer"
1468
1325
 
1469
- #: lib/hammer_cli_foreman/operating_system.rb:144
1326
+ #: lib/hammer_cli_foreman/operating_system.rb:105
1470
1327
  msgid ""
1471
1328
  "[%{config_template_name}] was set as default %{template_kind_name} template"
1472
1329
  msgstr "[%{config_template_name}] a été défini comme modèle %{template_kind_name} par défaut"
1473
1330
 
1474
- #: lib/hammer_cli_foreman/operating_system.rb:145
1331
+ #: lib/hammer_cli_foreman/operating_system.rb:106
1475
1332
  msgid "Could not set the os default template"
1476
1333
  msgstr "Impossible de définir le modèle de système d'exploitation par défaut"
1477
1334
 
1478
- #: lib/hammer_cli_foreman/operating_system.rb:207
1335
+ #: lib/hammer_cli_foreman/operating_system.rb:168
1479
1336
  msgid "Type of the config template"
1480
1337
  msgstr "Type de modèle de configuration"
1481
1338
 
1482
- #: lib/hammer_cli_foreman/operating_system.rb:209
1339
+ #: lib/hammer_cli_foreman/operating_system.rb:170
1483
1340
  msgid "Default template deleted"
1484
1341
  msgstr "Modèle de configuration par défaut supprimé"
1485
1342
 
1486
- #: lib/hammer_cli_foreman/operating_system.rb:210
1343
+ #: lib/hammer_cli_foreman/operating_system.rb:171
1487
1344
  msgid "Could not delete the default template"
1488
1345
  msgstr "Impossible de supprimer le modèle de configuration par défaut"
1489
1346
 
1490
- #: lib/hammer_cli_foreman/operating_system.rb:217
1347
+ #: lib/hammer_cli_foreman/operating_system.rb:178
1491
1348
  msgid "Default template of type %s not found"
1492
1349
  msgstr "Modèle par défaut de type %s non trouvé"
1493
1350
 
@@ -1572,6 +1429,11 @@ msgstr "Impossible de supprimer l'environnement"
1572
1429
  msgid "Smart variables"
1573
1430
  msgstr "Smart variables"
1574
1431
 
1432
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
1433
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1434
+ msgid "Parameter"
1435
+ msgstr "Paramètre"
1436
+
1575
1437
  #: lib/hammer_cli_foreman/puppet_class.rb:35
1576
1438
  msgid "Default value"
1577
1439
  msgstr "Valeur par défaut"
@@ -1636,6 +1498,74 @@ msgstr "Suppression du paramètre d'un domaine"
1636
1498
  msgid "Domain parameter deleted"
1637
1499
  msgstr "Paramètre du domaine supprimé"
1638
1500
 
1501
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1502
+ msgid "Default Value"
1503
+ msgstr "Valeur par défaut"
1504
+
1505
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1506
+ msgid "Override"
1507
+ msgstr "surcharger"
1508
+
1509
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1510
+ msgid "Puppet class"
1511
+ msgstr "Classe Puppet"
1512
+
1513
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1514
+ msgid "Class Id"
1515
+ msgstr "Id de classe"
1516
+
1517
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1518
+ msgid "Required"
1519
+ msgstr "Requis"
1520
+
1521
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1522
+ msgid "Validator"
1523
+ msgstr "Validateur"
1524
+
1525
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1526
+ msgid "Rule"
1527
+ msgstr "Règle"
1528
+
1529
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1530
+ msgid "Override values"
1531
+ msgstr "Surcharger les valeurs"
1532
+
1533
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1534
+ msgid "Order"
1535
+ msgstr "Ordre"
1536
+
1537
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1538
+ msgid "Count"
1539
+ msgstr "Nombre"
1540
+
1541
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1542
+ msgid "Match"
1543
+ msgstr "Correspond"
1544
+
1545
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1546
+ msgid "Parameter updated"
1547
+ msgstr "Paramètre mis à jour"
1548
+
1549
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1550
+ msgid "Could not update the parameter"
1551
+ msgstr "Impossible de mettre à jour le paramètre"
1552
+
1553
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1554
+ msgid "Override this parameter."
1555
+ msgstr "Surcharger ce paramètre."
1556
+
1557
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1558
+ msgid "This parameter is required."
1559
+ msgstr "Ce paramètre est requis."
1560
+
1561
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1562
+ msgid "Type of the parameter."
1563
+ msgstr "Type de paramètre."
1564
+
1565
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1566
+ msgid "Type of the validator."
1567
+ msgstr "Type du validateur."
1568
+
1639
1569
  #: lib/hammer_cli_foreman/auth.rb:7
1640
1570
  msgid "Set credentials"
1641
1571
  msgstr "Définir les authentifiants"
@@ -1690,6 +1620,14 @@ msgstr "Impossible de supprimer le groupe d'utilisateurs"
1690
1620
  msgid "View and manage compute resource's images"
1691
1621
  msgstr "Gérer les images des ressources d'ordinateur"
1692
1622
 
1623
+ #: lib/hammer_cli_foreman/image.rb:32
1624
+ msgid "Username"
1625
+ msgstr "Nom d'utilisateur"
1626
+
1627
+ #: lib/hammer_cli_foreman/image.rb:46
1628
+ msgid "IAM role"
1629
+ msgstr "Rôle IAM"
1630
+
1693
1631
  #: lib/hammer_cli_foreman/image.rb:56
1694
1632
  msgid "Show images available for addition"
1695
1633
  msgstr "Afficher les images disponibles pour ajout"
@@ -1751,103 +1689,111 @@ msgstr "Table de partition supprimée"
1751
1689
  msgid "Could not delete the partition table"
1752
1690
  msgstr "Impossible de supprimer la table de partition"
1753
1691
 
1754
- #: lib/hammer_cli_foreman/credentials.rb:10
1755
- msgid "[Foreman] username: "
1756
- msgstr "[Foreman] nom d'utilisateur: "
1692
+ #: lib/hammer_cli_foreman/credentials.rb:26
1693
+ msgid "[Foreman] Username: "
1694
+ msgstr "[Foreman] Nom d'utilisateur :"
1757
1695
 
1758
- #: lib/hammer_cli_foreman/credentials.rb:15
1759
- msgid "[Foreman] password for %s: "
1760
- msgstr "[Foreman] mot de passe pour %s: "
1696
+ #: lib/hammer_cli_foreman/credentials.rb:33
1697
+ msgid "[Foreman] Password for %s: "
1698
+ msgstr "[Foreman] Mot de passe pour %s :"
1761
1699
 
1762
- #: lib/hammer_cli_foreman/id_resolver.rb:32
1700
+ #: lib/hammer_cli_foreman/id_resolver.rb:36
1763
1701
  msgid "Architecture name"
1764
1702
  msgstr "Nom de l'architecture"
1765
1703
 
1766
- #: lib/hammer_cli_foreman/id_resolver.rb:33
1704
+ #: lib/hammer_cli_foreman/id_resolver.rb:37
1767
1705
  msgid "Compute resource name"
1768
1706
  msgstr "Nom de la ressource d'ordinateur"
1769
1707
 
1770
- #: lib/hammer_cli_foreman/id_resolver.rb:34
1708
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1771
1709
  msgid "Domain name"
1772
1710
  msgstr "Nom de domaine"
1773
1711
 
1774
- #: lib/hammer_cli_foreman/id_resolver.rb:35
1712
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1775
1713
  msgid "Environment name"
1776
1714
  msgstr "Nom de l'environnement"
1777
1715
 
1778
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1716
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1779
1717
  msgid "Host name"
1780
1718
  msgstr "Nom d'hôte"
1781
1719
 
1782
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1720
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1783
1721
  msgid "Hostgroup name"
1784
1722
  msgstr "Nom du groupe d'hôtes"
1785
1723
 
1786
- #: lib/hammer_cli_foreman/id_resolver.rb:41
1724
+ #: lib/hammer_cli_foreman/id_resolver.rb:45
1787
1725
  msgid "Location name"
1788
1726
  msgstr "Nom de la localisation"
1789
1727
 
1790
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1728
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1791
1729
  msgid "Medium name"
1792
1730
  msgstr "Nom du medium"
1793
1731
 
1794
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1732
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1795
1733
  msgid "Model name"
1796
1734
  msgstr "Nom du modèle"
1797
1735
 
1798
- #: lib/hammer_cli_foreman/id_resolver.rb:44
1736
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1799
1737
  msgid "Organization name"
1800
1738
  msgstr "Nom de l'organisation"
1801
1739
 
1802
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1740
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1741
+ msgid "Operating system title"
1742
+ msgstr "Titre du système d'exploitation"
1743
+
1744
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1803
1745
  msgid "Partition table name"
1804
1746
  msgstr "Nom de la table de partition"
1805
1747
 
1806
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1748
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1807
1749
  msgid "Proxy name"
1808
1750
  msgstr "Nom du proxy"
1809
1751
 
1810
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1752
+ #: lib/hammer_cli_foreman/id_resolver.rb:52
1811
1753
  msgid "Puppet class name"
1812
1754
  msgstr "Nom de la classe puppet"
1813
1755
 
1814
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1756
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1815
1757
  msgid "Report name"
1816
1758
  msgstr "Nom du rapport"
1817
1759
 
1818
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1760
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1819
1761
  msgid "User role name"
1820
1762
  msgstr "Nom du rôle utilisateur"
1821
1763
 
1822
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1764
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1823
1765
  msgid "Subnet name"
1824
1766
  msgstr "Nom du sous réseau"
1825
1767
 
1826
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1768
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1827
1769
  msgid "User's login to search by"
1828
1770
  msgstr "Recherche par nom d'utilisateur"
1829
1771
 
1830
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1772
+ #: lib/hammer_cli_foreman/id_resolver.rb:58
1831
1773
  msgid "Common parameter name"
1832
1774
  msgstr "Nom du paramètre commun"
1833
1775
 
1834
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1776
+ #: lib/hammer_cli_foreman/id_resolver.rb:59
1835
1777
  msgid "Smart class parameter name"
1836
1778
  msgstr "Nom du paramètre de la smart class"
1837
1779
 
1838
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1780
+ #: lib/hammer_cli_foreman/id_resolver.rb:61
1839
1781
  msgid "Name to search by"
1840
1782
  msgstr "Recherche par nom"
1841
1783
 
1842
- #: lib/hammer_cli_foreman/id_resolver.rb:140
1784
+ #: lib/hammer_cli_foreman/id_resolver.rb:149
1785
+ msgid "one of %s not found"
1786
+ msgstr "aucun membre de %s trouvé"
1787
+
1788
+ #: lib/hammer_cli_foreman/id_resolver.rb:191
1843
1789
  msgid "%s not found"
1844
1790
  msgstr "%s non trouvé"
1845
1791
 
1846
- #: lib/hammer_cli_foreman/id_resolver.rb:141
1792
+ #: lib/hammer_cli_foreman/id_resolver.rb:192
1847
1793
  msgid "%s found more than once"
1848
1794
  msgstr "%s a été trouvé plus d'une fois"
1849
1795
 
1850
- #: lib/hammer_cli_foreman/id_resolver.rb:152
1796
+ #: lib/hammer_cli_foreman/id_resolver.rb:203
1851
1797
  msgid "Missing options to search %s"
1852
1798
  msgstr "Option manquante pour rechercher %s"
1853
1799