hammer_cli_foreman 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/foreman.yml +1 -0
- data/doc/host_create.md +3 -3
- data/doc/release_notes.md +14 -0
- data/lib/hammer_cli_foreman.rb +0 -1
- data/lib/hammer_cli_foreman/api.rb +3 -0
- data/lib/hammer_cli_foreman/api/connection.rb +75 -0
- data/lib/hammer_cli_foreman/api/interactive_basic_auth.rb +49 -0
- data/lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb +120 -0
- data/lib/hammer_cli_foreman/auth.rb +16 -12
- data/lib/hammer_cli_foreman/commands.rb +4 -36
- data/lib/hammer_cli_foreman/compute_resource.rb +6 -6
- data/lib/hammer_cli_foreman/compute_resources/all.rb +7 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/gce.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb +22 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb +35 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb +36 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb +20 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb +62 -0
- data/lib/hammer_cli_foreman/filter.rb +1 -0
- data/lib/hammer_cli_foreman/host.rb +15 -140
- data/lib/hammer_cli_foreman/hosts/common_update_help.rb +53 -0
- data/lib/hammer_cli_foreman/hosts/common_update_options.rb +141 -0
- data/lib/hammer_cli_foreman/references.rb +13 -2
- data/lib/hammer_cli_foreman/role.rb +3 -7
- data/lib/hammer_cli_foreman/smart_class_parameter.rb +2 -2
- data/lib/hammer_cli_foreman/smart_variable.rb +1 -2
- data/lib/hammer_cli_foreman/user.rb +2 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ca/hammer-cli-foreman.edit.po +520 -318
- data/locale/ca/hammer-cli-foreman.po +253 -175
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +568 -358
- data/locale/de/hammer-cli-foreman.po +255 -177
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/hammer-cli-foreman.edit.po +446 -228
- data/locale/en/hammer-cli-foreman.po +208 -41
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +498 -307
- data/locale/en_GB/hammer-cli-foreman.po +254 -176
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +594 -388
- data/locale/es/hammer-cli-foreman.po +254 -176
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +542 -342
- data/locale/fr/hammer-cli-foreman.po +254 -176
- data/locale/hammer-cli-foreman.pot +503 -241
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +510 -295
- data/locale/it/hammer-cli-foreman.po +254 -176
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +590 -365
- data/locale/ja/hammer-cli-foreman.po +254 -176
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +591 -366
- data/locale/ko/hammer-cli-foreman.po +254 -176
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +588 -388
- data/locale/pt_BR/hammer-cli-foreman.po +254 -176
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +549 -336
- data/locale/ru/hammer-cli-foreman.po +254 -176
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +598 -373
- data/locale/zh_CN/hammer-cli-foreman.po +254 -176
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +592 -367
- data/locale/zh_TW/hammer-cli-foreman.po +254 -176
- data/test/test_helper.rb +7 -5
- data/test/unit/api/interactive_basic_auth_test.rb +87 -0
- data/test/unit/api/session_authenticator_wrapper_test.rb +263 -0
- data/test/unit/exception_handler_test.rb +1 -1
- data/test/unit/host_test.rb +2 -2
- metadata +314 -292
- data/lib/hammer_cli_foreman/credentials.rb +0 -67
- data/test/unit/credentials_test.rb +0 -59
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
#
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
8
|
+
"Project-Id-Version: hammer-cli-foreman 0.9.0\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"PO-Revision-Date: 2014-03-04 16:47+0000\n"
|
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
@@ -100,6 +100,36 @@ msgstr ""
|
|
|
100
100
|
msgid "Manage user groups."
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
103
|
+
msgid "Invalid username or password"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
106
|
+
msgid "You are logged in as '%s'"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
msgid "You are currently not logged in"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
112
|
+
msgid "[Foreman] Username: "
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
msgid "[Foreman] Password for %s: "
|
|
116
|
+
msgstr ""
|
|
117
|
+
|
|
118
|
+
msgid "Can't use session auth due to invalid permissions on session files."
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
msgid "Session exist, currently logged in as '%s'"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
msgid "Session has expired"
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
127
|
+
msgid "Invalid session file format"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
103
133
|
msgid "Id"
|
|
104
134
|
msgstr ""
|
|
105
135
|
|
|
@@ -415,21 +445,22 @@ msgstr ""
|
|
|
415
445
|
msgid "Set credentials"
|
|
416
446
|
msgstr ""
|
|
417
447
|
|
|
418
|
-
msgid "
|
|
448
|
+
msgid "username to access the remote system"
|
|
419
449
|
msgstr ""
|
|
420
450
|
|
|
421
|
-
msgid "
|
|
451
|
+
msgid "password to access the remote system"
|
|
422
452
|
msgstr ""
|
|
423
453
|
|
|
424
|
-
msgid "
|
|
454
|
+
msgid "Successfully logged in."
|
|
425
455
|
msgstr ""
|
|
426
456
|
|
|
427
|
-
msgid "
|
|
457
|
+
msgid "Wipe your credentials"
|
|
428
458
|
msgstr ""
|
|
429
459
|
|
|
430
|
-
msgid ""
|
|
431
|
-
|
|
432
|
-
|
|
460
|
+
msgid "Credentials deleted."
|
|
461
|
+
msgstr ""
|
|
462
|
+
|
|
463
|
+
msgid "Information about current connections"
|
|
433
464
|
msgstr ""
|
|
434
465
|
|
|
435
466
|
msgid "Manage LDAP auth sources."
|
|
@@ -551,7 +582,7 @@ msgstr ""
|
|
|
551
582
|
msgid "Provider"
|
|
552
583
|
msgstr ""
|
|
553
584
|
|
|
554
|
-
msgid "
|
|
585
|
+
msgid "Datacenter"
|
|
555
586
|
msgstr ""
|
|
556
587
|
|
|
557
588
|
msgid "Region"
|
|
@@ -590,10 +621,114 @@ msgstr ""
|
|
|
590
621
|
msgid "Could not delete the compute resource"
|
|
591
622
|
msgstr ""
|
|
592
623
|
|
|
593
|
-
msgid "
|
|
624
|
+
msgid "EC2"
|
|
594
625
|
msgstr ""
|
|
595
626
|
|
|
596
|
-
msgid "
|
|
627
|
+
msgid "GCE"
|
|
628
|
+
msgstr ""
|
|
629
|
+
|
|
630
|
+
msgid "Libvirt"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
msgid "Number of CPUs"
|
|
634
|
+
msgstr ""
|
|
635
|
+
|
|
636
|
+
msgid "String, amount of memory, value in bytes"
|
|
637
|
+
msgstr ""
|
|
638
|
+
|
|
639
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
640
|
+
msgstr ""
|
|
641
|
+
|
|
642
|
+
msgid "Possible values: %s"
|
|
643
|
+
msgstr ""
|
|
644
|
+
|
|
645
|
+
msgid "Name of interface according to type"
|
|
646
|
+
msgstr ""
|
|
647
|
+
|
|
648
|
+
msgid "One of available storage pools"
|
|
649
|
+
msgstr ""
|
|
650
|
+
|
|
651
|
+
msgid "String value, eg. 10G"
|
|
652
|
+
msgstr ""
|
|
653
|
+
|
|
654
|
+
msgid "OpenStack"
|
|
655
|
+
msgstr ""
|
|
656
|
+
|
|
657
|
+
msgid "oVirt"
|
|
658
|
+
msgstr ""
|
|
659
|
+
|
|
660
|
+
msgid "Hardware profile to use"
|
|
661
|
+
msgstr ""
|
|
662
|
+
|
|
663
|
+
msgid "Integer value, number of cores"
|
|
664
|
+
msgstr ""
|
|
665
|
+
|
|
666
|
+
msgid "Amount of memory, integer value in bytes"
|
|
667
|
+
msgstr ""
|
|
668
|
+
|
|
669
|
+
msgid "Eg. eth0"
|
|
670
|
+
msgstr ""
|
|
671
|
+
|
|
672
|
+
msgid "Select one of available networks for a cluster"
|
|
673
|
+
msgstr ""
|
|
674
|
+
|
|
675
|
+
msgid "Volume size in GB, integer value"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
msgid "Select one of available storage domains"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
681
|
+
msgid "Boolean, only one volume can be bootable"
|
|
682
|
+
msgstr ""
|
|
683
|
+
|
|
684
|
+
msgid "Rackspace"
|
|
685
|
+
msgstr ""
|
|
686
|
+
|
|
687
|
+
msgid "VMWare"
|
|
688
|
+
msgstr ""
|
|
689
|
+
|
|
690
|
+
msgid "Cpu count"
|
|
691
|
+
msgstr ""
|
|
692
|
+
|
|
693
|
+
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
694
|
+
msgstr ""
|
|
695
|
+
|
|
696
|
+
msgid "Integer number, amount of memory in MB"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
699
|
+
msgid "Cluster id from VMware"
|
|
700
|
+
msgstr ""
|
|
701
|
+
|
|
702
|
+
msgid "Path to folder"
|
|
703
|
+
msgstr ""
|
|
704
|
+
|
|
705
|
+
msgid "Guest OS id form VMware"
|
|
706
|
+
msgstr ""
|
|
707
|
+
|
|
708
|
+
msgid "Id of the controller from VMware"
|
|
709
|
+
msgstr ""
|
|
710
|
+
|
|
711
|
+
msgid "Hardware version id from VMware"
|
|
712
|
+
msgstr ""
|
|
713
|
+
|
|
714
|
+
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
715
|
+
msgstr ""
|
|
716
|
+
|
|
717
|
+
msgid "Network id from VMware"
|
|
718
|
+
msgstr ""
|
|
719
|
+
|
|
720
|
+
msgid "Datastore id from VMware"
|
|
721
|
+
msgstr ""
|
|
722
|
+
|
|
723
|
+
msgid "Integer number, volume size in GB"
|
|
724
|
+
msgstr ""
|
|
725
|
+
|
|
726
|
+
msgid "Type of the network adapter, for example one of:"
|
|
727
|
+
msgstr ""
|
|
728
|
+
|
|
729
|
+
msgid ""
|
|
730
|
+
"See documentation center for your version of vSphere to find more details abou"
|
|
731
|
+
"t available adapter types:"
|
|
597
732
|
msgstr ""
|
|
598
733
|
|
|
599
734
|
msgid "Use the default organization and/or location from the server"
|
|
@@ -735,6 +870,9 @@ msgstr ""
|
|
|
735
870
|
msgid "Unlimited?"
|
|
736
871
|
msgstr ""
|
|
737
872
|
|
|
873
|
+
msgid "Override?"
|
|
874
|
+
msgstr ""
|
|
875
|
+
|
|
738
876
|
msgid "Role"
|
|
739
877
|
msgstr ""
|
|
740
878
|
|
|
@@ -768,27 +906,6 @@ msgstr ""
|
|
|
768
906
|
msgid "Resource"
|
|
769
907
|
msgstr ""
|
|
770
908
|
|
|
771
|
-
msgid "Login of the owner"
|
|
772
|
-
msgstr ""
|
|
773
|
-
|
|
774
|
-
msgid "ID of the owner"
|
|
775
|
-
msgstr ""
|
|
776
|
-
|
|
777
|
-
msgid "Host parameters."
|
|
778
|
-
msgstr ""
|
|
779
|
-
|
|
780
|
-
msgid "Compute resource attributes."
|
|
781
|
-
msgstr ""
|
|
782
|
-
|
|
783
|
-
msgid "Volume parameters"
|
|
784
|
-
msgstr ""
|
|
785
|
-
|
|
786
|
-
msgid "Interface parameters."
|
|
787
|
-
msgstr ""
|
|
788
|
-
|
|
789
|
-
msgid "Enter the root password for the host:"
|
|
790
|
-
msgstr ""
|
|
791
|
-
|
|
792
909
|
msgid "Operating System"
|
|
793
910
|
msgstr ""
|
|
794
911
|
|
|
@@ -804,6 +921,9 @@ msgstr ""
|
|
|
804
921
|
msgid "Bare Metal"
|
|
805
922
|
msgstr ""
|
|
806
923
|
|
|
924
|
+
msgid "UUID"
|
|
925
|
+
msgstr ""
|
|
926
|
+
|
|
807
927
|
msgid "Organization"
|
|
808
928
|
msgstr ""
|
|
809
929
|
|
|
@@ -1068,6 +1188,53 @@ msgstr ""
|
|
|
1068
1188
|
msgid "Hostgroup parameter deleted"
|
|
1069
1189
|
msgstr ""
|
|
1070
1190
|
|
|
1191
|
+
msgid "Available keys for %{option}"
|
|
1192
|
+
msgstr ""
|
|
1193
|
+
|
|
1194
|
+
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1195
|
+
msgstr ""
|
|
1196
|
+
|
|
1197
|
+
msgid "For %{condition}"
|
|
1198
|
+
msgstr ""
|
|
1199
|
+
|
|
1200
|
+
msgid ""
|
|
1201
|
+
"VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virt"
|
|
1202
|
+
"ual interfaces."
|
|
1203
|
+
msgstr ""
|
|
1204
|
+
|
|
1205
|
+
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1206
|
+
msgstr ""
|
|
1207
|
+
|
|
1208
|
+
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1209
|
+
msgstr ""
|
|
1210
|
+
|
|
1211
|
+
msgid "always IPMI"
|
|
1212
|
+
msgstr ""
|
|
1213
|
+
|
|
1214
|
+
msgid "Provider specific options"
|
|
1215
|
+
msgstr ""
|
|
1216
|
+
|
|
1217
|
+
msgid "Login of the owner"
|
|
1218
|
+
msgstr ""
|
|
1219
|
+
|
|
1220
|
+
msgid "ID of the owner"
|
|
1221
|
+
msgstr ""
|
|
1222
|
+
|
|
1223
|
+
msgid "Host parameters."
|
|
1224
|
+
msgstr ""
|
|
1225
|
+
|
|
1226
|
+
msgid "Compute resource attributes."
|
|
1227
|
+
msgstr ""
|
|
1228
|
+
|
|
1229
|
+
msgid "Volume parameters"
|
|
1230
|
+
msgstr ""
|
|
1231
|
+
|
|
1232
|
+
msgid "Interface parameters."
|
|
1233
|
+
msgstr ""
|
|
1234
|
+
|
|
1235
|
+
msgid "Enter the root password for the host:"
|
|
1236
|
+
msgstr ""
|
|
1237
|
+
|
|
1071
1238
|
msgid "Architecture name"
|
|
1072
1239
|
msgstr ""
|
|
1073
1240
|
|
|
@@ -1543,6 +1710,15 @@ msgstr ""
|
|
|
1543
1710
|
msgid "User groups"
|
|
1544
1711
|
msgstr ""
|
|
1545
1712
|
|
|
1713
|
+
msgid "Usergroup"
|
|
1714
|
+
msgstr ""
|
|
1715
|
+
|
|
1716
|
+
msgid "Roles"
|
|
1717
|
+
msgstr ""
|
|
1718
|
+
|
|
1719
|
+
msgid "Inherited User groups"
|
|
1720
|
+
msgstr ""
|
|
1721
|
+
|
|
1546
1722
|
msgid "Smart proxies"
|
|
1547
1723
|
msgstr ""
|
|
1548
1724
|
|
|
@@ -1576,9 +1752,6 @@ msgstr ""
|
|
|
1576
1752
|
msgid "Operating systems"
|
|
1577
1753
|
msgstr ""
|
|
1578
1754
|
|
|
1579
|
-
msgid "Roles"
|
|
1580
|
-
msgstr ""
|
|
1581
|
-
|
|
1582
1755
|
msgid "External user groups"
|
|
1583
1756
|
msgstr ""
|
|
1584
1757
|
|
|
@@ -1657,12 +1830,6 @@ msgstr ""
|
|
|
1657
1830
|
msgid "Builtin"
|
|
1658
1831
|
msgstr ""
|
|
1659
1832
|
|
|
1660
|
-
msgid "Yes"
|
|
1661
|
-
msgstr ""
|
|
1662
|
-
|
|
1663
|
-
msgid "No"
|
|
1664
|
-
msgstr ""
|
|
1665
|
-
|
|
1666
1833
|
msgid "User role id"
|
|
1667
1834
|
msgstr ""
|
|
1668
1835
|
|
|
Binary file
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
# Dominic Cleal <dominic@cleal.org>, 2016
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
11
|
+
"Project-Id-Version: hammer-cli-foreman 0.8.0\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2016-
|
|
14
|
-
"PO-Revision-Date: 2016-
|
|
15
|
-
"Last-Translator:
|
|
13
|
+
"POT-Creation-Date: 2016-12-15 22:40+0100\n"
|
|
14
|
+
"PO-Revision-Date: 2016-08-24 08:53+0000\n"
|
|
15
|
+
"Last-Translator: Dominic Cleal <dominic@cleal.org>\n"
|
|
16
16
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
|
|
17
17
|
"man/language/en_GB/)\n"
|
|
18
18
|
"MIME-Version: 1.0\n"
|
|
@@ -21,124 +21,164 @@ msgstr ""
|
|
|
21
21
|
"Language: en_GB\n"
|
|
22
22
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
23
23
|
|
|
24
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
24
|
+
#: ../lib/hammer_cli_foreman.rb:31
|
|
25
25
|
msgid "Foreman connection login/logout."
|
|
26
26
|
msgstr "Foreman connection login/logout."
|
|
27
27
|
|
|
28
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
28
|
+
#: ../lib/hammer_cli_foreman.rb:35
|
|
29
29
|
msgid "Manipulate architectures."
|
|
30
30
|
msgstr "Manipulate architectures."
|
|
31
31
|
|
|
32
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
32
|
+
#: ../lib/hammer_cli_foreman.rb:39
|
|
33
33
|
msgid "Manipulate auth sources."
|
|
34
34
|
msgstr "Manipulate auth sources."
|
|
35
35
|
|
|
36
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
36
|
+
#: ../lib/hammer_cli_foreman.rb:43
|
|
37
37
|
msgid "Manipulate compute resources."
|
|
38
38
|
msgstr "Manipulate compute resources."
|
|
39
39
|
|
|
40
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
40
|
+
#: ../lib/hammer_cli_foreman.rb:47
|
|
41
41
|
msgid "Manipulate domains."
|
|
42
42
|
msgstr "Manipulate domains."
|
|
43
43
|
|
|
44
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
44
|
+
#: ../lib/hammer_cli_foreman.rb:51
|
|
45
45
|
msgid "Manipulate environments."
|
|
46
46
|
msgstr "Manipulate environments."
|
|
47
47
|
|
|
48
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
48
|
+
#: ../lib/hammer_cli_foreman.rb:55
|
|
49
49
|
msgid "Search facts."
|
|
50
50
|
msgstr "Search facts."
|
|
51
51
|
|
|
52
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
52
|
+
#: ../lib/hammer_cli_foreman.rb:59
|
|
53
53
|
msgid "Manage permission filters."
|
|
54
54
|
msgstr "Manage permission filters."
|
|
55
55
|
|
|
56
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
56
|
+
#: ../lib/hammer_cli_foreman.rb:63
|
|
57
57
|
msgid "Manipulate hosts."
|
|
58
58
|
msgstr "Manipulate hosts."
|
|
59
59
|
|
|
60
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
60
|
+
#: ../lib/hammer_cli_foreman.rb:67
|
|
61
61
|
msgid "Manipulate hostgroups."
|
|
62
62
|
msgstr "Manipulate hostgroups."
|
|
63
63
|
|
|
64
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
64
|
+
#: ../lib/hammer_cli_foreman.rb:71
|
|
65
65
|
msgid "Manipulate locations."
|
|
66
66
|
msgstr "Manipulate locations."
|
|
67
67
|
|
|
68
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
68
|
+
#: ../lib/hammer_cli_foreman.rb:75
|
|
69
69
|
msgid "Manipulate installation media."
|
|
70
70
|
msgstr "Manipulate installation media."
|
|
71
71
|
|
|
72
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
72
|
+
#: ../lib/hammer_cli_foreman.rb:79
|
|
73
73
|
msgid "Manipulate hardware models."
|
|
74
74
|
msgstr "Manipulate hardware models."
|
|
75
75
|
|
|
76
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
76
|
+
#: ../lib/hammer_cli_foreman.rb:83
|
|
77
77
|
msgid "Manipulate operating system."
|
|
78
78
|
msgstr "Manipulate operating system."
|
|
79
79
|
|
|
80
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
80
|
+
#: ../lib/hammer_cli_foreman.rb:87
|
|
81
81
|
msgid "Manipulate organizations."
|
|
82
82
|
msgstr "Manipulate organisations."
|
|
83
83
|
|
|
84
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
84
|
+
#: ../lib/hammer_cli_foreman.rb:91
|
|
85
85
|
msgid "Manipulate partition tables."
|
|
86
86
|
msgstr "Manipulate partition tables."
|
|
87
87
|
|
|
88
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
88
|
+
#: ../lib/hammer_cli_foreman.rb:95
|
|
89
89
|
msgid "Search puppet modules."
|
|
90
90
|
msgstr "Search puppet modules."
|
|
91
91
|
|
|
92
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
92
|
+
#: ../lib/hammer_cli_foreman.rb:99
|
|
93
93
|
msgid "Browse and read reports."
|
|
94
94
|
msgstr "Browse and read reports."
|
|
95
95
|
|
|
96
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
96
|
+
#: ../lib/hammer_cli_foreman.rb:103
|
|
97
97
|
msgid "Manage user roles."
|
|
98
98
|
msgstr "Manage user roles."
|
|
99
99
|
|
|
100
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
100
|
+
#: ../lib/hammer_cli_foreman.rb:107
|
|
101
101
|
msgid "Manipulate smart class parameters."
|
|
102
102
|
msgstr "Manipulate smart class parameters."
|
|
103
103
|
|
|
104
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
104
|
+
#: ../lib/hammer_cli_foreman.rb:111
|
|
105
105
|
msgid "Manipulate smart variables."
|
|
106
106
|
msgstr "Manipulate smart variables."
|
|
107
107
|
|
|
108
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
108
|
+
#: ../lib/hammer_cli_foreman.rb:115
|
|
109
109
|
msgid "Manipulate smart proxies."
|
|
110
110
|
msgstr "Manipulate smart proxies."
|
|
111
111
|
|
|
112
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
112
|
+
#: ../lib/hammer_cli_foreman.rb:119
|
|
113
113
|
#, fuzzy
|
|
114
114
|
msgid "Manipulate realms."
|
|
115
115
|
msgstr "Manipulate domains."
|
|
116
116
|
|
|
117
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
117
|
+
#: ../lib/hammer_cli_foreman.rb:123
|
|
118
118
|
msgid "Change server settings."
|
|
119
119
|
msgstr "Change server settings."
|
|
120
120
|
|
|
121
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
121
|
+
#: ../lib/hammer_cli_foreman.rb:127
|
|
122
122
|
msgid "Manipulate subnets."
|
|
123
123
|
msgstr "Manipulate subnets."
|
|
124
124
|
|
|
125
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
125
|
+
#: ../lib/hammer_cli_foreman.rb:131
|
|
126
126
|
msgid "Manipulate config templates."
|
|
127
127
|
msgstr "Manipulate config templates."
|
|
128
128
|
|
|
129
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
129
|
+
#: ../lib/hammer_cli_foreman.rb:135
|
|
130
130
|
msgid "Manipulate users."
|
|
131
131
|
msgstr "Manipulate users."
|
|
132
132
|
|
|
133
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
133
|
+
#: ../lib/hammer_cli_foreman.rb:139
|
|
134
134
|
msgid "Manage user groups."
|
|
135
135
|
msgstr "Manage user groups."
|
|
136
136
|
|
|
137
|
-
#: ../lib/hammer_cli_foreman/
|
|
137
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:15
|
|
138
|
+
msgid "Invalid username or password"
|
|
139
|
+
msgstr ""
|
|
140
|
+
|
|
141
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:20
|
|
142
|
+
msgid "You are logged in as '%s'"
|
|
143
|
+
msgstr ""
|
|
144
|
+
|
|
145
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:22 ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:28
|
|
146
|
+
msgid "You are currently not logged in"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:33
|
|
150
|
+
msgid "[Foreman] Username: "
|
|
151
|
+
msgstr ""
|
|
152
|
+
|
|
153
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:37
|
|
154
|
+
msgid "[Foreman] Password for %s: "
|
|
155
|
+
msgstr ""
|
|
156
|
+
|
|
157
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:17
|
|
158
|
+
msgid "Can't use session auth due to invalid permissions on session files."
|
|
159
|
+
msgstr ""
|
|
160
|
+
|
|
161
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:26
|
|
162
|
+
msgid "Session exist, currently logged in as '%s'"
|
|
163
|
+
msgstr ""
|
|
164
|
+
|
|
165
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:51
|
|
166
|
+
msgid "Session has expired"
|
|
167
|
+
msgstr ""
|
|
168
|
+
|
|
169
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:78
|
|
170
|
+
msgid "Invalid session file format"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
173
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:106
|
|
174
|
+
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
177
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/host.rb:30 ../lib/hammer_cli_foreman/host.rb:62 ../lib/hammer_cli_foreman/host.rb:93 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/realm.rb:8 ../lib/hammer_cli_foreman/references.rb:36 ../lib/hammer_cli_foreman/references.rb:43 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:66 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
|
|
138
178
|
msgid "Id"
|
|
139
179
|
msgstr "Id"
|
|
140
180
|
|
|
141
|
-
#: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:
|
|
181
|
+
#: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/filter.rb:91 ../lib/hammer_cli_foreman/host.rb:31 ../lib/hammer_cli_foreman/host.rb:64 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/realm.rb:9 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:75 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
|
|
142
182
|
msgid "Name"
|
|
143
183
|
msgstr "Name"
|
|
144
184
|
|
|
@@ -171,196 +211,168 @@ msgid "Associate a hostgroup"
|
|
|
171
211
|
msgstr "Associate a hostgroup"
|
|
172
212
|
|
|
173
213
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:43
|
|
174
|
-
#, fuzzy
|
|
175
214
|
msgid "The hostgroup has been associated"
|
|
176
|
-
msgstr "
|
|
215
|
+
msgstr ""
|
|
177
216
|
|
|
178
217
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
179
|
-
#, fuzzy
|
|
180
218
|
msgid "Could not associate the hostgroup"
|
|
181
|
-
msgstr "
|
|
219
|
+
msgstr ""
|
|
182
220
|
|
|
183
221
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
184
222
|
msgid "Disassociate a hostgroup"
|
|
185
223
|
msgstr "Disassociate a hostgroup"
|
|
186
224
|
|
|
187
225
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
188
|
-
#, fuzzy
|
|
189
226
|
msgid "The hostgroup has been disassociated"
|
|
190
|
-
msgstr "
|
|
227
|
+
msgstr ""
|
|
191
228
|
|
|
192
229
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
193
|
-
#, fuzzy
|
|
194
230
|
msgid "Could not disassociate the hostgroup"
|
|
195
|
-
msgstr "
|
|
231
|
+
msgstr ""
|
|
196
232
|
|
|
197
233
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
198
234
|
msgid "Associate an environment"
|
|
199
235
|
msgstr "Associate an environment"
|
|
200
236
|
|
|
201
237
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:63
|
|
202
|
-
#, fuzzy
|
|
203
238
|
msgid "The environment has been associated"
|
|
204
|
-
msgstr "
|
|
239
|
+
msgstr ""
|
|
205
240
|
|
|
206
241
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
207
|
-
#, fuzzy
|
|
208
242
|
msgid "Could not associate the environment"
|
|
209
|
-
msgstr "
|
|
243
|
+
msgstr ""
|
|
210
244
|
|
|
211
245
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
212
246
|
msgid "Disassociate an environment"
|
|
213
247
|
msgstr "Disassociate an environment"
|
|
214
248
|
|
|
215
249
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:71
|
|
216
|
-
#, fuzzy
|
|
217
250
|
msgid "The environment has been disassociated"
|
|
218
|
-
msgstr "
|
|
251
|
+
msgstr ""
|
|
219
252
|
|
|
220
253
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
221
|
-
#, fuzzy
|
|
222
254
|
msgid "Could not disassociate the environment"
|
|
223
|
-
msgstr "
|
|
255
|
+
msgstr ""
|
|
224
256
|
|
|
225
257
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
226
258
|
msgid "Associate a domain"
|
|
227
259
|
msgstr "Associate a domain"
|
|
228
260
|
|
|
229
261
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:83
|
|
230
|
-
#, fuzzy
|
|
231
262
|
msgid "The domain has been associated"
|
|
232
|
-
msgstr "
|
|
263
|
+
msgstr ""
|
|
233
264
|
|
|
234
265
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
235
|
-
#, fuzzy
|
|
236
266
|
msgid "Could not associate the domain"
|
|
237
|
-
msgstr "
|
|
267
|
+
msgstr ""
|
|
238
268
|
|
|
239
269
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
240
270
|
msgid "Disassociate a domain"
|
|
241
271
|
msgstr "Disassociate a domain"
|
|
242
272
|
|
|
243
273
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
244
|
-
#, fuzzy
|
|
245
274
|
msgid "The domain has been disassociated"
|
|
246
|
-
msgstr "
|
|
275
|
+
msgstr ""
|
|
247
276
|
|
|
248
277
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
249
|
-
#, fuzzy
|
|
250
278
|
msgid "Could not disassociate the domain"
|
|
251
|
-
msgstr "
|
|
279
|
+
msgstr ""
|
|
252
280
|
|
|
253
281
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
254
282
|
msgid "Associate a medium"
|
|
255
283
|
msgstr "Associate a medium"
|
|
256
284
|
|
|
257
285
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
258
|
-
#, fuzzy
|
|
259
286
|
msgid "The medium has been associated"
|
|
260
|
-
msgstr "
|
|
287
|
+
msgstr ""
|
|
261
288
|
|
|
262
289
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
263
|
-
#, fuzzy
|
|
264
290
|
msgid "Could not associate the medium"
|
|
265
|
-
msgstr "
|
|
291
|
+
msgstr ""
|
|
266
292
|
|
|
267
293
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
268
294
|
msgid "Disassociate a medium"
|
|
269
295
|
msgstr "Disassociate a medium"
|
|
270
296
|
|
|
271
297
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
272
|
-
#, fuzzy
|
|
273
298
|
msgid "The medium has been disassociated"
|
|
274
|
-
msgstr "
|
|
299
|
+
msgstr ""
|
|
275
300
|
|
|
276
301
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
277
|
-
#, fuzzy
|
|
278
302
|
msgid "Could not disassociate the medium"
|
|
279
|
-
msgstr "
|
|
303
|
+
msgstr ""
|
|
280
304
|
|
|
281
305
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
282
306
|
msgid "Associate a subnet"
|
|
283
307
|
msgstr "Associate a subnet"
|
|
284
308
|
|
|
285
309
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
286
|
-
#, fuzzy
|
|
287
310
|
msgid "The subnet has been associated"
|
|
288
|
-
msgstr "
|
|
311
|
+
msgstr ""
|
|
289
312
|
|
|
290
313
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
291
|
-
#, fuzzy
|
|
292
314
|
msgid "Could not associate the subnet"
|
|
293
|
-
msgstr "
|
|
315
|
+
msgstr ""
|
|
294
316
|
|
|
295
317
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
296
318
|
msgid "Disassociate a subnet"
|
|
297
319
|
msgstr "Disassociate a subnet"
|
|
298
320
|
|
|
299
321
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
300
|
-
#, fuzzy
|
|
301
322
|
msgid "The subnet has been disassociated"
|
|
302
|
-
msgstr "
|
|
323
|
+
msgstr ""
|
|
303
324
|
|
|
304
325
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
305
|
-
#, fuzzy
|
|
306
326
|
msgid "Could not disassociate the subnet"
|
|
307
|
-
msgstr "
|
|
327
|
+
msgstr ""
|
|
308
328
|
|
|
309
329
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
310
330
|
msgid "Associate a compute resource"
|
|
311
331
|
msgstr "Associate a compute resource"
|
|
312
332
|
|
|
313
333
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:143
|
|
314
|
-
#, fuzzy
|
|
315
334
|
msgid "The compute resource has been associated"
|
|
316
|
-
msgstr "
|
|
335
|
+
msgstr ""
|
|
317
336
|
|
|
318
337
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
319
|
-
#, fuzzy
|
|
320
338
|
msgid "Could not associate the compute resource"
|
|
321
|
-
msgstr "
|
|
339
|
+
msgstr ""
|
|
322
340
|
|
|
323
341
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
324
342
|
msgid "Disassociate a compute resource"
|
|
325
343
|
msgstr "Disassociate a compute resource"
|
|
326
344
|
|
|
327
345
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:151
|
|
328
|
-
#, fuzzy
|
|
329
346
|
msgid "The compute resource has been disassociated"
|
|
330
|
-
msgstr "
|
|
347
|
+
msgstr ""
|
|
331
348
|
|
|
332
349
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
333
|
-
#, fuzzy
|
|
334
350
|
msgid "Could not disassociate the compute resource"
|
|
335
|
-
msgstr "
|
|
351
|
+
msgstr ""
|
|
336
352
|
|
|
337
353
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
338
354
|
msgid "Associate a smart proxy"
|
|
339
355
|
msgstr "Associate a smart proxy"
|
|
340
356
|
|
|
341
357
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:163
|
|
342
|
-
#, fuzzy
|
|
343
358
|
msgid "The smart proxy has been associated"
|
|
344
|
-
msgstr "
|
|
359
|
+
msgstr ""
|
|
345
360
|
|
|
346
361
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
347
|
-
#, fuzzy
|
|
348
362
|
msgid "Could not associate the smart proxy"
|
|
349
|
-
msgstr "
|
|
363
|
+
msgstr ""
|
|
350
364
|
|
|
351
365
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
352
366
|
msgid "Disassociate a smart proxy"
|
|
353
367
|
msgstr "Disassociate a smart proxy"
|
|
354
368
|
|
|
355
369
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:175
|
|
356
|
-
#, fuzzy
|
|
357
370
|
msgid "The smart proxy has been disassociated"
|
|
358
|
-
msgstr "
|
|
371
|
+
msgstr ""
|
|
359
372
|
|
|
360
373
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
361
|
-
#, fuzzy
|
|
362
374
|
msgid "Could not disassociate the smart proxy"
|
|
363
|
-
msgstr "
|
|
375
|
+
msgstr ""
|
|
364
376
|
|
|
365
377
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
366
378
|
msgid "Associate an user"
|
|
@@ -419,9 +431,8 @@ msgid "The configuration template has been associated"
|
|
|
419
431
|
msgstr ""
|
|
420
432
|
|
|
421
433
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
422
|
-
#, fuzzy
|
|
423
434
|
msgid "Could not associate the configuration template"
|
|
424
|
-
msgstr "
|
|
435
|
+
msgstr ""
|
|
425
436
|
|
|
426
437
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
427
438
|
msgid "Disassociate a configuration template"
|
|
@@ -432,9 +443,8 @@ msgid "The configuration template has been disassociated"
|
|
|
432
443
|
msgstr ""
|
|
433
444
|
|
|
434
445
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
435
|
-
#, fuzzy
|
|
436
446
|
msgid "Could not disassociate the configuration template"
|
|
437
|
-
msgstr "
|
|
447
|
+
msgstr ""
|
|
438
448
|
|
|
439
449
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
440
450
|
msgid "Associate an organization"
|
|
@@ -442,26 +452,23 @@ msgstr "Associate an organisation"
|
|
|
442
452
|
|
|
443
453
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:255
|
|
444
454
|
msgid "The organization has been associated"
|
|
445
|
-
msgstr ""
|
|
455
|
+
msgstr "The organisation has been associated"
|
|
446
456
|
|
|
447
457
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
448
|
-
#, fuzzy
|
|
449
458
|
msgid "Could not associate the organization"
|
|
450
|
-
msgstr "Could not
|
|
459
|
+
msgstr "Could not associate the organisation"
|
|
451
460
|
|
|
452
461
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
453
462
|
msgid "Disassociate an organization"
|
|
454
463
|
msgstr "Disassociate an organisation"
|
|
455
464
|
|
|
456
465
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:263
|
|
457
|
-
#, fuzzy
|
|
458
466
|
msgid "The organization has been disassociated"
|
|
459
|
-
msgstr "The
|
|
467
|
+
msgstr "The organisation has been disassociated"
|
|
460
468
|
|
|
461
469
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
462
|
-
#, fuzzy
|
|
463
470
|
msgid "Could not disassociate the organization"
|
|
464
|
-
msgstr "Could not
|
|
471
|
+
msgstr "Could not disassociate the organisation"
|
|
465
472
|
|
|
466
473
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
467
474
|
msgid "Associate an operating system"
|
|
@@ -567,12 +574,12 @@ msgstr "Associate a domain"
|
|
|
567
574
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:359
|
|
568
575
|
#, fuzzy
|
|
569
576
|
msgid "The location has been associated"
|
|
570
|
-
msgstr "The
|
|
577
|
+
msgstr "The organisation has been associated"
|
|
571
578
|
|
|
572
579
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:360
|
|
573
580
|
#, fuzzy
|
|
574
581
|
msgid "Could not associate the location"
|
|
575
|
-
msgstr "Could not associate the
|
|
582
|
+
msgstr "Could not associate the organisation"
|
|
576
583
|
|
|
577
584
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:365
|
|
578
585
|
#, fuzzy
|
|
@@ -582,39 +589,41 @@ msgstr "Disassociate a domain"
|
|
|
582
589
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:367
|
|
583
590
|
#, fuzzy
|
|
584
591
|
msgid "The location has been disassociated"
|
|
585
|
-
msgstr "The
|
|
592
|
+
msgstr "The organisation has been disassociated"
|
|
586
593
|
|
|
587
594
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:368
|
|
588
595
|
#, fuzzy
|
|
589
596
|
msgid "Could not disassociate the location"
|
|
590
|
-
msgstr "Could not disassociate the
|
|
597
|
+
msgstr "Could not disassociate the organisation"
|
|
591
598
|
|
|
592
599
|
#: ../lib/hammer_cli_foreman/auth.rb:7
|
|
593
600
|
msgid "Set credentials"
|
|
594
601
|
msgstr "Set credentials"
|
|
595
602
|
|
|
596
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
603
|
+
#: ../lib/hammer_cli_foreman/auth.rb:9
|
|
604
|
+
msgid "username to access the remote system"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
#: ../lib/hammer_cli_foreman/auth.rb:10
|
|
608
|
+
msgid "password to access the remote system"
|
|
609
|
+
msgstr ""
|
|
610
|
+
|
|
611
|
+
#: ../lib/hammer_cli_foreman/auth.rb:22
|
|
612
|
+
msgid "Successfully logged in."
|
|
613
|
+
msgstr ""
|
|
614
|
+
|
|
615
|
+
#: ../lib/hammer_cli_foreman/auth.rb:29
|
|
597
616
|
msgid "Wipe your credentials"
|
|
598
617
|
msgstr "Wipe your credentials"
|
|
599
618
|
|
|
600
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
619
|
+
#: ../lib/hammer_cli_foreman/auth.rb:34
|
|
601
620
|
msgid "Credentials deleted."
|
|
602
621
|
msgstr "Credentials deleted."
|
|
603
622
|
|
|
604
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
623
|
+
#: ../lib/hammer_cli_foreman/auth.rb:41
|
|
605
624
|
msgid "Information about current connections"
|
|
606
625
|
msgstr "Information about current connections"
|
|
607
626
|
|
|
608
|
-
#: ../lib/hammer_cli_foreman/auth.rb:37
|
|
609
|
-
msgid "You are logged in as '%s'"
|
|
610
|
-
msgstr ""
|
|
611
|
-
|
|
612
|
-
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
613
|
-
msgid ""
|
|
614
|
-
"You are currently not logged in to any service.\n"
|
|
615
|
-
"Use the service to set credentials."
|
|
616
|
-
msgstr ""
|
|
617
|
-
|
|
618
627
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
619
628
|
msgid "Manage LDAP auth sources."
|
|
620
629
|
msgstr ""
|
|
@@ -691,48 +700,47 @@ msgstr ""
|
|
|
691
700
|
msgid "Could not update the Auth Source"
|
|
692
701
|
msgstr ""
|
|
693
702
|
|
|
694
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
703
|
+
#: ../lib/hammer_cli_foreman/commands.rb:56
|
|
695
704
|
msgid "Received data of unknown format"
|
|
696
705
|
msgstr ""
|
|
697
706
|
|
|
698
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
707
|
+
#: ../lib/hammer_cli_foreman/commands.rb:164
|
|
699
708
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
700
709
|
msgstr ""
|
|
701
710
|
|
|
702
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
711
|
+
#: ../lib/hammer_cli_foreman/commands.rb:166
|
|
703
712
|
msgid "Could not find %{resource}, please set option %{switches}."
|
|
704
713
|
msgstr ""
|
|
705
714
|
|
|
706
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
715
|
+
#: ../lib/hammer_cli_foreman/commands.rb:168
|
|
707
716
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
708
717
|
msgstr ""
|
|
709
718
|
|
|
710
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
719
|
+
#: ../lib/hammer_cli_foreman/commands.rb:497
|
|
711
720
|
msgid "Associate a resource"
|
|
712
721
|
msgstr ""
|
|
713
722
|
|
|
714
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
723
|
+
#: ../lib/hammer_cli_foreman/commands.rb:501
|
|
715
724
|
msgid "Could not associate the %{resource_name}"
|
|
716
725
|
msgstr ""
|
|
717
726
|
|
|
718
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
727
|
+
#: ../lib/hammer_cli_foreman/commands.rb:505
|
|
719
728
|
msgid "The %{resource_name} has been associated"
|
|
720
729
|
msgstr ""
|
|
721
730
|
|
|
722
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
731
|
+
#: ../lib/hammer_cli_foreman/commands.rb:527
|
|
723
732
|
msgid "Disassociate a resource"
|
|
724
733
|
msgstr ""
|
|
725
734
|
|
|
726
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
727
|
-
#, fuzzy
|
|
735
|
+
#: ../lib/hammer_cli_foreman/commands.rb:539
|
|
728
736
|
msgid "Could not disassociate the %{resource_name}"
|
|
729
|
-
msgstr "
|
|
737
|
+
msgstr ""
|
|
730
738
|
|
|
731
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
739
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
|
732
740
|
msgid "The %{resource_name} has been disassociated"
|
|
733
741
|
msgstr ""
|
|
734
742
|
|
|
735
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
|
743
|
+
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:189 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:78 ../lib/hammer_cli_foreman/smart_variable.rb:68
|
|
736
744
|
msgid "Value"
|
|
737
745
|
msgstr "Value"
|
|
738
746
|
|
|
@@ -772,8 +780,8 @@ msgstr ""
|
|
|
772
780
|
msgid "Provider"
|
|
773
781
|
msgstr "Provider"
|
|
774
782
|
|
|
775
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
776
|
-
msgid "
|
|
783
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
784
|
+
msgid "Datacenter"
|
|
777
785
|
msgstr ""
|
|
778
786
|
|
|
779
787
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
@@ -792,7 +800,7 @@ msgstr ""
|
|
|
792
800
|
msgid "Url"
|
|
793
801
|
msgstr ""
|
|
794
802
|
|
|
795
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/location.rb:15 ../lib/hammer_cli_foreman/organization.rb:15 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:53
|
|
803
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/location.rb:15 ../lib/hammer_cli_foreman/organization.rb:15 ../lib/hammer_cli_foreman/role.rb:21 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:53 ../lib/hammer_cli_foreman/user.rb:34
|
|
796
804
|
msgid "Description"
|
|
797
805
|
msgstr "Description"
|
|
798
806
|
|
|
@@ -824,12 +832,152 @@ msgstr ""
|
|
|
824
832
|
msgid "Could not delete the compute resource"
|
|
825
833
|
msgstr ""
|
|
826
834
|
|
|
827
|
-
#: ../lib/hammer_cli_foreman/
|
|
828
|
-
msgid "
|
|
835
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb:6
|
|
836
|
+
msgid "EC2"
|
|
829
837
|
msgstr ""
|
|
830
838
|
|
|
831
|
-
#: ../lib/hammer_cli_foreman/
|
|
832
|
-
msgid "
|
|
839
|
+
#: ../lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb:6
|
|
840
|
+
msgid "GCE"
|
|
841
|
+
msgstr ""
|
|
842
|
+
|
|
843
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:6
|
|
844
|
+
msgid "Libvirt"
|
|
845
|
+
msgstr ""
|
|
846
|
+
|
|
847
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:12
|
|
848
|
+
msgid "Number of CPUs"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
851
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:13
|
|
852
|
+
msgid "String, amount of memory, value in bytes"
|
|
853
|
+
msgstr ""
|
|
854
|
+
|
|
855
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:14 ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:16
|
|
856
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:19 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:21 ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:28 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:10 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:28
|
|
860
|
+
msgid "Possible values: %s"
|
|
861
|
+
msgstr ""
|
|
862
|
+
|
|
863
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:20
|
|
864
|
+
#, fuzzy
|
|
865
|
+
msgid "Name of interface according to type"
|
|
866
|
+
msgstr "Name"
|
|
867
|
+
|
|
868
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:26
|
|
869
|
+
msgid "One of available storage pools"
|
|
870
|
+
msgstr ""
|
|
871
|
+
|
|
872
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:27
|
|
873
|
+
msgid "String value, eg. 10G"
|
|
874
|
+
msgstr ""
|
|
875
|
+
|
|
876
|
+
#: ../lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb:6
|
|
877
|
+
msgid "OpenStack"
|
|
878
|
+
msgstr ""
|
|
879
|
+
|
|
880
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:6
|
|
881
|
+
msgid "oVirt"
|
|
882
|
+
msgstr ""
|
|
883
|
+
|
|
884
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:13
|
|
885
|
+
msgid "Hardware profile to use"
|
|
886
|
+
msgstr ""
|
|
887
|
+
|
|
888
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:14
|
|
889
|
+
msgid "Integer value, number of cores"
|
|
890
|
+
msgstr ""
|
|
891
|
+
|
|
892
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:15
|
|
893
|
+
msgid "Amount of memory, integer value in bytes"
|
|
894
|
+
msgstr ""
|
|
895
|
+
|
|
896
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:21
|
|
897
|
+
msgid "Eg. eth0"
|
|
898
|
+
msgstr ""
|
|
899
|
+
|
|
900
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:22
|
|
901
|
+
msgid "Select one of available networks for a cluster"
|
|
902
|
+
msgstr ""
|
|
903
|
+
|
|
904
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:27
|
|
905
|
+
msgid "Volume size in GB, integer value"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
908
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:28
|
|
909
|
+
msgid "Select one of available storage domains"
|
|
910
|
+
msgstr ""
|
|
911
|
+
|
|
912
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:29
|
|
913
|
+
msgid "Boolean, only one volume can be bootable"
|
|
914
|
+
msgstr ""
|
|
915
|
+
|
|
916
|
+
#: ../lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb:6
|
|
917
|
+
msgid "Rackspace"
|
|
918
|
+
msgstr ""
|
|
919
|
+
|
|
920
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:15
|
|
921
|
+
msgid "VMWare"
|
|
922
|
+
msgstr ""
|
|
923
|
+
|
|
924
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:21
|
|
925
|
+
msgid "Cpu count"
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
928
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:22
|
|
929
|
+
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
930
|
+
msgstr ""
|
|
931
|
+
|
|
932
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:23
|
|
933
|
+
msgid "Integer number, amount of memory in MB"
|
|
934
|
+
msgstr ""
|
|
935
|
+
|
|
936
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:24
|
|
937
|
+
msgid "Cluster id from VMware"
|
|
938
|
+
msgstr ""
|
|
939
|
+
|
|
940
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:25
|
|
941
|
+
msgid "Path to folder"
|
|
942
|
+
msgstr ""
|
|
943
|
+
|
|
944
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:26
|
|
945
|
+
msgid "Guest OS id form VMware"
|
|
946
|
+
msgstr ""
|
|
947
|
+
|
|
948
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:27
|
|
949
|
+
#, fuzzy
|
|
950
|
+
msgid "Id of the controller from VMware"
|
|
951
|
+
msgstr "Id"
|
|
952
|
+
|
|
953
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:28
|
|
954
|
+
msgid "Hardware version id from VMware"
|
|
955
|
+
msgstr ""
|
|
956
|
+
|
|
957
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:29
|
|
958
|
+
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
959
|
+
msgstr ""
|
|
960
|
+
|
|
961
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:35
|
|
962
|
+
#, fuzzy
|
|
963
|
+
msgid "Network id from VMware"
|
|
964
|
+
msgstr "Network"
|
|
965
|
+
|
|
966
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:41
|
|
967
|
+
msgid "Datastore id from VMware"
|
|
968
|
+
msgstr ""
|
|
969
|
+
|
|
970
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:42
|
|
971
|
+
msgid "Integer number, volume size in GB"
|
|
972
|
+
msgstr ""
|
|
973
|
+
|
|
974
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:53
|
|
975
|
+
#, fuzzy
|
|
976
|
+
msgid "Type of the network adapter, for example one of:"
|
|
977
|
+
msgstr "Type"
|
|
978
|
+
|
|
979
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:55
|
|
980
|
+
msgid "See documentation center for your version of vSphere to find more details about available adapter types:"
|
|
833
981
|
msgstr ""
|
|
834
982
|
|
|
835
983
|
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
@@ -996,7 +1144,7 @@ msgstr ""
|
|
|
996
1144
|
msgid "Host"
|
|
997
1145
|
msgstr "Host"
|
|
998
1146
|
|
|
999
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
|
1147
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:188
|
|
1000
1148
|
msgid "Fact"
|
|
1001
1149
|
msgstr "Fact"
|
|
1002
1150
|
|
|
@@ -1013,354 +1161,334 @@ msgid "Unlimited?"
|
|
|
1013
1161
|
msgstr ""
|
|
1014
1162
|
|
|
1015
1163
|
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
1016
|
-
msgid "
|
|
1164
|
+
msgid "Override?"
|
|
1017
1165
|
msgstr ""
|
|
1018
1166
|
|
|
1019
1167
|
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
1168
|
+
msgid "Role"
|
|
1169
|
+
msgstr ""
|
|
1170
|
+
|
|
1171
|
+
#: ../lib/hammer_cli_foreman/filter.rb:15
|
|
1020
1172
|
msgid "Permissions"
|
|
1021
1173
|
msgstr ""
|
|
1022
1174
|
|
|
1023
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1175
|
+
#: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/filter.rb:79 ../lib/hammer_cli_foreman/role.rb:42
|
|
1024
1176
|
msgid "(Miscellaneous)"
|
|
1025
1177
|
msgstr ""
|
|
1026
1178
|
|
|
1027
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1179
|
+
#: ../lib/hammer_cli_foreman/filter.rb:20 ../lib/hammer_cli_foreman/filter.rb:36 ../lib/hammer_cli_foreman/role.rb:43
|
|
1028
1180
|
msgid "none"
|
|
1029
1181
|
msgstr ""
|
|
1030
1182
|
|
|
1031
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1183
|
+
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1032
1184
|
msgid "Permission filter for [%<resource_type>s] created"
|
|
1033
1185
|
msgstr ""
|
|
1034
1186
|
|
|
1035
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1187
|
+
#: ../lib/hammer_cli_foreman/filter.rb:46
|
|
1036
1188
|
msgid "Could not create the permission filter"
|
|
1037
1189
|
msgstr ""
|
|
1038
1190
|
|
|
1039
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1191
|
+
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1040
1192
|
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1041
1193
|
msgstr ""
|
|
1042
1194
|
|
|
1043
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1195
|
+
#: ../lib/hammer_cli_foreman/filter.rb:54
|
|
1044
1196
|
msgid "Could not update the permission filter"
|
|
1045
1197
|
msgstr ""
|
|
1046
1198
|
|
|
1047
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1199
|
+
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1048
1200
|
msgid "Permission filter deleted"
|
|
1049
1201
|
msgstr ""
|
|
1050
1202
|
|
|
1051
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1203
|
+
#: ../lib/hammer_cli_foreman/filter.rb:62
|
|
1052
1204
|
msgid "Could not delete the permission filter"
|
|
1053
1205
|
msgstr ""
|
|
1054
1206
|
|
|
1055
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1207
|
+
#: ../lib/hammer_cli_foreman/filter.rb:75 ../lib/hammer_cli_foreman/report.rb:62
|
|
1056
1208
|
msgid "Resource"
|
|
1057
1209
|
msgstr ""
|
|
1058
1210
|
|
|
1059
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1060
|
-
msgid "Login of the owner"
|
|
1061
|
-
msgstr ""
|
|
1062
|
-
|
|
1063
|
-
#: ../lib/hammer_cli_foreman/host.rb:17
|
|
1064
|
-
msgid "ID of the owner"
|
|
1065
|
-
msgstr ""
|
|
1066
|
-
|
|
1067
|
-
#: ../lib/hammer_cli_foreman/host.rb:44
|
|
1068
|
-
msgid "Host parameters."
|
|
1069
|
-
msgstr ""
|
|
1070
|
-
|
|
1071
|
-
#: ../lib/hammer_cli_foreman/host.rb:46
|
|
1072
|
-
msgid "Compute resource attributes."
|
|
1073
|
-
msgstr ""
|
|
1074
|
-
|
|
1075
|
-
#: ../lib/hammer_cli_foreman/host.rb:48
|
|
1076
|
-
msgid "Volume parameters"
|
|
1077
|
-
msgstr ""
|
|
1078
|
-
|
|
1079
|
-
#: ../lib/hammer_cli_foreman/host.rb:50
|
|
1080
|
-
msgid "Interface parameters."
|
|
1081
|
-
msgstr ""
|
|
1082
|
-
|
|
1083
|
-
#: ../lib/hammer_cli_foreman/host.rb:64
|
|
1084
|
-
msgid "Enter the root password for the host:"
|
|
1085
|
-
msgstr ""
|
|
1086
|
-
|
|
1087
|
-
#: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1211
|
+
#: ../lib/hammer_cli_foreman/host.rb:32 ../lib/hammer_cli_foreman/host.rb:103 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
|
|
1088
1212
|
msgid "Operating System"
|
|
1089
1213
|
msgstr ""
|
|
1090
1214
|
|
|
1091
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1215
|
+
#: ../lib/hammer_cli_foreman/host.rb:33 ../lib/hammer_cli_foreman/host.rb:67
|
|
1092
1216
|
msgid "Host Group"
|
|
1093
1217
|
msgstr "Host Group"
|
|
1094
1218
|
|
|
1095
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1219
|
+
#: ../lib/hammer_cli_foreman/host.rb:34 ../lib/hammer_cli_foreman/host.rb:80
|
|
1096
1220
|
msgid "IP"
|
|
1097
1221
|
msgstr "IP"
|
|
1098
1222
|
|
|
1099
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1223
|
+
#: ../lib/hammer_cli_foreman/host.rb:35 ../lib/hammer_cli_foreman/host.rb:81
|
|
1100
1224
|
msgid "MAC"
|
|
1101
1225
|
msgstr "MAC"
|
|
1102
1226
|
|
|
1103
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1227
|
+
#: ../lib/hammer_cli_foreman/host.rb:45
|
|
1104
1228
|
msgid "Bare Metal"
|
|
1105
1229
|
msgstr ""
|
|
1106
1230
|
|
|
1107
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1231
|
+
#: ../lib/hammer_cli_foreman/host.rb:63 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
1232
|
+
msgid "UUID"
|
|
1233
|
+
msgstr ""
|
|
1234
|
+
|
|
1235
|
+
#: ../lib/hammer_cli_foreman/host.rb:65
|
|
1108
1236
|
msgid "Organization"
|
|
1109
1237
|
msgstr "Organisation"
|
|
1110
1238
|
|
|
1111
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1239
|
+
#: ../lib/hammer_cli_foreman/host.rb:66
|
|
1112
1240
|
msgid "Location"
|
|
1113
1241
|
msgstr ""
|
|
1114
1242
|
|
|
1115
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1243
|
+
#: ../lib/hammer_cli_foreman/host.rb:68
|
|
1116
1244
|
msgid "Compute Resource"
|
|
1117
1245
|
msgstr ""
|
|
1118
1246
|
|
|
1119
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1247
|
+
#: ../lib/hammer_cli_foreman/host.rb:69
|
|
1120
1248
|
msgid "Compute Profile"
|
|
1121
1249
|
msgstr ""
|
|
1122
1250
|
|
|
1123
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1251
|
+
#: ../lib/hammer_cli_foreman/host.rb:70 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1124
1252
|
msgid "Environment"
|
|
1125
1253
|
msgstr ""
|
|
1126
1254
|
|
|
1127
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1255
|
+
#: ../lib/hammer_cli_foreman/host.rb:71
|
|
1128
1256
|
msgid "Puppet CA Id"
|
|
1129
1257
|
msgstr ""
|
|
1130
1258
|
|
|
1131
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1259
|
+
#: ../lib/hammer_cli_foreman/host.rb:72
|
|
1132
1260
|
msgid "Puppet Master Id"
|
|
1133
1261
|
msgstr ""
|
|
1134
1262
|
|
|
1135
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1263
|
+
#: ../lib/hammer_cli_foreman/host.rb:73
|
|
1136
1264
|
msgid "Cert name"
|
|
1137
1265
|
msgstr ""
|
|
1138
1266
|
|
|
1139
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1267
|
+
#: ../lib/hammer_cli_foreman/host.rb:74 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1140
1268
|
msgid "Managed"
|
|
1141
1269
|
msgstr ""
|
|
1142
1270
|
|
|
1143
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1271
|
+
#: ../lib/hammer_cli_foreman/host.rb:76
|
|
1144
1272
|
msgid "Installed at"
|
|
1145
1273
|
msgstr ""
|
|
1146
1274
|
|
|
1147
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1275
|
+
#: ../lib/hammer_cli_foreman/host.rb:77 ../lib/hammer_cli_foreman/report.rb:12
|
|
1148
1276
|
msgid "Last report"
|
|
1149
1277
|
msgstr "Last report"
|
|
1150
1278
|
|
|
1151
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1279
|
+
#: ../lib/hammer_cli_foreman/host.rb:79 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1152
1280
|
msgid "Network"
|
|
1153
1281
|
msgstr "Network"
|
|
1154
1282
|
|
|
1155
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1283
|
+
#: ../lib/hammer_cli_foreman/host.rb:82 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1156
1284
|
msgid "Subnet"
|
|
1157
1285
|
msgstr "Subnet"
|
|
1158
1286
|
|
|
1159
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1287
|
+
#: ../lib/hammer_cli_foreman/host.rb:83 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1160
1288
|
msgid "Domain"
|
|
1161
1289
|
msgstr "Domain"
|
|
1162
1290
|
|
|
1163
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1291
|
+
#: ../lib/hammer_cli_foreman/host.rb:84
|
|
1164
1292
|
msgid "Service provider"
|
|
1165
1293
|
msgstr ""
|
|
1166
1294
|
|
|
1167
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1295
|
+
#: ../lib/hammer_cli_foreman/host.rb:85
|
|
1168
1296
|
msgid "SP Name"
|
|
1169
1297
|
msgstr ""
|
|
1170
1298
|
|
|
1171
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1299
|
+
#: ../lib/hammer_cli_foreman/host.rb:86
|
|
1172
1300
|
msgid "SP IP"
|
|
1173
1301
|
msgstr ""
|
|
1174
1302
|
|
|
1175
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1303
|
+
#: ../lib/hammer_cli_foreman/host.rb:87
|
|
1176
1304
|
msgid "SP MAC"
|
|
1177
1305
|
msgstr ""
|
|
1178
1306
|
|
|
1179
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1307
|
+
#: ../lib/hammer_cli_foreman/host.rb:88
|
|
1180
1308
|
msgid "SP Subnet"
|
|
1181
1309
|
msgstr ""
|
|
1182
1310
|
|
|
1183
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1311
|
+
#: ../lib/hammer_cli_foreman/host.rb:92
|
|
1184
1312
|
msgid "Network interfaces"
|
|
1185
1313
|
msgstr ""
|
|
1186
1314
|
|
|
1187
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1315
|
+
#: ../lib/hammer_cli_foreman/host.rb:94 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1188
1316
|
msgid "Identifier"
|
|
1189
1317
|
msgstr "Identifier"
|
|
1190
1318
|
|
|
1191
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1319
|
+
#: ../lib/hammer_cli_foreman/host.rb:95 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:60 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:57 ../lib/hammer_cli_foreman/template.rb:27
|
|
1192
1320
|
msgid "Type"
|
|
1193
1321
|
msgstr "Type"
|
|
1194
1322
|
|
|
1195
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1323
|
+
#: ../lib/hammer_cli_foreman/host.rb:96 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1196
1324
|
msgid "MAC address"
|
|
1197
1325
|
msgstr "MAC address"
|
|
1198
1326
|
|
|
1199
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1327
|
+
#: ../lib/hammer_cli_foreman/host.rb:97 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1200
1328
|
msgid "IP address"
|
|
1201
1329
|
msgstr "IP address"
|
|
1202
1330
|
|
|
1203
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1331
|
+
#: ../lib/hammer_cli_foreman/host.rb:98
|
|
1204
1332
|
msgid "FQDN"
|
|
1205
1333
|
msgstr ""
|
|
1206
1334
|
|
|
1207
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1335
|
+
#: ../lib/hammer_cli_foreman/host.rb:101
|
|
1208
1336
|
msgid "Operating system"
|
|
1209
1337
|
msgstr ""
|
|
1210
1338
|
|
|
1211
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1339
|
+
#: ../lib/hammer_cli_foreman/host.rb:102 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1212
1340
|
msgid "Architecture"
|
|
1213
1341
|
msgstr ""
|
|
1214
1342
|
|
|
1215
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1343
|
+
#: ../lib/hammer_cli_foreman/host.rb:106
|
|
1216
1344
|
msgid "Build"
|
|
1217
1345
|
msgstr ""
|
|
1218
1346
|
|
|
1219
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1347
|
+
#: ../lib/hammer_cli_foreman/host.rb:107 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1220
1348
|
msgid "Medium"
|
|
1221
1349
|
msgstr ""
|
|
1222
1350
|
|
|
1223
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1351
|
+
#: ../lib/hammer_cli_foreman/host.rb:108 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1224
1352
|
msgid "Partition Table"
|
|
1225
1353
|
msgstr ""
|
|
1226
1354
|
|
|
1227
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1355
|
+
#: ../lib/hammer_cli_foreman/host.rb:109
|
|
1228
1356
|
msgid "Custom partition table"
|
|
1229
1357
|
msgstr ""
|
|
1230
1358
|
|
|
1231
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1359
|
+
#: ../lib/hammer_cli_foreman/host.rb:112
|
|
1232
1360
|
msgid "Image"
|
|
1233
1361
|
msgstr ""
|
|
1234
1362
|
|
|
1235
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1363
|
+
#: ../lib/hammer_cli_foreman/host.rb:113
|
|
1236
1364
|
msgid "Image file"
|
|
1237
1365
|
msgstr ""
|
|
1238
1366
|
|
|
1239
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1367
|
+
#: ../lib/hammer_cli_foreman/host.rb:114
|
|
1240
1368
|
msgid "Use image"
|
|
1241
1369
|
msgstr ""
|
|
1242
1370
|
|
|
1243
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1371
|
+
#: ../lib/hammer_cli_foreman/host.rb:120
|
|
1244
1372
|
msgid "Additional info"
|
|
1245
1373
|
msgstr ""
|
|
1246
1374
|
|
|
1247
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1375
|
+
#: ../lib/hammer_cli_foreman/host.rb:121
|
|
1248
1376
|
msgid "Owner Id"
|
|
1249
1377
|
msgstr ""
|
|
1250
1378
|
|
|
1251
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1379
|
+
#: ../lib/hammer_cli_foreman/host.rb:122
|
|
1252
1380
|
msgid "Owner Type"
|
|
1253
1381
|
msgstr ""
|
|
1254
1382
|
|
|
1255
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1383
|
+
#: ../lib/hammer_cli_foreman/host.rb:123
|
|
1256
1384
|
msgid "Enabled"
|
|
1257
1385
|
msgstr "Enabled"
|
|
1258
1386
|
|
|
1259
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1387
|
+
#: ../lib/hammer_cli_foreman/host.rb:124 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1260
1388
|
msgid "Model"
|
|
1261
1389
|
msgstr "Model"
|
|
1262
1390
|
|
|
1263
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1391
|
+
#: ../lib/hammer_cli_foreman/host.rb:125
|
|
1264
1392
|
msgid "Comment"
|
|
1265
1393
|
msgstr ""
|
|
1266
1394
|
|
|
1267
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1395
|
+
#: ../lib/hammer_cli_foreman/host.rb:138
|
|
1268
1396
|
msgid "Status"
|
|
1269
1397
|
msgstr ""
|
|
1270
1398
|
|
|
1271
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1399
|
+
#: ../lib/hammer_cli_foreman/host.rb:139
|
|
1272
1400
|
msgid "Power"
|
|
1273
1401
|
msgstr ""
|
|
1274
1402
|
|
|
1275
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1403
|
+
#: ../lib/hammer_cli_foreman/host.rb:175
|
|
1276
1404
|
msgid "Puppet run triggered"
|
|
1277
1405
|
msgstr ""
|
|
1278
1406
|
|
|
1279
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1407
|
+
#: ../lib/hammer_cli_foreman/host.rb:228
|
|
1280
1408
|
msgid "Host created"
|
|
1281
1409
|
msgstr "Host created"
|
|
1282
1410
|
|
|
1283
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1411
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
|
1284
1412
|
msgid "Could not create the host"
|
|
1285
1413
|
msgstr "Could not create the host"
|
|
1286
1414
|
|
|
1287
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1415
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1288
1416
|
msgid "Host updated"
|
|
1289
1417
|
msgstr ""
|
|
1290
1418
|
|
|
1291
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1419
|
+
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1292
1420
|
msgid "Could not update the host"
|
|
1293
1421
|
msgstr ""
|
|
1294
1422
|
|
|
1295
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1423
|
+
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1296
1424
|
msgid "Host deleted"
|
|
1297
1425
|
msgstr "Host deleted"
|
|
1298
1426
|
|
|
1299
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1427
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1300
1428
|
msgid "Could not delete the host"
|
|
1301
1429
|
msgstr "Could not delete the host"
|
|
1302
1430
|
|
|
1303
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1431
|
+
#: ../lib/hammer_cli_foreman/host.rb:264
|
|
1304
1432
|
msgid "Create or update parameter for a host."
|
|
1305
1433
|
msgstr ""
|
|
1306
1434
|
|
|
1307
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1435
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
|
1308
1436
|
msgid "Host parameter updated"
|
|
1309
1437
|
msgstr ""
|
|
1310
1438
|
|
|
1311
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1439
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1312
1440
|
msgid "New host parameter created"
|
|
1313
1441
|
msgstr ""
|
|
1314
1442
|
|
|
1315
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1443
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1316
1444
|
msgid "Could not set host parameter"
|
|
1317
1445
|
msgstr ""
|
|
1318
1446
|
|
|
1319
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1447
|
+
#: ../lib/hammer_cli_foreman/host.rb:280
|
|
1320
1448
|
msgid "Delete parameter for a host."
|
|
1321
1449
|
msgstr ""
|
|
1322
1450
|
|
|
1323
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1451
|
+
#: ../lib/hammer_cli_foreman/host.rb:282
|
|
1324
1452
|
msgid "Host parameter deleted"
|
|
1325
1453
|
msgstr ""
|
|
1326
1454
|
|
|
1327
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1455
|
+
#: ../lib/hammer_cli_foreman/host.rb:297
|
|
1328
1456
|
msgid "Power a host on"
|
|
1329
1457
|
msgstr ""
|
|
1330
1458
|
|
|
1331
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1459
|
+
#: ../lib/hammer_cli_foreman/host.rb:298
|
|
1332
1460
|
msgid "The host is starting."
|
|
1333
1461
|
msgstr ""
|
|
1334
1462
|
|
|
1335
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1463
|
+
#: ../lib/hammer_cli_foreman/host.rb:315
|
|
1336
1464
|
msgid "Force turning off a host"
|
|
1337
1465
|
msgstr ""
|
|
1338
1466
|
|
|
1339
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1467
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
|
1340
1468
|
msgid "Power a host off"
|
|
1341
1469
|
msgstr ""
|
|
1342
1470
|
|
|
1343
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1471
|
+
#: ../lib/hammer_cli_foreman/host.rb:332
|
|
1344
1472
|
msgid "Power off forced."
|
|
1345
1473
|
msgstr ""
|
|
1346
1474
|
|
|
1347
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1475
|
+
#: ../lib/hammer_cli_foreman/host.rb:334
|
|
1348
1476
|
msgid "Powering the host off."
|
|
1349
1477
|
msgstr ""
|
|
1350
1478
|
|
|
1351
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1479
|
+
#: ../lib/hammer_cli_foreman/host.rb:351
|
|
1352
1480
|
msgid "Reboot a host"
|
|
1353
1481
|
msgstr "Reboot a host"
|
|
1354
1482
|
|
|
1355
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1483
|
+
#: ../lib/hammer_cli_foreman/host.rb:352
|
|
1356
1484
|
msgid "Host reboot started."
|
|
1357
1485
|
msgstr ""
|
|
1358
1486
|
|
|
1359
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1487
|
+
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1360
1488
|
msgid "Rebuild orchestration related configurations for host"
|
|
1361
1489
|
msgstr ""
|
|
1362
1490
|
|
|
1363
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1491
|
+
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1364
1492
|
msgid "Configuration successfully rebuilt."
|
|
1365
1493
|
msgstr ""
|
|
1366
1494
|
|
|
@@ -1456,6 +1584,70 @@ msgstr ""
|
|
|
1456
1584
|
msgid "Hostgroup parameter deleted"
|
|
1457
1585
|
msgstr ""
|
|
1458
1586
|
|
|
1587
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:6
|
|
1588
|
+
msgid "Available keys for %{option}"
|
|
1589
|
+
msgstr ""
|
|
1590
|
+
|
|
1591
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:16
|
|
1592
|
+
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1593
|
+
msgstr ""
|
|
1594
|
+
|
|
1595
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:20 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:26 ../lib/hammer_cli_foreman/hosts/common_update_help.rb:33
|
|
1596
|
+
msgid "For %{condition}"
|
|
1597
|
+
msgstr ""
|
|
1598
|
+
|
|
1599
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:22
|
|
1600
|
+
msgid "VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virtual interfaces."
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1603
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:23
|
|
1604
|
+
#, fuzzy
|
|
1605
|
+
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1606
|
+
msgstr "Identifier"
|
|
1607
|
+
|
|
1608
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:29
|
|
1609
|
+
#, fuzzy
|
|
1610
|
+
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1611
|
+
msgstr "Identifier"
|
|
1612
|
+
|
|
1613
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:35
|
|
1614
|
+
#, fuzzy
|
|
1615
|
+
msgid "always IPMI"
|
|
1616
|
+
msgstr "IP"
|
|
1617
|
+
|
|
1618
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:42
|
|
1619
|
+
#, fuzzy
|
|
1620
|
+
msgid "Provider specific options"
|
|
1621
|
+
msgstr "Provider"
|
|
1622
|
+
|
|
1623
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:6
|
|
1624
|
+
msgid "Login of the owner"
|
|
1625
|
+
msgstr ""
|
|
1626
|
+
|
|
1627
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:8
|
|
1628
|
+
msgid "ID of the owner"
|
|
1629
|
+
msgstr ""
|
|
1630
|
+
|
|
1631
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:35
|
|
1632
|
+
msgid "Host parameters."
|
|
1633
|
+
msgstr ""
|
|
1634
|
+
|
|
1635
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:37
|
|
1636
|
+
msgid "Compute resource attributes."
|
|
1637
|
+
msgstr ""
|
|
1638
|
+
|
|
1639
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:39
|
|
1640
|
+
msgid "Volume parameters"
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1643
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:41
|
|
1644
|
+
msgid "Interface parameters."
|
|
1645
|
+
msgstr ""
|
|
1646
|
+
|
|
1647
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:55
|
|
1648
|
+
msgid "Enter the root password for the host:"
|
|
1649
|
+
msgstr ""
|
|
1650
|
+
|
|
1459
1651
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1460
1652
|
msgid "Architecture name"
|
|
1461
1653
|
msgstr ""
|
|
@@ -1544,7 +1736,7 @@ msgstr ""
|
|
|
1544
1736
|
msgid "Smart class parameter name"
|
|
1545
1737
|
msgstr ""
|
|
1546
1738
|
|
|
1547
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
1739
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
1548
1740
|
msgid "Smart variable name"
|
|
1549
1741
|
msgstr ""
|
|
1550
1742
|
|
|
@@ -2087,55 +2279,63 @@ msgstr ""
|
|
|
2087
2279
|
msgid "User groups"
|
|
2088
2280
|
msgstr ""
|
|
2089
2281
|
|
|
2090
|
-
#: ../lib/hammer_cli_foreman/references.rb:42
|
|
2282
|
+
#: ../lib/hammer_cli_foreman/references.rb:35 ../lib/hammer_cli_foreman/references.rb:42
|
|
2283
|
+
msgid "Usergroup"
|
|
2284
|
+
msgstr ""
|
|
2285
|
+
|
|
2286
|
+
#: ../lib/hammer_cli_foreman/references.rb:37 ../lib/hammer_cli_foreman/references.rb:44 ../lib/hammer_cli_foreman/references.rb:142
|
|
2287
|
+
msgid "Roles"
|
|
2288
|
+
msgstr ""
|
|
2289
|
+
|
|
2290
|
+
#: ../lib/hammer_cli_foreman/references.rb:41
|
|
2291
|
+
msgid "Inherited User groups"
|
|
2292
|
+
msgstr ""
|
|
2293
|
+
|
|
2294
|
+
#: ../lib/hammer_cli_foreman/references.rb:53
|
|
2091
2295
|
msgid "Smart proxies"
|
|
2092
2296
|
msgstr ""
|
|
2093
2297
|
|
|
2094
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2298
|
+
#: ../lib/hammer_cli_foreman/references.rb:61
|
|
2095
2299
|
msgid "Compute resources"
|
|
2096
2300
|
msgstr ""
|
|
2097
2301
|
|
|
2098
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2302
|
+
#: ../lib/hammer_cli_foreman/references.rb:69
|
|
2099
2303
|
msgid "Installation media"
|
|
2100
2304
|
msgstr "Installation media"
|
|
2101
2305
|
|
|
2102
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2306
|
+
#: ../lib/hammer_cli_foreman/references.rb:77
|
|
2103
2307
|
msgid "Templates"
|
|
2104
2308
|
msgstr ""
|
|
2105
2309
|
|
|
2106
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2310
|
+
#: ../lib/hammer_cli_foreman/references.rb:85
|
|
2107
2311
|
msgid "Domains"
|
|
2108
2312
|
msgstr ""
|
|
2109
2313
|
|
|
2110
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2314
|
+
#: ../lib/hammer_cli_foreman/references.rb:93
|
|
2111
2315
|
msgid "Environments"
|
|
2112
2316
|
msgstr ""
|
|
2113
2317
|
|
|
2114
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2318
|
+
#: ../lib/hammer_cli_foreman/references.rb:101
|
|
2115
2319
|
msgid "Hostgroups"
|
|
2116
2320
|
msgstr ""
|
|
2117
2321
|
|
|
2118
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2322
|
+
#: ../lib/hammer_cli_foreman/references.rb:109
|
|
2119
2323
|
msgid "Subnets"
|
|
2120
2324
|
msgstr ""
|
|
2121
2325
|
|
|
2122
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2326
|
+
#: ../lib/hammer_cli_foreman/references.rb:118
|
|
2123
2327
|
msgid "Parameters"
|
|
2124
2328
|
msgstr ""
|
|
2125
2329
|
|
|
2126
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2330
|
+
#: ../lib/hammer_cli_foreman/references.rb:126
|
|
2127
2331
|
msgid "Puppetclasses"
|
|
2128
2332
|
msgstr ""
|
|
2129
2333
|
|
|
2130
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2334
|
+
#: ../lib/hammer_cli_foreman/references.rb:134
|
|
2131
2335
|
msgid "Operating systems"
|
|
2132
2336
|
msgstr ""
|
|
2133
2337
|
|
|
2134
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2135
|
-
msgid "Roles"
|
|
2136
|
-
msgstr ""
|
|
2137
|
-
|
|
2138
|
-
#: ../lib/hammer_cli_foreman/references.rb:139
|
|
2338
|
+
#: ../lib/hammer_cli_foreman/references.rb:150
|
|
2139
2339
|
msgid "External user groups"
|
|
2140
2340
|
msgstr ""
|
|
2141
2341
|
|
|
@@ -2235,43 +2435,35 @@ msgstr ""
|
|
|
2235
2435
|
msgid "The server does not support such operation."
|
|
2236
2436
|
msgstr ""
|
|
2237
2437
|
|
|
2238
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2438
|
+
#: ../lib/hammer_cli_foreman/role.rb:13
|
|
2239
2439
|
msgid "Builtin"
|
|
2240
2440
|
msgstr ""
|
|
2241
2441
|
|
|
2242
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2243
|
-
msgid "Yes"
|
|
2244
|
-
msgstr ""
|
|
2245
|
-
|
|
2246
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2247
|
-
msgid "No"
|
|
2248
|
-
msgstr ""
|
|
2249
|
-
|
|
2250
|
-
#: ../lib/hammer_cli_foreman/role.rb:36
|
|
2442
|
+
#: ../lib/hammer_cli_foreman/role.rb:32
|
|
2251
2443
|
msgid "User role id"
|
|
2252
2444
|
msgstr ""
|
|
2253
2445
|
|
|
2254
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2446
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
|
2255
2447
|
msgid "User role [%<name>s] created"
|
|
2256
2448
|
msgstr ""
|
|
2257
2449
|
|
|
2258
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2450
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
|
2259
2451
|
msgid "Could not create the user role"
|
|
2260
2452
|
msgstr ""
|
|
2261
2453
|
|
|
2262
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2454
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
|
2263
2455
|
msgid "User role [%<name>s] updated"
|
|
2264
2456
|
msgstr ""
|
|
2265
2457
|
|
|
2266
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2458
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
|
2267
2459
|
msgid "Could not update the user role"
|
|
2268
2460
|
msgstr ""
|
|
2269
2461
|
|
|
2270
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2462
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
|
2271
2463
|
msgid "User role [%<name>s] deleted"
|
|
2272
2464
|
msgstr ""
|
|
2273
2465
|
|
|
2274
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2466
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
|
2275
2467
|
msgid "Could not delete the user roles"
|
|
2276
2468
|
msgstr ""
|
|
2277
2469
|
|
|
@@ -2303,7 +2495,7 @@ msgstr ""
|
|
|
2303
2495
|
msgid "Hidden Value?"
|
|
2304
2496
|
msgstr ""
|
|
2305
2497
|
|
|
2306
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2498
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:79
|
|
2307
2499
|
msgid "Use puppet default"
|
|
2308
2500
|
msgstr ""
|
|
2309
2501
|
|
|
@@ -2339,11 +2531,11 @@ msgstr ""
|
|
|
2339
2531
|
msgid "Order"
|
|
2340
2532
|
msgstr ""
|
|
2341
2533
|
|
|
2342
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2534
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2343
2535
|
msgid "Values"
|
|
2344
2536
|
msgstr ""
|
|
2345
2537
|
|
|
2346
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2538
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2347
2539
|
msgid "Match"
|
|
2348
2540
|
msgstr ""
|
|
2349
2541
|
|
|
@@ -2367,28 +2559,27 @@ msgstr ""
|
|
|
2367
2559
|
msgid "Type of the parameter."
|
|
2368
2560
|
msgstr ""
|
|
2369
2561
|
|
|
2370
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2562
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:92 ../lib/hammer_cli_foreman/smart_variable.rb:106
|
|
2371
2563
|
msgid "Type of the validator."
|
|
2372
2564
|
msgstr ""
|
|
2373
2565
|
|
|
2374
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2566
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:125
|
|
2375
2567
|
msgid "Override value created"
|
|
2376
2568
|
msgstr ""
|
|
2377
2569
|
|
|
2378
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2379
|
-
#, fuzzy
|
|
2570
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2380
2571
|
msgid "Could not create the override value"
|
|
2381
|
-
msgstr "
|
|
2572
|
+
msgstr ""
|
|
2382
2573
|
|
|
2383
2574
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2384
2575
|
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2385
2576
|
msgstr ""
|
|
2386
2577
|
|
|
2387
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2578
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:138
|
|
2388
2579
|
msgid "Override value deleted"
|
|
2389
2580
|
msgstr ""
|
|
2390
2581
|
|
|
2391
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2582
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2392
2583
|
msgid "Could not delete the override value"
|
|
2393
2584
|
msgstr ""
|
|
2394
2585
|
|
|
@@ -2448,35 +2639,35 @@ msgstr ""
|
|
|
2448
2639
|
msgid "Variable"
|
|
2449
2640
|
msgstr ""
|
|
2450
2641
|
|
|
2451
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2642
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2452
2643
|
msgid "Use --variable instead"
|
|
2453
2644
|
msgstr ""
|
|
2454
2645
|
|
|
2455
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2646
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2456
2647
|
msgid "Smart variable [%{variable}] created"
|
|
2457
2648
|
msgstr ""
|
|
2458
2649
|
|
|
2459
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2650
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2460
2651
|
msgid "Could not create the smart variable"
|
|
2461
2652
|
msgstr ""
|
|
2462
2653
|
|
|
2463
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2654
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
|
|
2464
2655
|
msgid "Type of the variable."
|
|
2465
2656
|
msgstr ""
|
|
2466
2657
|
|
|
2467
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2658
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2468
2659
|
msgid "Smart variable [%{variable}] updated"
|
|
2469
2660
|
msgstr ""
|
|
2470
2661
|
|
|
2471
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2662
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2472
2663
|
msgid "Could not update the smart variable"
|
|
2473
2664
|
msgstr ""
|
|
2474
2665
|
|
|
2475
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2666
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:114
|
|
2476
2667
|
msgid "Smart variable [%{variable}] deleted"
|
|
2477
2668
|
msgstr ""
|
|
2478
2669
|
|
|
2479
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2670
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2480
2671
|
msgid "Could not delete the smart variable"
|
|
2481
2672
|
msgstr ""
|
|
2482
2673
|
|
|
@@ -2636,39 +2827,39 @@ msgstr ""
|
|
|
2636
2827
|
msgid "Last login"
|
|
2637
2828
|
msgstr ""
|
|
2638
2829
|
|
|
2639
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2830
|
+
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2640
2831
|
msgid "Default organization"
|
|
2641
2832
|
msgstr "Default organisation"
|
|
2642
2833
|
|
|
2643
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2834
|
+
#: ../lib/hammer_cli_foreman/user.rb:36
|
|
2644
2835
|
msgid "Default location"
|
|
2645
2836
|
msgstr ""
|
|
2646
2837
|
|
|
2647
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2838
|
+
#: ../lib/hammer_cli_foreman/user.rb:44 ../lib/hammer_cli_foreman/user.rb:45
|
|
2648
2839
|
msgid "default"
|
|
2649
2840
|
msgstr ""
|
|
2650
2841
|
|
|
2651
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2842
|
+
#: ../lib/hammer_cli_foreman/user.rb:56
|
|
2652
2843
|
msgid "User [%{login}] created"
|
|
2653
2844
|
msgstr ""
|
|
2654
2845
|
|
|
2655
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2846
|
+
#: ../lib/hammer_cli_foreman/user.rb:57
|
|
2656
2847
|
msgid "Could not create the user"
|
|
2657
2848
|
msgstr ""
|
|
2658
2849
|
|
|
2659
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2850
|
+
#: ../lib/hammer_cli_foreman/user.rb:64
|
|
2660
2851
|
msgid "User [%{login}] updated"
|
|
2661
2852
|
msgstr ""
|
|
2662
2853
|
|
|
2663
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2854
|
+
#: ../lib/hammer_cli_foreman/user.rb:65
|
|
2664
2855
|
msgid "Could not update the user"
|
|
2665
2856
|
msgstr ""
|
|
2666
2857
|
|
|
2667
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2858
|
+
#: ../lib/hammer_cli_foreman/user.rb:72
|
|
2668
2859
|
msgid "User [%{login}] deleted"
|
|
2669
2860
|
msgstr ""
|
|
2670
2861
|
|
|
2671
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2862
|
+
#: ../lib/hammer_cli_foreman/user.rb:73
|
|
2672
2863
|
msgid "Could not delete the user"
|
|
2673
2864
|
msgstr ""
|
|
2674
2865
|
|