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
|
Binary file
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
# Valeria S Silva <valeriassilva@live.com>, 2015
|
|
10
10
|
msgid ""
|
|
11
11
|
msgstr ""
|
|
12
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
12
|
+
"Project-Id-Version: hammer-cli-foreman 0.8.0\n"
|
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date: 2016-
|
|
15
|
-
"PO-Revision-Date: 2016-
|
|
14
|
+
"POT-Creation-Date: 2016-12-15 22:40+0100\n"
|
|
15
|
+
"PO-Revision-Date: 2016-08-22 15:09+0000\n"
|
|
16
16
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
|
17
17
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
|
18
18
|
"anguage/pt_BR/)\n"
|
|
@@ -22,124 +22,168 @@ msgstr ""
|
|
|
22
22
|
"Language: pt_BR\n"
|
|
23
23
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
24
24
|
|
|
25
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
25
|
+
#: ../lib/hammer_cli_foreman.rb:31
|
|
26
26
|
msgid "Foreman connection login/logout."
|
|
27
27
|
msgstr "A conexão de login/logout do Foreman"
|
|
28
28
|
|
|
29
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
29
|
+
#: ../lib/hammer_cli_foreman.rb:35
|
|
30
30
|
msgid "Manipulate architectures."
|
|
31
31
|
msgstr "Manipular Arquiteturas"
|
|
32
32
|
|
|
33
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
33
|
+
#: ../lib/hammer_cli_foreman.rb:39
|
|
34
34
|
msgid "Manipulate auth sources."
|
|
35
35
|
msgstr "Manipular fontes do auth."
|
|
36
36
|
|
|
37
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
37
|
+
#: ../lib/hammer_cli_foreman.rb:43
|
|
38
38
|
msgid "Manipulate compute resources."
|
|
39
|
-
msgstr "Manipular
|
|
39
|
+
msgstr "Manipular recursos de computação"
|
|
40
40
|
|
|
41
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
41
|
+
#: ../lib/hammer_cli_foreman.rb:47
|
|
42
42
|
msgid "Manipulate domains."
|
|
43
43
|
msgstr "Manipular domínios."
|
|
44
44
|
|
|
45
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
45
|
+
#: ../lib/hammer_cli_foreman.rb:51
|
|
46
46
|
msgid "Manipulate environments."
|
|
47
47
|
msgstr "Manipular ambientes."
|
|
48
48
|
|
|
49
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
49
|
+
#: ../lib/hammer_cli_foreman.rb:55
|
|
50
50
|
msgid "Search facts."
|
|
51
|
-
msgstr "
|
|
51
|
+
msgstr "Pesquisar fatos."
|
|
52
52
|
|
|
53
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
53
|
+
#: ../lib/hammer_cli_foreman.rb:59
|
|
54
54
|
msgid "Manage permission filters."
|
|
55
55
|
msgstr "Gerenciar filtros de permissão."
|
|
56
56
|
|
|
57
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
57
|
+
#: ../lib/hammer_cli_foreman.rb:63
|
|
58
58
|
msgid "Manipulate hosts."
|
|
59
59
|
msgstr "Manipular hosts."
|
|
60
60
|
|
|
61
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
61
|
+
#: ../lib/hammer_cli_foreman.rb:67
|
|
62
62
|
msgid "Manipulate hostgroups."
|
|
63
63
|
msgstr "Manipular hostgroups"
|
|
64
64
|
|
|
65
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
65
|
+
#: ../lib/hammer_cli_foreman.rb:71
|
|
66
66
|
msgid "Manipulate locations."
|
|
67
67
|
msgstr "Manipular locais."
|
|
68
68
|
|
|
69
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
69
|
+
#: ../lib/hammer_cli_foreman.rb:75
|
|
70
70
|
msgid "Manipulate installation media."
|
|
71
|
-
msgstr "Manipular
|
|
71
|
+
msgstr "Manipular mídia de instalação"
|
|
72
72
|
|
|
73
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
73
|
+
#: ../lib/hammer_cli_foreman.rb:79
|
|
74
74
|
msgid "Manipulate hardware models."
|
|
75
75
|
msgstr "Manipular os modelos de hardware."
|
|
76
76
|
|
|
77
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
77
|
+
#: ../lib/hammer_cli_foreman.rb:83
|
|
78
78
|
msgid "Manipulate operating system."
|
|
79
79
|
msgstr "Manipular Sistema Operacional:"
|
|
80
80
|
|
|
81
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
81
|
+
#: ../lib/hammer_cli_foreman.rb:87
|
|
82
82
|
msgid "Manipulate organizations."
|
|
83
83
|
msgstr "Manipular as organizações."
|
|
84
84
|
|
|
85
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
85
|
+
#: ../lib/hammer_cli_foreman.rb:91
|
|
86
86
|
msgid "Manipulate partition tables."
|
|
87
87
|
msgstr "Manipular as tabelas de partição."
|
|
88
88
|
|
|
89
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
89
|
+
#: ../lib/hammer_cli_foreman.rb:95
|
|
90
90
|
msgid "Search puppet modules."
|
|
91
|
-
msgstr "
|
|
91
|
+
msgstr "Pesquisar módulos puppet."
|
|
92
92
|
|
|
93
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
93
|
+
#: ../lib/hammer_cli_foreman.rb:99
|
|
94
94
|
msgid "Browse and read reports."
|
|
95
|
-
msgstr "Navegar e ler relatórios"
|
|
95
|
+
msgstr "Navegar e ler relatórios."
|
|
96
96
|
|
|
97
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
97
|
+
#: ../lib/hammer_cli_foreman.rb:103
|
|
98
98
|
msgid "Manage user roles."
|
|
99
|
-
msgstr "Gerenciar
|
|
99
|
+
msgstr "Gerenciar funções de usuários"
|
|
100
100
|
|
|
101
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
101
|
+
#: ../lib/hammer_cli_foreman.rb:107
|
|
102
102
|
msgid "Manipulate smart class parameters."
|
|
103
|
-
msgstr "Manipular os parâmetros de classe
|
|
103
|
+
msgstr "Manipular os parâmetros de classe inteligentes."
|
|
104
104
|
|
|
105
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
105
|
+
#: ../lib/hammer_cli_foreman.rb:111
|
|
106
106
|
msgid "Manipulate smart variables."
|
|
107
|
-
msgstr "
|
|
107
|
+
msgstr "Manipular variáveis inteligentes."
|
|
108
108
|
|
|
109
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
109
|
+
#: ../lib/hammer_cli_foreman.rb:115
|
|
110
110
|
msgid "Manipulate smart proxies."
|
|
111
|
-
msgstr "Manipular
|
|
111
|
+
msgstr "Manipular proxies inteligentes."
|
|
112
112
|
|
|
113
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
113
|
+
#: ../lib/hammer_cli_foreman.rb:119
|
|
114
114
|
#, fuzzy
|
|
115
115
|
msgid "Manipulate realms."
|
|
116
116
|
msgstr "Manipular domínios."
|
|
117
117
|
|
|
118
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
118
|
+
#: ../lib/hammer_cli_foreman.rb:123
|
|
119
119
|
msgid "Change server settings."
|
|
120
120
|
msgstr "Modifique as configurações do servidor"
|
|
121
121
|
|
|
122
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
122
|
+
#: ../lib/hammer_cli_foreman.rb:127
|
|
123
123
|
msgid "Manipulate subnets."
|
|
124
124
|
msgstr "Manipular subredes."
|
|
125
125
|
|
|
126
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
126
|
+
#: ../lib/hammer_cli_foreman.rb:131
|
|
127
127
|
msgid "Manipulate config templates."
|
|
128
128
|
msgstr "Manipular modelos de config."
|
|
129
129
|
|
|
130
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
130
|
+
#: ../lib/hammer_cli_foreman.rb:135
|
|
131
131
|
msgid "Manipulate users."
|
|
132
132
|
msgstr "Manipular usuários."
|
|
133
133
|
|
|
134
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
134
|
+
#: ../lib/hammer_cli_foreman.rb:139
|
|
135
135
|
msgid "Manage user groups."
|
|
136
136
|
msgstr "Gerenciar grupos de usuário"
|
|
137
137
|
|
|
138
|
-
#: ../lib/hammer_cli_foreman/
|
|
138
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:15
|
|
139
|
+
#, fuzzy
|
|
140
|
+
msgid "Invalid username or password"
|
|
141
|
+
msgstr "usuário"
|
|
142
|
+
|
|
143
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:20
|
|
144
|
+
msgid "You are logged in as '%s'"
|
|
145
|
+
msgstr "Você está autenticado como '%s'"
|
|
146
|
+
|
|
147
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:22 ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:28
|
|
148
|
+
msgid "You are currently not logged in"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
151
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:33
|
|
152
|
+
msgid "[Foreman] Username: "
|
|
153
|
+
msgstr "[Foreman] Nome de usuário: "
|
|
154
|
+
|
|
155
|
+
#: ../lib/hammer_cli_foreman/api/interactive_basic_auth.rb:37
|
|
156
|
+
msgid "[Foreman] Password for %s: "
|
|
157
|
+
msgstr "[Foreman] senha para %s: "
|
|
158
|
+
|
|
159
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:17
|
|
160
|
+
#, fuzzy
|
|
161
|
+
msgid "Can't use session auth due to invalid permissions on session files."
|
|
162
|
+
msgstr "arquivo"
|
|
163
|
+
|
|
164
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:26
|
|
165
|
+
msgid "Session exist, currently logged in as '%s'"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:51
|
|
169
|
+
msgid "Session has expired"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
172
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:78
|
|
173
|
+
#, fuzzy
|
|
174
|
+
msgid "Invalid session file format"
|
|
175
|
+
msgstr "arquivo"
|
|
176
|
+
|
|
177
|
+
#: ../lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb:106
|
|
178
|
+
#, fuzzy
|
|
179
|
+
msgid "Invalid permissions for %{file}: %{mode}, expected %{expected_mode}"
|
|
180
|
+
msgstr "arquivo"
|
|
181
|
+
|
|
182
|
+
#: ../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
|
|
139
183
|
msgid "Id"
|
|
140
184
|
msgstr "Id"
|
|
141
185
|
|
|
142
|
-
#: ../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:
|
|
186
|
+
#: ../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
|
|
143
187
|
msgid "Name"
|
|
144
188
|
msgstr "Nome"
|
|
145
189
|
|
|
@@ -172,196 +216,168 @@ msgid "Associate a hostgroup"
|
|
|
172
216
|
msgstr "Associar um hostgroup"
|
|
173
217
|
|
|
174
218
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:43
|
|
175
|
-
#, fuzzy
|
|
176
219
|
msgid "The hostgroup has been associated"
|
|
177
|
-
msgstr "
|
|
220
|
+
msgstr ""
|
|
178
221
|
|
|
179
222
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:44
|
|
180
|
-
#, fuzzy
|
|
181
223
|
msgid "Could not associate the hostgroup"
|
|
182
|
-
msgstr "
|
|
224
|
+
msgstr ""
|
|
183
225
|
|
|
184
226
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:49
|
|
185
227
|
msgid "Disassociate a hostgroup"
|
|
186
228
|
msgstr "Desassociar um hostgroup"
|
|
187
229
|
|
|
188
230
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:51
|
|
189
|
-
#, fuzzy
|
|
190
231
|
msgid "The hostgroup has been disassociated"
|
|
191
|
-
msgstr "
|
|
232
|
+
msgstr ""
|
|
192
233
|
|
|
193
234
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:52
|
|
194
|
-
#, fuzzy
|
|
195
235
|
msgid "Could not disassociate the hostgroup"
|
|
196
|
-
msgstr "
|
|
236
|
+
msgstr ""
|
|
197
237
|
|
|
198
238
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:61
|
|
199
239
|
msgid "Associate an environment"
|
|
200
240
|
msgstr "Associar um ambiente"
|
|
201
241
|
|
|
202
242
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:63
|
|
203
|
-
#, fuzzy
|
|
204
243
|
msgid "The environment has been associated"
|
|
205
|
-
msgstr "
|
|
244
|
+
msgstr ""
|
|
206
245
|
|
|
207
246
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:64
|
|
208
|
-
#, fuzzy
|
|
209
247
|
msgid "Could not associate the environment"
|
|
210
|
-
msgstr "
|
|
248
|
+
msgstr ""
|
|
211
249
|
|
|
212
250
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:69
|
|
213
251
|
msgid "Disassociate an environment"
|
|
214
252
|
msgstr "Desassociar um ambiente"
|
|
215
253
|
|
|
216
254
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:71
|
|
217
|
-
#, fuzzy
|
|
218
255
|
msgid "The environment has been disassociated"
|
|
219
|
-
msgstr "
|
|
256
|
+
msgstr ""
|
|
220
257
|
|
|
221
258
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:72
|
|
222
|
-
#, fuzzy
|
|
223
259
|
msgid "Could not disassociate the environment"
|
|
224
|
-
msgstr "
|
|
260
|
+
msgstr ""
|
|
225
261
|
|
|
226
262
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:81
|
|
227
263
|
msgid "Associate a domain"
|
|
228
264
|
msgstr "Associar um domínio"
|
|
229
265
|
|
|
230
266
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:83
|
|
231
|
-
#, fuzzy
|
|
232
267
|
msgid "The domain has been associated"
|
|
233
|
-
msgstr "
|
|
268
|
+
msgstr ""
|
|
234
269
|
|
|
235
270
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:84
|
|
236
|
-
#, fuzzy
|
|
237
271
|
msgid "Could not associate the domain"
|
|
238
|
-
msgstr "
|
|
272
|
+
msgstr ""
|
|
239
273
|
|
|
240
274
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:89
|
|
241
275
|
msgid "Disassociate a domain"
|
|
242
276
|
msgstr "Desassociar um domínio"
|
|
243
277
|
|
|
244
278
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:91
|
|
245
|
-
#, fuzzy
|
|
246
279
|
msgid "The domain has been disassociated"
|
|
247
|
-
msgstr "
|
|
280
|
+
msgstr ""
|
|
248
281
|
|
|
249
282
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:92
|
|
250
|
-
#, fuzzy
|
|
251
283
|
msgid "Could not disassociate the domain"
|
|
252
|
-
msgstr "
|
|
284
|
+
msgstr ""
|
|
253
285
|
|
|
254
286
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:101
|
|
255
287
|
msgid "Associate a medium"
|
|
256
288
|
msgstr "Associar um meio"
|
|
257
289
|
|
|
258
290
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:103
|
|
259
|
-
#, fuzzy
|
|
260
291
|
msgid "The medium has been associated"
|
|
261
|
-
msgstr "
|
|
292
|
+
msgstr ""
|
|
262
293
|
|
|
263
294
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:104
|
|
264
|
-
#, fuzzy
|
|
265
295
|
msgid "Could not associate the medium"
|
|
266
|
-
msgstr "
|
|
296
|
+
msgstr ""
|
|
267
297
|
|
|
268
298
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:109
|
|
269
299
|
msgid "Disassociate a medium"
|
|
270
300
|
msgstr "Desassociar um meio"
|
|
271
301
|
|
|
272
302
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:111
|
|
273
|
-
#, fuzzy
|
|
274
303
|
msgid "The medium has been disassociated"
|
|
275
|
-
msgstr "
|
|
304
|
+
msgstr ""
|
|
276
305
|
|
|
277
306
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:112
|
|
278
|
-
#, fuzzy
|
|
279
307
|
msgid "Could not disassociate the medium"
|
|
280
|
-
msgstr "
|
|
308
|
+
msgstr ""
|
|
281
309
|
|
|
282
310
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:121
|
|
283
311
|
msgid "Associate a subnet"
|
|
284
312
|
msgstr "Associar uma subrede"
|
|
285
313
|
|
|
286
314
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:123
|
|
287
|
-
#, fuzzy
|
|
288
315
|
msgid "The subnet has been associated"
|
|
289
|
-
msgstr "
|
|
316
|
+
msgstr ""
|
|
290
317
|
|
|
291
318
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:124
|
|
292
|
-
#, fuzzy
|
|
293
319
|
msgid "Could not associate the subnet"
|
|
294
|
-
msgstr "
|
|
320
|
+
msgstr ""
|
|
295
321
|
|
|
296
322
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:129
|
|
297
323
|
msgid "Disassociate a subnet"
|
|
298
324
|
msgstr "Desassociar uma subrede"
|
|
299
325
|
|
|
300
326
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:131
|
|
301
|
-
#, fuzzy
|
|
302
327
|
msgid "The subnet has been disassociated"
|
|
303
|
-
msgstr "
|
|
328
|
+
msgstr ""
|
|
304
329
|
|
|
305
330
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:132
|
|
306
|
-
#, fuzzy
|
|
307
331
|
msgid "Could not disassociate the subnet"
|
|
308
|
-
msgstr "
|
|
332
|
+
msgstr ""
|
|
309
333
|
|
|
310
334
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:141
|
|
311
335
|
msgid "Associate a compute resource"
|
|
312
|
-
msgstr "Associar um recurso de
|
|
336
|
+
msgstr "Associar um recurso de computação"
|
|
313
337
|
|
|
314
338
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:143
|
|
315
|
-
#, fuzzy
|
|
316
339
|
msgid "The compute resource has been associated"
|
|
317
|
-
msgstr "
|
|
340
|
+
msgstr ""
|
|
318
341
|
|
|
319
342
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:144
|
|
320
|
-
#, fuzzy
|
|
321
343
|
msgid "Could not associate the compute resource"
|
|
322
|
-
msgstr "
|
|
344
|
+
msgstr ""
|
|
323
345
|
|
|
324
346
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:149
|
|
325
347
|
msgid "Disassociate a compute resource"
|
|
326
|
-
msgstr "Desassociar um recurso de
|
|
348
|
+
msgstr "Desassociar um recurso de computação"
|
|
327
349
|
|
|
328
350
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:151
|
|
329
|
-
#, fuzzy
|
|
330
351
|
msgid "The compute resource has been disassociated"
|
|
331
|
-
msgstr "
|
|
352
|
+
msgstr ""
|
|
332
353
|
|
|
333
354
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:152
|
|
334
|
-
#, fuzzy
|
|
335
355
|
msgid "Could not disassociate the compute resource"
|
|
336
|
-
msgstr "
|
|
356
|
+
msgstr ""
|
|
337
357
|
|
|
338
358
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:161
|
|
339
359
|
msgid "Associate a smart proxy"
|
|
340
360
|
msgstr "Associar um proxy inteligente"
|
|
341
361
|
|
|
342
362
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:163
|
|
343
|
-
#, fuzzy
|
|
344
363
|
msgid "The smart proxy has been associated"
|
|
345
|
-
msgstr "
|
|
364
|
+
msgstr ""
|
|
346
365
|
|
|
347
366
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:164
|
|
348
|
-
#, fuzzy
|
|
349
367
|
msgid "Could not associate the smart proxy"
|
|
350
|
-
msgstr "
|
|
368
|
+
msgstr ""
|
|
351
369
|
|
|
352
370
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:173
|
|
353
371
|
msgid "Disassociate a smart proxy"
|
|
354
372
|
msgstr "Desassociar um proxy inteligente"
|
|
355
373
|
|
|
356
374
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:175
|
|
357
|
-
#, fuzzy
|
|
358
375
|
msgid "The smart proxy has been disassociated"
|
|
359
|
-
msgstr "
|
|
376
|
+
msgstr ""
|
|
360
377
|
|
|
361
378
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:176
|
|
362
|
-
#, fuzzy
|
|
363
379
|
msgid "Could not disassociate the smart proxy"
|
|
364
|
-
msgstr "
|
|
380
|
+
msgstr ""
|
|
365
381
|
|
|
366
382
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:189
|
|
367
383
|
msgid "Associate an user"
|
|
@@ -420,9 +436,8 @@ msgid "The configuration template has been associated"
|
|
|
420
436
|
msgstr ""
|
|
421
437
|
|
|
422
438
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:236
|
|
423
|
-
#, fuzzy
|
|
424
439
|
msgid "Could not associate the configuration template"
|
|
425
|
-
msgstr "
|
|
440
|
+
msgstr ""
|
|
426
441
|
|
|
427
442
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:241
|
|
428
443
|
msgid "Disassociate a configuration template"
|
|
@@ -433,9 +448,8 @@ msgid "The configuration template has been disassociated"
|
|
|
433
448
|
msgstr ""
|
|
434
449
|
|
|
435
450
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:244
|
|
436
|
-
#, fuzzy
|
|
437
451
|
msgid "Could not disassociate the configuration template"
|
|
438
|
-
msgstr "
|
|
452
|
+
msgstr ""
|
|
439
453
|
|
|
440
454
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:253
|
|
441
455
|
msgid "Associate an organization"
|
|
@@ -446,23 +460,20 @@ msgid "The organization has been associated"
|
|
|
446
460
|
msgstr ""
|
|
447
461
|
|
|
448
462
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:256
|
|
449
|
-
#, fuzzy
|
|
450
463
|
msgid "Could not associate the organization"
|
|
451
|
-
msgstr "
|
|
464
|
+
msgstr ""
|
|
452
465
|
|
|
453
466
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:261
|
|
454
467
|
msgid "Disassociate an organization"
|
|
455
468
|
msgstr "Desassociar uma empresa"
|
|
456
469
|
|
|
457
470
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:263
|
|
458
|
-
#, fuzzy
|
|
459
471
|
msgid "The organization has been disassociated"
|
|
460
|
-
msgstr "
|
|
472
|
+
msgstr ""
|
|
461
473
|
|
|
462
474
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:264
|
|
463
|
-
#, fuzzy
|
|
464
475
|
msgid "Could not disassociate the organization"
|
|
465
|
-
msgstr "
|
|
476
|
+
msgstr ""
|
|
466
477
|
|
|
467
478
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:273
|
|
468
479
|
msgid "Associate an operating system"
|
|
@@ -573,7 +584,7 @@ msgstr "O usuario esta associado"
|
|
|
573
584
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:360
|
|
574
585
|
#, fuzzy
|
|
575
586
|
msgid "Could not associate the location"
|
|
576
|
-
msgstr "Não foi possível criar
|
|
587
|
+
msgstr "Não foi possível criar a localização"
|
|
577
588
|
|
|
578
589
|
#: ../lib/hammer_cli_foreman/associating_commands.rb:365
|
|
579
590
|
#, fuzzy
|
|
@@ -594,30 +605,31 @@ msgstr "Não pode desassociar o usuário"
|
|
|
594
605
|
msgid "Set credentials"
|
|
595
606
|
msgstr "Definir credenciais"
|
|
596
607
|
|
|
597
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
608
|
+
#: ../lib/hammer_cli_foreman/auth.rb:9
|
|
609
|
+
#, fuzzy
|
|
610
|
+
msgid "username to access the remote system"
|
|
611
|
+
msgstr "usuário"
|
|
612
|
+
|
|
613
|
+
#: ../lib/hammer_cli_foreman/auth.rb:10
|
|
614
|
+
msgid "password to access the remote system"
|
|
615
|
+
msgstr ""
|
|
616
|
+
|
|
617
|
+
#: ../lib/hammer_cli_foreman/auth.rb:22
|
|
618
|
+
msgid "Successfully logged in."
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
#: ../lib/hammer_cli_foreman/auth.rb:29
|
|
598
622
|
msgid "Wipe your credentials"
|
|
599
623
|
msgstr "Limpar suas credenciais"
|
|
600
624
|
|
|
601
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
625
|
+
#: ../lib/hammer_cli_foreman/auth.rb:34
|
|
602
626
|
msgid "Credentials deleted."
|
|
603
627
|
msgstr "Credenciais removidas"
|
|
604
628
|
|
|
605
|
-
#: ../lib/hammer_cli_foreman/auth.rb:
|
|
629
|
+
#: ../lib/hammer_cli_foreman/auth.rb:41
|
|
606
630
|
msgid "Information about current connections"
|
|
607
631
|
msgstr "Informações sobre as conexões atuais"
|
|
608
632
|
|
|
609
|
-
#: ../lib/hammer_cli_foreman/auth.rb:37
|
|
610
|
-
msgid "You are logged in as '%s'"
|
|
611
|
-
msgstr "Você está autenticado como '%s'"
|
|
612
|
-
|
|
613
|
-
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
614
|
-
msgid ""
|
|
615
|
-
"You are currently not logged in to any service.\n"
|
|
616
|
-
"Use the service to set credentials."
|
|
617
|
-
msgstr ""
|
|
618
|
-
"No momento você não esta logado em nenhum serviço. \n"
|
|
619
|
-
"Usar o serviço para definir credenciais."
|
|
620
|
-
|
|
621
633
|
#: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
|
|
622
634
|
msgid "Manage LDAP auth sources."
|
|
623
635
|
msgstr "Gerenciar fontes de autenticação LDAP"
|
|
@@ -694,48 +706,47 @@ msgstr "Fonte de autenticação atualizada"
|
|
|
694
706
|
msgid "Could not update the Auth Source"
|
|
695
707
|
msgstr "Não foi possível atualizar a Fonte de Autenticação"
|
|
696
708
|
|
|
697
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
709
|
+
#: ../lib/hammer_cli_foreman/commands.rb:56
|
|
698
710
|
msgid "Received data of unknown format"
|
|
699
711
|
msgstr "Dados recebidos de formato desconhecido"
|
|
700
712
|
|
|
701
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
713
|
+
#: ../lib/hammer_cli_foreman/commands.rb:164
|
|
702
714
|
msgid "Could not find %{resource}. Some search options were missing, please see --help."
|
|
703
|
-
msgstr "Não foi possível encontrar
|
|
715
|
+
msgstr "Não foi possível encontrar %{resource}. Algumas opções de pesquisa estavam ausentes, por favor consulte --help."
|
|
704
716
|
|
|
705
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
717
|
+
#: ../lib/hammer_cli_foreman/commands.rb:166
|
|
706
718
|
msgid "Could not find %{resource}, please set option %{switches}."
|
|
707
719
|
msgstr "Não foi possível encontrar %{resource}, por favor defina a opção %{switches}."
|
|
708
720
|
|
|
709
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
721
|
+
#: ../lib/hammer_cli_foreman/commands.rb:168
|
|
710
722
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
|
711
723
|
msgstr "Não foi possível encontrar %{resource}, por favor defina uma das opções %{switches}."
|
|
712
724
|
|
|
713
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
725
|
+
#: ../lib/hammer_cli_foreman/commands.rb:497
|
|
714
726
|
msgid "Associate a resource"
|
|
715
727
|
msgstr "Associar um recurso"
|
|
716
728
|
|
|
717
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
729
|
+
#: ../lib/hammer_cli_foreman/commands.rb:501
|
|
718
730
|
msgid "Could not associate the %{resource_name}"
|
|
719
731
|
msgstr ""
|
|
720
732
|
|
|
721
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
733
|
+
#: ../lib/hammer_cli_foreman/commands.rb:505
|
|
722
734
|
msgid "The %{resource_name} has been associated"
|
|
723
735
|
msgstr ""
|
|
724
736
|
|
|
725
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
737
|
+
#: ../lib/hammer_cli_foreman/commands.rb:527
|
|
726
738
|
msgid "Disassociate a resource"
|
|
727
739
|
msgstr "Desassociar um recurso"
|
|
728
740
|
|
|
729
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
730
|
-
#, fuzzy
|
|
741
|
+
#: ../lib/hammer_cli_foreman/commands.rb:539
|
|
731
742
|
msgid "Could not disassociate the %{resource_name}"
|
|
732
|
-
msgstr "
|
|
743
|
+
msgstr ""
|
|
733
744
|
|
|
734
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
|
745
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
|
735
746
|
msgid "The %{resource_name} has been disassociated"
|
|
736
747
|
msgstr ""
|
|
737
748
|
|
|
738
|
-
#: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
|
749
|
+
#: ../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
|
|
739
750
|
msgid "Value"
|
|
740
751
|
msgstr "Valor"
|
|
741
752
|
|
|
@@ -775,9 +786,9 @@ msgstr "Manipular parâmetros globais."
|
|
|
775
786
|
msgid "Provider"
|
|
776
787
|
msgstr "Provedor"
|
|
777
788
|
|
|
778
|
-
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
779
|
-
msgid "
|
|
780
|
-
msgstr "
|
|
789
|
+
#: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40
|
|
790
|
+
msgid "Datacenter"
|
|
791
|
+
msgstr ""
|
|
781
792
|
|
|
782
793
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
|
|
783
794
|
msgid "Region"
|
|
@@ -795,7 +806,7 @@ msgstr "Locatário"
|
|
|
795
806
|
msgid "Url"
|
|
796
807
|
msgstr "Url"
|
|
797
808
|
|
|
798
|
-
#: ../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
|
|
809
|
+
#: ../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
|
|
799
810
|
msgid "Description"
|
|
800
811
|
msgstr "Descrição"
|
|
801
812
|
|
|
@@ -805,39 +816,181 @@ msgstr "Usuário"
|
|
|
805
816
|
|
|
806
817
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:73
|
|
807
818
|
msgid "Compute resource created"
|
|
808
|
-
msgstr "Recurso
|
|
819
|
+
msgstr "Recurso de computação criado"
|
|
809
820
|
|
|
810
821
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:74
|
|
811
822
|
msgid "Could not create the compute resource"
|
|
812
|
-
msgstr "Não foi possível criar
|
|
823
|
+
msgstr "Não foi possível criar o recurso de computação"
|
|
813
824
|
|
|
814
825
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:85
|
|
815
826
|
msgid "Compute resource updated"
|
|
816
|
-
msgstr "Recurso de
|
|
827
|
+
msgstr "Recurso de computação atualizado"
|
|
817
828
|
|
|
818
829
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:86
|
|
819
830
|
msgid "Could not update the compute resource"
|
|
820
|
-
msgstr "Não foi possível atualizar
|
|
831
|
+
msgstr "Não foi possível atualizar o recurso de computação"
|
|
821
832
|
|
|
822
833
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:93
|
|
823
834
|
msgid "Compute resource deleted"
|
|
824
|
-
msgstr "Recurso de
|
|
835
|
+
msgstr "Recurso de computação removido"
|
|
825
836
|
|
|
826
837
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:94
|
|
827
838
|
msgid "Could not delete the compute resource"
|
|
828
|
-
msgstr "Não foi possível remover
|
|
839
|
+
msgstr "Não foi possível remover o recurso de computação"
|
|
829
840
|
|
|
830
|
-
#: ../lib/hammer_cli_foreman/
|
|
831
|
-
msgid "
|
|
832
|
-
msgstr "
|
|
841
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb:6
|
|
842
|
+
msgid "EC2"
|
|
843
|
+
msgstr ""
|
|
833
844
|
|
|
834
|
-
#: ../lib/hammer_cli_foreman/
|
|
835
|
-
msgid "
|
|
836
|
-
msgstr "
|
|
845
|
+
#: ../lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb:6
|
|
846
|
+
msgid "GCE"
|
|
847
|
+
msgstr ""
|
|
848
|
+
|
|
849
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:6
|
|
850
|
+
msgid "Libvirt"
|
|
851
|
+
msgstr ""
|
|
852
|
+
|
|
853
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:12
|
|
854
|
+
msgid "Number of CPUs"
|
|
855
|
+
msgstr ""
|
|
856
|
+
|
|
857
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:13
|
|
858
|
+
msgid "String, amount of memory, value in bytes"
|
|
859
|
+
msgstr ""
|
|
860
|
+
|
|
861
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:14 ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:16
|
|
862
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
863
|
+
msgstr ""
|
|
864
|
+
|
|
865
|
+
#: ../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
|
|
866
|
+
msgid "Possible values: %s"
|
|
867
|
+
msgstr ""
|
|
868
|
+
|
|
869
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:20
|
|
870
|
+
#, fuzzy
|
|
871
|
+
msgid "Name of interface according to type"
|
|
872
|
+
msgstr "Nome"
|
|
873
|
+
|
|
874
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:26
|
|
875
|
+
msgid "One of available storage pools"
|
|
876
|
+
msgstr ""
|
|
877
|
+
|
|
878
|
+
#: ../lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb:27
|
|
879
|
+
msgid "String value, eg. 10G"
|
|
880
|
+
msgstr ""
|
|
881
|
+
|
|
882
|
+
#: ../lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb:6
|
|
883
|
+
msgid "OpenStack"
|
|
884
|
+
msgstr ""
|
|
885
|
+
|
|
886
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:6
|
|
887
|
+
msgid "oVirt"
|
|
888
|
+
msgstr ""
|
|
889
|
+
|
|
890
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:13
|
|
891
|
+
#, fuzzy
|
|
892
|
+
msgid "Hardware profile to use"
|
|
893
|
+
msgstr "arquivo"
|
|
894
|
+
|
|
895
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:14
|
|
896
|
+
msgid "Integer value, number of cores"
|
|
897
|
+
msgstr ""
|
|
898
|
+
|
|
899
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:15
|
|
900
|
+
msgid "Amount of memory, integer value in bytes"
|
|
901
|
+
msgstr ""
|
|
902
|
+
|
|
903
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:21
|
|
904
|
+
msgid "Eg. eth0"
|
|
905
|
+
msgstr ""
|
|
906
|
+
|
|
907
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:22
|
|
908
|
+
msgid "Select one of available networks for a cluster"
|
|
909
|
+
msgstr ""
|
|
910
|
+
|
|
911
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:27
|
|
912
|
+
msgid "Volume size in GB, integer value"
|
|
913
|
+
msgstr ""
|
|
914
|
+
|
|
915
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:28
|
|
916
|
+
msgid "Select one of available storage domains"
|
|
917
|
+
msgstr ""
|
|
918
|
+
|
|
919
|
+
#: ../lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb:29
|
|
920
|
+
msgid "Boolean, only one volume can be bootable"
|
|
921
|
+
msgstr ""
|
|
922
|
+
|
|
923
|
+
#: ../lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb:6
|
|
924
|
+
msgid "Rackspace"
|
|
925
|
+
msgstr ""
|
|
926
|
+
|
|
927
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:15
|
|
928
|
+
msgid "VMWare"
|
|
929
|
+
msgstr ""
|
|
930
|
+
|
|
931
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:21
|
|
932
|
+
msgid "Cpu count"
|
|
933
|
+
msgstr ""
|
|
934
|
+
|
|
935
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:22
|
|
936
|
+
msgid "Number of cores per socket (applicable to hardware versions < 10 only)"
|
|
937
|
+
msgstr ""
|
|
938
|
+
|
|
939
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:23
|
|
940
|
+
msgid "Integer number, amount of memory in MB"
|
|
941
|
+
msgstr ""
|
|
942
|
+
|
|
943
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:24
|
|
944
|
+
msgid "Cluster id from VMware"
|
|
945
|
+
msgstr ""
|
|
946
|
+
|
|
947
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:25
|
|
948
|
+
#, fuzzy
|
|
949
|
+
msgid "Path to folder"
|
|
950
|
+
msgstr "Caminho"
|
|
951
|
+
|
|
952
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:26
|
|
953
|
+
msgid "Guest OS id form VMware"
|
|
954
|
+
msgstr ""
|
|
955
|
+
|
|
956
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:27
|
|
957
|
+
#, fuzzy
|
|
958
|
+
msgid "Id of the controller from VMware"
|
|
959
|
+
msgstr "Id"
|
|
960
|
+
|
|
961
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:28
|
|
962
|
+
msgid "Hardware version id from VMware"
|
|
963
|
+
msgstr ""
|
|
964
|
+
|
|
965
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:29
|
|
966
|
+
msgid "Must be a 1 or 0, whether to start the machine or not"
|
|
967
|
+
msgstr ""
|
|
968
|
+
|
|
969
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:35
|
|
970
|
+
#, fuzzy
|
|
971
|
+
msgid "Network id from VMware"
|
|
972
|
+
msgstr "Rede"
|
|
973
|
+
|
|
974
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:41
|
|
975
|
+
msgid "Datastore id from VMware"
|
|
976
|
+
msgstr ""
|
|
977
|
+
|
|
978
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:42
|
|
979
|
+
msgid "Integer number, volume size in GB"
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
982
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:53
|
|
983
|
+
#, fuzzy
|
|
984
|
+
msgid "Type of the network adapter, for example one of:"
|
|
985
|
+
msgstr "Tipo"
|
|
986
|
+
|
|
987
|
+
#: ../lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb:55
|
|
988
|
+
msgid "See documentation center for your version of vSphere to find more details about available adapter types:"
|
|
989
|
+
msgstr ""
|
|
837
990
|
|
|
838
991
|
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
|
839
992
|
msgid "Use the default organization and/or location from the server"
|
|
840
|
-
msgstr ""
|
|
993
|
+
msgstr "Usar a localização e/ou organização padrão do servidor "
|
|
841
994
|
|
|
842
995
|
#: ../lib/hammer_cli_foreman/domain.rb:6
|
|
843
996
|
msgid "ID of DNS proxy to use within this domain"
|
|
@@ -940,9 +1093,8 @@ msgid "Update your server url configuration"
|
|
|
940
1093
|
msgstr ""
|
|
941
1094
|
|
|
942
1095
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:33
|
|
943
|
-
#, fuzzy
|
|
944
1096
|
msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
|
|
945
|
-
msgstr "
|
|
1097
|
+
msgstr ""
|
|
946
1098
|
|
|
947
1099
|
#: ../lib/hammer_cli_foreman/exception_handler.rb:54
|
|
948
1100
|
msgid "Forbidden - server refused to process the request"
|
|
@@ -1000,7 +1152,7 @@ msgstr "Não foi possível excluir o grupo de usuário externo"
|
|
|
1000
1152
|
msgid "Host"
|
|
1001
1153
|
msgstr "Host"
|
|
1002
1154
|
|
|
1003
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
|
1155
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:188
|
|
1004
1156
|
msgid "Fact"
|
|
1005
1157
|
msgstr "Fato"
|
|
1006
1158
|
|
|
@@ -1010,361 +1162,342 @@ msgstr "Tipo de Recurso"
|
|
|
1010
1162
|
|
|
1011
1163
|
#: ../lib/hammer_cli_foreman/filter.rb:11
|
|
1012
1164
|
msgid "Search"
|
|
1013
|
-
msgstr "
|
|
1165
|
+
msgstr "Pesquisar"
|
|
1014
1166
|
|
|
1015
1167
|
#: ../lib/hammer_cli_foreman/filter.rb:12
|
|
1016
1168
|
msgid "Unlimited?"
|
|
1017
1169
|
msgstr "Ilimitado?"
|
|
1018
1170
|
|
|
1019
1171
|
#: ../lib/hammer_cli_foreman/filter.rb:13
|
|
1020
|
-
|
|
1021
|
-
|
|
1172
|
+
#, fuzzy
|
|
1173
|
+
msgid "Override?"
|
|
1174
|
+
msgstr "Sobrescrever"
|
|
1022
1175
|
|
|
1023
1176
|
#: ../lib/hammer_cli_foreman/filter.rb:14
|
|
1177
|
+
msgid "Role"
|
|
1178
|
+
msgstr "Função"
|
|
1179
|
+
|
|
1180
|
+
#: ../lib/hammer_cli_foreman/filter.rb:15
|
|
1024
1181
|
msgid "Permissions"
|
|
1025
1182
|
msgstr "Permissões"
|
|
1026
1183
|
|
|
1027
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1184
|
+
#: ../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
|
|
1028
1185
|
msgid "(Miscellaneous)"
|
|
1029
|
-
msgstr "(
|
|
1186
|
+
msgstr "(Diversos)"
|
|
1030
1187
|
|
|
1031
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1188
|
+
#: ../lib/hammer_cli_foreman/filter.rb:20 ../lib/hammer_cli_foreman/filter.rb:36 ../lib/hammer_cli_foreman/role.rb:43
|
|
1032
1189
|
msgid "none"
|
|
1033
1190
|
msgstr "nenhum"
|
|
1034
1191
|
|
|
1035
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1192
|
+
#: ../lib/hammer_cli_foreman/filter.rb:45
|
|
1036
1193
|
msgid "Permission filter for [%<resource_type>s] created"
|
|
1037
1194
|
msgstr "Filtro de permissão para [%<resource_type>s] criado"
|
|
1038
1195
|
|
|
1039
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1196
|
+
#: ../lib/hammer_cli_foreman/filter.rb:46
|
|
1040
1197
|
msgid "Could not create the permission filter"
|
|
1041
1198
|
msgstr "Não foi possível criar o filtro de permissão"
|
|
1042
1199
|
|
|
1043
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1200
|
+
#: ../lib/hammer_cli_foreman/filter.rb:53
|
|
1044
1201
|
msgid "Permission filter for [%<resource_type>s] updated"
|
|
1045
1202
|
msgstr "Filtro de permissão para [%<resource_type>s] atualizado"
|
|
1046
1203
|
|
|
1047
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1204
|
+
#: ../lib/hammer_cli_foreman/filter.rb:54
|
|
1048
1205
|
msgid "Could not update the permission filter"
|
|
1049
1206
|
msgstr "Não foi possível atualizar o filtro de permissão"
|
|
1050
1207
|
|
|
1051
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1208
|
+
#: ../lib/hammer_cli_foreman/filter.rb:61
|
|
1052
1209
|
msgid "Permission filter deleted"
|
|
1053
1210
|
msgstr "Filtro de permissão removido"
|
|
1054
1211
|
|
|
1055
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1212
|
+
#: ../lib/hammer_cli_foreman/filter.rb:62
|
|
1056
1213
|
msgid "Could not delete the permission filter"
|
|
1057
1214
|
msgstr "Não foi possível remover o filtro de permissão"
|
|
1058
1215
|
|
|
1059
|
-
#: ../lib/hammer_cli_foreman/filter.rb:
|
|
1216
|
+
#: ../lib/hammer_cli_foreman/filter.rb:75 ../lib/hammer_cli_foreman/report.rb:62
|
|
1060
1217
|
msgid "Resource"
|
|
1061
1218
|
msgstr "Recurso"
|
|
1062
1219
|
|
|
1063
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1064
|
-
msgid "Login of the owner"
|
|
1065
|
-
msgstr "Login do Proprietário"
|
|
1066
|
-
|
|
1067
|
-
#: ../lib/hammer_cli_foreman/host.rb:17
|
|
1068
|
-
msgid "ID of the owner"
|
|
1069
|
-
msgstr "ID do Proprietário"
|
|
1070
|
-
|
|
1071
|
-
#: ../lib/hammer_cli_foreman/host.rb:44
|
|
1072
|
-
msgid "Host parameters."
|
|
1073
|
-
msgstr "Parâmetros de host."
|
|
1074
|
-
|
|
1075
|
-
#: ../lib/hammer_cli_foreman/host.rb:46
|
|
1076
|
-
msgid "Compute resource attributes."
|
|
1077
|
-
msgstr "Atributos de recurso de computador"
|
|
1078
|
-
|
|
1079
|
-
#: ../lib/hammer_cli_foreman/host.rb:48
|
|
1080
|
-
msgid "Volume parameters"
|
|
1081
|
-
msgstr "Parâmetros de volume"
|
|
1082
|
-
|
|
1083
|
-
#: ../lib/hammer_cli_foreman/host.rb:50
|
|
1084
|
-
msgid "Interface parameters."
|
|
1085
|
-
msgstr "Parâmetros de interface"
|
|
1086
|
-
|
|
1087
|
-
#: ../lib/hammer_cli_foreman/host.rb:64
|
|
1088
|
-
msgid "Enter the root password for the host:"
|
|
1089
|
-
msgstr "Entre a senha original para o host"
|
|
1090
|
-
|
|
1091
|
-
#: ../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
|
|
1220
|
+
#: ../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
|
|
1092
1221
|
msgid "Operating System"
|
|
1093
1222
|
msgstr "Sistema Operacional"
|
|
1094
1223
|
|
|
1095
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1224
|
+
#: ../lib/hammer_cli_foreman/host.rb:33 ../lib/hammer_cli_foreman/host.rb:67
|
|
1096
1225
|
msgid "Host Group"
|
|
1097
1226
|
msgstr "Grupo de Host"
|
|
1098
1227
|
|
|
1099
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1228
|
+
#: ../lib/hammer_cli_foreman/host.rb:34 ../lib/hammer_cli_foreman/host.rb:80
|
|
1100
1229
|
msgid "IP"
|
|
1101
1230
|
msgstr "IP"
|
|
1102
1231
|
|
|
1103
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1232
|
+
#: ../lib/hammer_cli_foreman/host.rb:35 ../lib/hammer_cli_foreman/host.rb:81
|
|
1104
1233
|
msgid "MAC"
|
|
1105
1234
|
msgstr "MAC"
|
|
1106
1235
|
|
|
1107
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1236
|
+
#: ../lib/hammer_cli_foreman/host.rb:45
|
|
1108
1237
|
msgid "Bare Metal"
|
|
1109
1238
|
msgstr "Puro metal"
|
|
1110
1239
|
|
|
1111
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1240
|
+
#: ../lib/hammer_cli_foreman/host.rb:63 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
|
|
1241
|
+
msgid "UUID"
|
|
1242
|
+
msgstr "UUID"
|
|
1243
|
+
|
|
1244
|
+
#: ../lib/hammer_cli_foreman/host.rb:65
|
|
1112
1245
|
msgid "Organization"
|
|
1113
1246
|
msgstr "Organizacao "
|
|
1114
1247
|
|
|
1115
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1248
|
+
#: ../lib/hammer_cli_foreman/host.rb:66
|
|
1116
1249
|
msgid "Location"
|
|
1117
1250
|
msgstr "Localizacao "
|
|
1118
1251
|
|
|
1119
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1252
|
+
#: ../lib/hammer_cli_foreman/host.rb:68
|
|
1120
1253
|
msgid "Compute Resource"
|
|
1121
1254
|
msgstr "Recurso de computação"
|
|
1122
1255
|
|
|
1123
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1256
|
+
#: ../lib/hammer_cli_foreman/host.rb:69
|
|
1124
1257
|
msgid "Compute Profile"
|
|
1125
|
-
msgstr "Perfil
|
|
1258
|
+
msgstr "Perfil Computacional"
|
|
1126
1259
|
|
|
1127
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1260
|
+
#: ../lib/hammer_cli_foreman/host.rb:70 ../lib/hammer_cli_foreman/hostgroup.rb:61
|
|
1128
1261
|
msgid "Environment"
|
|
1129
1262
|
msgstr "Ambiente"
|
|
1130
1263
|
|
|
1131
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1264
|
+
#: ../lib/hammer_cli_foreman/host.rb:71
|
|
1132
1265
|
msgid "Puppet CA Id"
|
|
1133
|
-
msgstr "
|
|
1266
|
+
msgstr "Id do Puppet CA"
|
|
1134
1267
|
|
|
1135
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1268
|
+
#: ../lib/hammer_cli_foreman/host.rb:72
|
|
1136
1269
|
msgid "Puppet Master Id"
|
|
1137
|
-
msgstr "
|
|
1270
|
+
msgstr "Id do Puppet Master"
|
|
1138
1271
|
|
|
1139
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1272
|
+
#: ../lib/hammer_cli_foreman/host.rb:73
|
|
1140
1273
|
msgid "Cert name"
|
|
1141
1274
|
msgstr "Nome do Certificado"
|
|
1142
1275
|
|
|
1143
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1276
|
+
#: ../lib/hammer_cli_foreman/host.rb:74 ../lib/hammer_cli_foreman/interface.rb:51
|
|
1144
1277
|
msgid "Managed"
|
|
1145
1278
|
msgstr "Gerenciado"
|
|
1146
1279
|
|
|
1147
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1280
|
+
#: ../lib/hammer_cli_foreman/host.rb:76
|
|
1148
1281
|
msgid "Installed at"
|
|
1149
1282
|
msgstr "Instalado em"
|
|
1150
1283
|
|
|
1151
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1284
|
+
#: ../lib/hammer_cli_foreman/host.rb:77 ../lib/hammer_cli_foreman/report.rb:12
|
|
1152
1285
|
msgid "Last report"
|
|
1153
1286
|
msgstr "Último relatório"
|
|
1154
1287
|
|
|
1155
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1288
|
+
#: ../lib/hammer_cli_foreman/host.rb:79 ../lib/hammer_cli_foreman/subnet.rb:12
|
|
1156
1289
|
msgid "Network"
|
|
1157
1290
|
msgstr "Rede"
|
|
1158
1291
|
|
|
1159
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1292
|
+
#: ../lib/hammer_cli_foreman/host.rb:82 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
|
|
1160
1293
|
msgid "Subnet"
|
|
1161
1294
|
msgstr "Subrede"
|
|
1162
1295
|
|
|
1163
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1296
|
+
#: ../lib/hammer_cli_foreman/host.rb:83 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
|
|
1164
1297
|
msgid "Domain"
|
|
1165
1298
|
msgstr "Domínio"
|
|
1166
1299
|
|
|
1167
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1300
|
+
#: ../lib/hammer_cli_foreman/host.rb:84
|
|
1168
1301
|
msgid "Service provider"
|
|
1169
1302
|
msgstr "Provedor de servico "
|
|
1170
1303
|
|
|
1171
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1304
|
+
#: ../lib/hammer_cli_foreman/host.rb:85
|
|
1172
1305
|
msgid "SP Name"
|
|
1173
1306
|
msgstr "Nome do SP"
|
|
1174
1307
|
|
|
1175
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1308
|
+
#: ../lib/hammer_cli_foreman/host.rb:86
|
|
1176
1309
|
msgid "SP IP"
|
|
1177
1310
|
msgstr "SP IP"
|
|
1178
1311
|
|
|
1179
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1312
|
+
#: ../lib/hammer_cli_foreman/host.rb:87
|
|
1180
1313
|
msgid "SP MAC"
|
|
1181
1314
|
msgstr "SP MAC"
|
|
1182
1315
|
|
|
1183
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1316
|
+
#: ../lib/hammer_cli_foreman/host.rb:88
|
|
1184
1317
|
msgid "SP Subnet"
|
|
1185
1318
|
msgstr "SP Subnet"
|
|
1186
1319
|
|
|
1187
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1320
|
+
#: ../lib/hammer_cli_foreman/host.rb:92
|
|
1188
1321
|
msgid "Network interfaces"
|
|
1189
1322
|
msgstr "Interfaces da rede"
|
|
1190
1323
|
|
|
1191
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1324
|
+
#: ../lib/hammer_cli_foreman/host.rb:94 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
|
|
1192
1325
|
msgid "Identifier"
|
|
1193
1326
|
msgstr "Identificador "
|
|
1194
1327
|
|
|
1195
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1328
|
+
#: ../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
|
|
1196
1329
|
msgid "Type"
|
|
1197
1330
|
msgstr "Tipo"
|
|
1198
1331
|
|
|
1199
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1332
|
+
#: ../lib/hammer_cli_foreman/host.rb:96 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
|
|
1200
1333
|
msgid "MAC address"
|
|
1201
1334
|
msgstr "Endereço MAC "
|
|
1202
1335
|
|
|
1203
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1336
|
+
#: ../lib/hammer_cli_foreman/host.rb:97 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
|
|
1204
1337
|
msgid "IP address"
|
|
1205
1338
|
msgstr "Endereco de IP"
|
|
1206
1339
|
|
|
1207
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1340
|
+
#: ../lib/hammer_cli_foreman/host.rb:98
|
|
1208
1341
|
msgid "FQDN"
|
|
1209
1342
|
msgstr "FQDN"
|
|
1210
1343
|
|
|
1211
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1344
|
+
#: ../lib/hammer_cli_foreman/host.rb:101
|
|
1212
1345
|
msgid "Operating system"
|
|
1213
1346
|
msgstr "Sistema operacional"
|
|
1214
1347
|
|
|
1215
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1348
|
+
#: ../lib/hammer_cli_foreman/host.rb:102 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
|
|
1216
1349
|
msgid "Architecture"
|
|
1217
1350
|
msgstr "Arquitetura"
|
|
1218
1351
|
|
|
1219
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1352
|
+
#: ../lib/hammer_cli_foreman/host.rb:106
|
|
1220
1353
|
msgid "Build"
|
|
1221
1354
|
msgstr "Construir"
|
|
1222
1355
|
|
|
1223
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1356
|
+
#: ../lib/hammer_cli_foreman/host.rb:107 ../lib/hammer_cli_foreman/hostgroup.rb:77
|
|
1224
1357
|
msgid "Medium"
|
|
1225
1358
|
msgstr "Meio"
|
|
1226
1359
|
|
|
1227
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1360
|
+
#: ../lib/hammer_cli_foreman/host.rb:108 ../lib/hammer_cli_foreman/hostgroup.rb:76
|
|
1228
1361
|
msgid "Partition Table"
|
|
1229
1362
|
msgstr "Tabela de Partição"
|
|
1230
1363
|
|
|
1231
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1364
|
+
#: ../lib/hammer_cli_foreman/host.rb:109
|
|
1232
1365
|
msgid "Custom partition table"
|
|
1233
1366
|
msgstr "Tabela de partição personalizada "
|
|
1234
1367
|
|
|
1235
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1368
|
+
#: ../lib/hammer_cli_foreman/host.rb:112
|
|
1236
1369
|
msgid "Image"
|
|
1237
1370
|
msgstr "Imagem"
|
|
1238
1371
|
|
|
1239
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1372
|
+
#: ../lib/hammer_cli_foreman/host.rb:113
|
|
1240
1373
|
msgid "Image file"
|
|
1241
1374
|
msgstr "Arquivo de Imagem"
|
|
1242
1375
|
|
|
1243
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1376
|
+
#: ../lib/hammer_cli_foreman/host.rb:114
|
|
1244
1377
|
msgid "Use image"
|
|
1245
1378
|
msgstr "Usar imagem"
|
|
1246
1379
|
|
|
1247
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1380
|
+
#: ../lib/hammer_cli_foreman/host.rb:120
|
|
1248
1381
|
msgid "Additional info"
|
|
1249
1382
|
msgstr "Informação adicional "
|
|
1250
1383
|
|
|
1251
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1384
|
+
#: ../lib/hammer_cli_foreman/host.rb:121
|
|
1252
1385
|
msgid "Owner Id"
|
|
1253
1386
|
msgstr "ID de Proprietário"
|
|
1254
1387
|
|
|
1255
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1388
|
+
#: ../lib/hammer_cli_foreman/host.rb:122
|
|
1256
1389
|
msgid "Owner Type"
|
|
1257
1390
|
msgstr "Tipo de Proprietário"
|
|
1258
1391
|
|
|
1259
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1392
|
+
#: ../lib/hammer_cli_foreman/host.rb:123
|
|
1260
1393
|
msgid "Enabled"
|
|
1261
1394
|
msgstr "Habilitado"
|
|
1262
1395
|
|
|
1263
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1396
|
+
#: ../lib/hammer_cli_foreman/host.rb:124 ../lib/hammer_cli_foreman/hostgroup.rb:62
|
|
1264
1397
|
msgid "Model"
|
|
1265
1398
|
msgstr "Modelo"
|
|
1266
1399
|
|
|
1267
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1400
|
+
#: ../lib/hammer_cli_foreman/host.rb:125
|
|
1268
1401
|
msgid "Comment"
|
|
1269
1402
|
msgstr "Comentário"
|
|
1270
1403
|
|
|
1271
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1404
|
+
#: ../lib/hammer_cli_foreman/host.rb:138
|
|
1272
1405
|
msgid "Status"
|
|
1273
1406
|
msgstr "Estado"
|
|
1274
1407
|
|
|
1275
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1408
|
+
#: ../lib/hammer_cli_foreman/host.rb:139
|
|
1276
1409
|
msgid "Power"
|
|
1277
1410
|
msgstr "Energia"
|
|
1278
1411
|
|
|
1279
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1412
|
+
#: ../lib/hammer_cli_foreman/host.rb:175
|
|
1280
1413
|
msgid "Puppet run triggered"
|
|
1281
1414
|
msgstr "Execução de Puppet foi disparada"
|
|
1282
1415
|
|
|
1283
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1416
|
+
#: ../lib/hammer_cli_foreman/host.rb:228
|
|
1284
1417
|
msgid "Host created"
|
|
1285
1418
|
msgstr "Host foi criado"
|
|
1286
1419
|
|
|
1287
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1420
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
|
1288
1421
|
msgid "Could not create the host"
|
|
1289
1422
|
msgstr "Não foi possível criar o host"
|
|
1290
1423
|
|
|
1291
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1424
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
|
1292
1425
|
msgid "Host updated"
|
|
1293
1426
|
msgstr "Host atualizado"
|
|
1294
1427
|
|
|
1295
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1428
|
+
#: ../lib/hammer_cli_foreman/host.rb:248
|
|
1296
1429
|
msgid "Could not update the host"
|
|
1297
1430
|
msgstr "Não foi possível atualizar o host"
|
|
1298
1431
|
|
|
1299
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1432
|
+
#: ../lib/hammer_cli_foreman/host.rb:256
|
|
1300
1433
|
msgid "Host deleted"
|
|
1301
1434
|
msgstr "Host removido"
|
|
1302
1435
|
|
|
1303
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1436
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
1304
1437
|
msgid "Could not delete the host"
|
|
1305
1438
|
msgstr "Não foi possível remover o host"
|
|
1306
1439
|
|
|
1307
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1440
|
+
#: ../lib/hammer_cli_foreman/host.rb:264
|
|
1308
1441
|
msgid "Create or update parameter for a host."
|
|
1309
1442
|
msgstr "Criar ou atualizar o parâmetro para um hos."
|
|
1310
1443
|
|
|
1311
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1444
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
|
1312
1445
|
msgid "Host parameter updated"
|
|
1313
1446
|
msgstr "Host do parâmetro atualizado"
|
|
1314
1447
|
|
|
1315
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1448
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
|
1316
1449
|
msgid "New host parameter created"
|
|
1317
1450
|
msgstr "Novo parâmetro do host criado"
|
|
1318
1451
|
|
|
1319
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1452
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1320
1453
|
msgid "Could not set host parameter"
|
|
1321
1454
|
msgstr "Não foi possível definir parâmetro do host"
|
|
1322
1455
|
|
|
1323
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1456
|
+
#: ../lib/hammer_cli_foreman/host.rb:280
|
|
1324
1457
|
msgid "Delete parameter for a host."
|
|
1325
1458
|
msgstr "Remover parâmetro para um host."
|
|
1326
1459
|
|
|
1327
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1460
|
+
#: ../lib/hammer_cli_foreman/host.rb:282
|
|
1328
1461
|
msgid "Host parameter deleted"
|
|
1329
1462
|
msgstr "Parâmetro do host removido"
|
|
1330
1463
|
|
|
1331
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1464
|
+
#: ../lib/hammer_cli_foreman/host.rb:297
|
|
1332
1465
|
msgid "Power a host on"
|
|
1333
1466
|
msgstr "Ligar um host"
|
|
1334
1467
|
|
|
1335
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1468
|
+
#: ../lib/hammer_cli_foreman/host.rb:298
|
|
1336
1469
|
msgid "The host is starting."
|
|
1337
1470
|
msgstr "O host está iniciando"
|
|
1338
1471
|
|
|
1339
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1472
|
+
#: ../lib/hammer_cli_foreman/host.rb:315
|
|
1340
1473
|
msgid "Force turning off a host"
|
|
1341
1474
|
msgstr "Forçar desligar um host"
|
|
1342
1475
|
|
|
1343
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1476
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
|
1344
1477
|
msgid "Power a host off"
|
|
1345
1478
|
msgstr "Desligar um host"
|
|
1346
1479
|
|
|
1347
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1480
|
+
#: ../lib/hammer_cli_foreman/host.rb:332
|
|
1348
1481
|
msgid "Power off forced."
|
|
1349
1482
|
msgstr "Desligar forçado"
|
|
1350
1483
|
|
|
1351
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1484
|
+
#: ../lib/hammer_cli_foreman/host.rb:334
|
|
1352
1485
|
msgid "Powering the host off."
|
|
1353
1486
|
msgstr "Desligando o host."
|
|
1354
1487
|
|
|
1355
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1488
|
+
#: ../lib/hammer_cli_foreman/host.rb:351
|
|
1356
1489
|
msgid "Reboot a host"
|
|
1357
1490
|
msgstr "Reinicializar o host"
|
|
1358
1491
|
|
|
1359
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1492
|
+
#: ../lib/hammer_cli_foreman/host.rb:352
|
|
1360
1493
|
msgid "Host reboot started."
|
|
1361
1494
|
msgstr "Reinicialização do host iniciou."
|
|
1362
1495
|
|
|
1363
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1496
|
+
#: ../lib/hammer_cli_foreman/host.rb:388
|
|
1364
1497
|
msgid "Rebuild orchestration related configurations for host"
|
|
1365
1498
|
msgstr ""
|
|
1366
1499
|
|
|
1367
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1500
|
+
#: ../lib/hammer_cli_foreman/host.rb:389
|
|
1368
1501
|
msgid "Configuration successfully rebuilt."
|
|
1369
1502
|
msgstr ""
|
|
1370
1503
|
|
|
@@ -1406,7 +1539,7 @@ msgstr "ID do Puppet Master Proxy"
|
|
|
1406
1539
|
|
|
1407
1540
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:80
|
|
1408
1541
|
msgid "ComputeProfile"
|
|
1409
|
-
msgstr "Perfil
|
|
1542
|
+
msgstr "Perfil Computacional"
|
|
1410
1543
|
|
|
1411
1544
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:84
|
|
1412
1545
|
msgid "Parent Id"
|
|
@@ -1460,13 +1593,79 @@ msgstr "Remover parâmetro para um hostgroup"
|
|
|
1460
1593
|
msgid "Hostgroup parameter deleted"
|
|
1461
1594
|
msgstr "Parâmetro do hostgroup removido"
|
|
1462
1595
|
|
|
1596
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:6
|
|
1597
|
+
msgid "Available keys for %{option}"
|
|
1598
|
+
msgstr ""
|
|
1599
|
+
|
|
1600
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:16
|
|
1601
|
+
#, fuzzy
|
|
1602
|
+
msgid "%{value}, each managed hosts needs to have one primary interface."
|
|
1603
|
+
msgstr "Primário"
|
|
1604
|
+
|
|
1605
|
+
#: ../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
|
|
1606
|
+
msgid "For %{condition}"
|
|
1607
|
+
msgstr ""
|
|
1608
|
+
|
|
1609
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:22
|
|
1610
|
+
#, fuzzy
|
|
1611
|
+
msgid "VLAN tag, this attribute has precedence over the subnet VLAN ID. Only for virtual interfaces."
|
|
1612
|
+
msgstr "VLAN ID"
|
|
1613
|
+
|
|
1614
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:23
|
|
1615
|
+
#, fuzzy
|
|
1616
|
+
msgid "Identifier of the interface to which this interface belongs, e.g. eth1."
|
|
1617
|
+
msgstr "Identificador "
|
|
1618
|
+
|
|
1619
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:29
|
|
1620
|
+
#, fuzzy
|
|
1621
|
+
msgid "Identifiers of slave interfaces, e.g. [eth1,eth2]"
|
|
1622
|
+
msgstr "Identificador "
|
|
1623
|
+
|
|
1624
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:35
|
|
1625
|
+
#, fuzzy
|
|
1626
|
+
msgid "always IPMI"
|
|
1627
|
+
msgstr "IP"
|
|
1628
|
+
|
|
1629
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_help.rb:42
|
|
1630
|
+
#, fuzzy
|
|
1631
|
+
msgid "Provider specific options"
|
|
1632
|
+
msgstr "Provedor"
|
|
1633
|
+
|
|
1634
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:6
|
|
1635
|
+
msgid "Login of the owner"
|
|
1636
|
+
msgstr "Login do Proprietário"
|
|
1637
|
+
|
|
1638
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:8
|
|
1639
|
+
msgid "ID of the owner"
|
|
1640
|
+
msgstr "ID do Proprietário"
|
|
1641
|
+
|
|
1642
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:35
|
|
1643
|
+
msgid "Host parameters."
|
|
1644
|
+
msgstr "Parâmetros de host."
|
|
1645
|
+
|
|
1646
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:37
|
|
1647
|
+
msgid "Compute resource attributes."
|
|
1648
|
+
msgstr "Atributos de recurso de computação."
|
|
1649
|
+
|
|
1650
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:39
|
|
1651
|
+
msgid "Volume parameters"
|
|
1652
|
+
msgstr "Parâmetros de volume"
|
|
1653
|
+
|
|
1654
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:41
|
|
1655
|
+
msgid "Interface parameters."
|
|
1656
|
+
msgstr "Parâmetros de interface"
|
|
1657
|
+
|
|
1658
|
+
#: ../lib/hammer_cli_foreman/hosts/common_update_options.rb:55
|
|
1659
|
+
msgid "Enter the root password for the host:"
|
|
1660
|
+
msgstr "Entre a senha original para o host"
|
|
1661
|
+
|
|
1463
1662
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:36
|
|
1464
1663
|
msgid "Architecture name"
|
|
1465
1664
|
msgstr "Arquitetura de nome"
|
|
1466
1665
|
|
|
1467
1666
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:37
|
|
1468
1667
|
msgid "Compute resource name"
|
|
1469
|
-
msgstr "Nome de recurso de
|
|
1668
|
+
msgstr "Nome de recurso de computação"
|
|
1470
1669
|
|
|
1471
1670
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:38
|
|
1472
1671
|
msgid "Domain name"
|
|
@@ -1538,7 +1737,7 @@ msgstr "Nome da subrede"
|
|
|
1538
1737
|
|
|
1539
1738
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:60
|
|
1540
1739
|
msgid "User's login to search by"
|
|
1541
|
-
msgstr "Login de usuário a
|
|
1740
|
+
msgstr "Login de usuário a pesquisar"
|
|
1542
1741
|
|
|
1543
1742
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:61
|
|
1544
1743
|
msgid "Common parameter name"
|
|
@@ -1548,13 +1747,13 @@ msgstr "Nome do parâmetro comum"
|
|
|
1548
1747
|
msgid "Smart class parameter name"
|
|
1549
1748
|
msgstr "Nome de parâmetro de classe inteligente"
|
|
1550
1749
|
|
|
1551
|
-
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
1750
|
+
#: ../lib/hammer_cli_foreman/id_resolver.rb:63 ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
1552
1751
|
msgid "Smart variable name"
|
|
1553
1752
|
msgstr "Nome da variável inteligente"
|
|
1554
1753
|
|
|
1555
1754
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:65
|
|
1556
1755
|
msgid "Name to search by"
|
|
1557
|
-
msgstr "Nome a
|
|
1756
|
+
msgstr "Nome a pesquisar"
|
|
1558
1757
|
|
|
1559
1758
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:153 ../lib/hammer_cli_foreman/id_resolver.rb:161
|
|
1560
1759
|
msgid "one of %s not found"
|
|
@@ -1566,15 +1765,15 @@ msgstr "%s não foi encontrado"
|
|
|
1566
1765
|
|
|
1567
1766
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:209
|
|
1568
1767
|
msgid "found more than one %s"
|
|
1569
|
-
msgstr ""
|
|
1768
|
+
msgstr "foi localizado mais de um %s"
|
|
1570
1769
|
|
|
1571
1770
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:220
|
|
1572
1771
|
msgid "Missing options to search %s"
|
|
1573
|
-
msgstr "Opções
|
|
1772
|
+
msgstr "Opções ausentes para pesquisar %s "
|
|
1574
1773
|
|
|
1575
1774
|
#: ../lib/hammer_cli_foreman/image.rb:8
|
|
1576
1775
|
msgid "View and manage compute resource's images"
|
|
1577
|
-
msgstr "Visualizar e gerenciar
|
|
1776
|
+
msgstr "Visualizar e gerenciar as imagens de recurso de computação"
|
|
1578
1777
|
|
|
1579
1778
|
#: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
|
|
1580
1779
|
msgid "Username"
|
|
@@ -1706,7 +1905,7 @@ msgstr "Não foi possível excluir a interface"
|
|
|
1706
1905
|
|
|
1707
1906
|
#: ../lib/hammer_cli_foreman/location.rb:25 ../lib/hammer_cli_foreman/location.rb:64 ../lib/hammer_cli_foreman/location.rb:76
|
|
1708
1907
|
msgid "Location numeric id to search by"
|
|
1709
|
-
msgstr "ID
|
|
1908
|
+
msgstr "ID númerica da localização a pesquisar"
|
|
1710
1909
|
|
|
1711
1910
|
#: ../lib/hammer_cli_foreman/location.rb:28 ../lib/hammer_cli_foreman/organization.rb:28
|
|
1712
1911
|
msgid "Parent"
|
|
@@ -1718,55 +1917,55 @@ msgstr "Organizações"
|
|
|
1718
1917
|
|
|
1719
1918
|
#: ../lib/hammer_cli_foreman/location.rb:54
|
|
1720
1919
|
msgid "Location created"
|
|
1721
|
-
msgstr "
|
|
1920
|
+
msgstr "Localização criada"
|
|
1722
1921
|
|
|
1723
1922
|
#: ../lib/hammer_cli_foreman/location.rb:55
|
|
1724
1923
|
msgid "Could not create the location"
|
|
1725
|
-
msgstr "Não foi possível criar
|
|
1924
|
+
msgstr "Não foi possível criar a localização"
|
|
1726
1925
|
|
|
1727
1926
|
#: ../lib/hammer_cli_foreman/location.rb:66
|
|
1728
1927
|
msgid "Location updated"
|
|
1729
|
-
msgstr "
|
|
1928
|
+
msgstr "Localização atualizada"
|
|
1730
1929
|
|
|
1731
1930
|
#: ../lib/hammer_cli_foreman/location.rb:67
|
|
1732
1931
|
msgid "Could not update the location"
|
|
1733
|
-
msgstr "Não foi possível atualizar
|
|
1932
|
+
msgstr "Não foi possível atualizar a localização"
|
|
1734
1933
|
|
|
1735
1934
|
#: ../lib/hammer_cli_foreman/location.rb:78
|
|
1736
1935
|
msgid "Location deleted"
|
|
1737
|
-
msgstr "
|
|
1936
|
+
msgstr "Localização removida"
|
|
1738
1937
|
|
|
1739
1938
|
#: ../lib/hammer_cli_foreman/location.rb:79
|
|
1740
1939
|
msgid "Could not delete the location"
|
|
1741
|
-
msgstr "Não foi possível remover
|
|
1940
|
+
msgstr "Não foi possível remover a localização"
|
|
1742
1941
|
|
|
1743
1942
|
#: ../lib/hammer_cli_foreman/location.rb:88
|
|
1744
1943
|
msgid "Create or update parameter for a location."
|
|
1745
|
-
msgstr ""
|
|
1944
|
+
msgstr "Criar ou atualizar parâmetros para uma localização. "
|
|
1746
1945
|
|
|
1747
1946
|
#: ../lib/hammer_cli_foreman/location.rb:90 ../lib/hammer_cli_foreman/organization.rb:91
|
|
1748
1947
|
msgid "Parameter [%{name}] updated to value [%{value}]"
|
|
1749
|
-
msgstr ""
|
|
1948
|
+
msgstr "Parâmetro [%{name}] atualizado para o valor [%{value}]"
|
|
1750
1949
|
|
|
1751
1950
|
#: ../lib/hammer_cli_foreman/location.rb:91 ../lib/hammer_cli_foreman/organization.rb:92
|
|
1752
1951
|
msgid "Parameter [%{name}] created with value [%{value}]"
|
|
1753
|
-
msgstr ""
|
|
1952
|
+
msgstr "Parâmetro [%{name}] criado com o valor [%{value}]"
|
|
1754
1953
|
|
|
1755
1954
|
#: ../lib/hammer_cli_foreman/location.rb:92
|
|
1756
1955
|
msgid "Could not set location parameter"
|
|
1757
|
-
msgstr ""
|
|
1956
|
+
msgstr "Não foi possível definir parâmetro de localização"
|
|
1758
1957
|
|
|
1759
1958
|
#: ../lib/hammer_cli_foreman/location.rb:99
|
|
1760
1959
|
msgid "Delete parameter for a location."
|
|
1761
|
-
msgstr ""
|
|
1960
|
+
msgstr "Remover parâmetro para uma localização. "
|
|
1762
1961
|
|
|
1763
1962
|
#: ../lib/hammer_cli_foreman/location.rb:101 ../lib/hammer_cli_foreman/organization.rb:102
|
|
1764
1963
|
msgid "Parameter [%{name}] deleted"
|
|
1765
|
-
msgstr ""
|
|
1964
|
+
msgstr "Parâmetro [%{name}] removido"
|
|
1766
1965
|
|
|
1767
1966
|
#: ../lib/hammer_cli_foreman/location.rb:102
|
|
1768
1967
|
msgid "Could not delete location parameter"
|
|
1769
|
-
msgstr ""
|
|
1968
|
+
msgstr "Não foi possível remover os parâmetros da localização "
|
|
1770
1969
|
|
|
1771
1970
|
#: ../lib/hammer_cli_foreman/media.rb:11
|
|
1772
1971
|
msgid "Path"
|
|
@@ -1786,19 +1985,19 @@ msgstr "Não foi possível criar um meio de instalação"
|
|
|
1786
1985
|
|
|
1787
1986
|
#: ../lib/hammer_cli_foreman/media.rb:41
|
|
1788
1987
|
msgid "Installation medium updated"
|
|
1789
|
-
msgstr "
|
|
1988
|
+
msgstr "Mídia de instalação atualizada"
|
|
1790
1989
|
|
|
1791
1990
|
#: ../lib/hammer_cli_foreman/media.rb:42
|
|
1792
1991
|
msgid "Could not update the installation media"
|
|
1793
|
-
msgstr "Não foi possível atualizar
|
|
1992
|
+
msgstr "Não foi possível atualizar a mídia de instalação"
|
|
1794
1993
|
|
|
1795
1994
|
#: ../lib/hammer_cli_foreman/media.rb:50
|
|
1796
1995
|
msgid "Installation medium deleted"
|
|
1797
|
-
msgstr "
|
|
1996
|
+
msgstr "Mídia de instalação removida"
|
|
1798
1997
|
|
|
1799
1998
|
#: ../lib/hammer_cli_foreman/media.rb:51
|
|
1800
1999
|
msgid "Could not delete the installation media"
|
|
1801
|
-
msgstr "Não foi possível remover
|
|
2000
|
+
msgstr "Não foi possível remover a mídia de instalação"
|
|
1802
2001
|
|
|
1803
2002
|
#: ../lib/hammer_cli_foreman/model.rb:12
|
|
1804
2003
|
msgid "Vendor class"
|
|
@@ -1974,19 +2173,19 @@ msgstr "Não foi possível remover a organização"
|
|
|
1974
2173
|
|
|
1975
2174
|
#: ../lib/hammer_cli_foreman/organization.rb:89
|
|
1976
2175
|
msgid "Create or update parameter for an organization."
|
|
1977
|
-
msgstr ""
|
|
2176
|
+
msgstr "Criar ou atualizar parâmetros para uma organização."
|
|
1978
2177
|
|
|
1979
2178
|
#: ../lib/hammer_cli_foreman/organization.rb:93
|
|
1980
2179
|
msgid "Could not set organization parameter"
|
|
1981
|
-
msgstr ""
|
|
2180
|
+
msgstr "Não foi possível definir os parâmetros da organização "
|
|
1982
2181
|
|
|
1983
2182
|
#: ../lib/hammer_cli_foreman/organization.rb:100
|
|
1984
2183
|
msgid "Delete parameter for an organization."
|
|
1985
|
-
msgstr ""
|
|
2184
|
+
msgstr "Remover parâmetros para uma organização."
|
|
1986
2185
|
|
|
1987
2186
|
#: ../lib/hammer_cli_foreman/organization.rb:103
|
|
1988
2187
|
msgid "Could not delete organization parameter"
|
|
1989
|
-
msgstr ""
|
|
2188
|
+
msgstr "Não foi possível remover os parâmetros da organização "
|
|
1990
2189
|
|
|
1991
2190
|
#: ../lib/hammer_cli_foreman/partition_table.rb:21 ../lib/hammer_cli_foreman/template.rb:48
|
|
1992
2191
|
msgid "Locked"
|
|
@@ -2038,7 +2237,7 @@ msgstr "Valor padrão"
|
|
|
2038
2237
|
|
|
2039
2238
|
#: ../lib/hammer_cli_foreman/puppet_class.rb:38
|
|
2040
2239
|
msgid "Smart class parameters"
|
|
2041
|
-
msgstr "
|
|
2240
|
+
msgstr "Parâmetros de classe inteligentes"
|
|
2042
2241
|
|
|
2043
2242
|
#: ../lib/hammer_cli_foreman/realm.rb:18
|
|
2044
2243
|
msgid "Realm proxy id"
|
|
@@ -2094,55 +2293,65 @@ msgstr "Usuários"
|
|
|
2094
2293
|
msgid "User groups"
|
|
2095
2294
|
msgstr "Grupos de usuários"
|
|
2096
2295
|
|
|
2097
|
-
#: ../lib/hammer_cli_foreman/references.rb:42
|
|
2296
|
+
#: ../lib/hammer_cli_foreman/references.rb:35 ../lib/hammer_cli_foreman/references.rb:42
|
|
2297
|
+
#, fuzzy
|
|
2298
|
+
msgid "Usergroup"
|
|
2299
|
+
msgstr "Grupos de usuários"
|
|
2300
|
+
|
|
2301
|
+
#: ../lib/hammer_cli_foreman/references.rb:37 ../lib/hammer_cli_foreman/references.rb:44 ../lib/hammer_cli_foreman/references.rb:142
|
|
2302
|
+
msgid "Roles"
|
|
2303
|
+
msgstr "Papéis"
|
|
2304
|
+
|
|
2305
|
+
#: ../lib/hammer_cli_foreman/references.rb:41
|
|
2306
|
+
#, fuzzy
|
|
2307
|
+
msgid "Inherited User groups"
|
|
2308
|
+
msgstr "Grupos de usuários"
|
|
2309
|
+
|
|
2310
|
+
#: ../lib/hammer_cli_foreman/references.rb:53
|
|
2098
2311
|
msgid "Smart proxies"
|
|
2099
2312
|
msgstr "Proxies Inteligentes"
|
|
2100
2313
|
|
|
2101
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2314
|
+
#: ../lib/hammer_cli_foreman/references.rb:61
|
|
2102
2315
|
msgid "Compute resources"
|
|
2103
|
-
msgstr "
|
|
2316
|
+
msgstr "Recursos de computação"
|
|
2104
2317
|
|
|
2105
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2318
|
+
#: ../lib/hammer_cli_foreman/references.rb:69
|
|
2106
2319
|
msgid "Installation media"
|
|
2107
|
-
msgstr "
|
|
2320
|
+
msgstr "Mídia de instalação"
|
|
2108
2321
|
|
|
2109
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2322
|
+
#: ../lib/hammer_cli_foreman/references.rb:77
|
|
2110
2323
|
msgid "Templates"
|
|
2111
2324
|
msgstr "Modelos"
|
|
2112
2325
|
|
|
2113
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2326
|
+
#: ../lib/hammer_cli_foreman/references.rb:85
|
|
2114
2327
|
msgid "Domains"
|
|
2115
2328
|
msgstr "Domínios"
|
|
2116
2329
|
|
|
2117
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2330
|
+
#: ../lib/hammer_cli_foreman/references.rb:93
|
|
2118
2331
|
msgid "Environments"
|
|
2119
2332
|
msgstr "Ambientes"
|
|
2120
2333
|
|
|
2121
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2334
|
+
#: ../lib/hammer_cli_foreman/references.rb:101
|
|
2122
2335
|
msgid "Hostgroups"
|
|
2123
2336
|
msgstr "Hostgroups"
|
|
2124
2337
|
|
|
2125
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2338
|
+
#: ../lib/hammer_cli_foreman/references.rb:109
|
|
2126
2339
|
msgid "Subnets"
|
|
2127
2340
|
msgstr "Subredes"
|
|
2128
2341
|
|
|
2129
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2342
|
+
#: ../lib/hammer_cli_foreman/references.rb:118
|
|
2130
2343
|
msgid "Parameters"
|
|
2131
2344
|
msgstr "Parâmetros"
|
|
2132
2345
|
|
|
2133
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2346
|
+
#: ../lib/hammer_cli_foreman/references.rb:126
|
|
2134
2347
|
msgid "Puppetclasses"
|
|
2135
2348
|
msgstr "Puppetclasses"
|
|
2136
2349
|
|
|
2137
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2350
|
+
#: ../lib/hammer_cli_foreman/references.rb:134
|
|
2138
2351
|
msgid "Operating systems"
|
|
2139
2352
|
msgstr "Sistema Operacional"
|
|
2140
2353
|
|
|
2141
|
-
#: ../lib/hammer_cli_foreman/references.rb:
|
|
2142
|
-
msgid "Roles"
|
|
2143
|
-
msgstr "Papéis"
|
|
2144
|
-
|
|
2145
|
-
#: ../lib/hammer_cli_foreman/references.rb:139
|
|
2354
|
+
#: ../lib/hammer_cli_foreman/references.rb:150
|
|
2146
2355
|
msgid "External user groups"
|
|
2147
2356
|
msgstr "Grupos de usuários externos"
|
|
2148
2357
|
|
|
@@ -2242,43 +2451,35 @@ msgstr "Não foi possível remover o relatório"
|
|
|
2242
2451
|
msgid "The server does not support such operation."
|
|
2243
2452
|
msgstr "O servidor não suporta tal operação"
|
|
2244
2453
|
|
|
2245
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2454
|
+
#: ../lib/hammer_cli_foreman/role.rb:13
|
|
2246
2455
|
msgid "Builtin"
|
|
2247
|
-
msgstr ""
|
|
2248
|
-
|
|
2249
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2250
|
-
msgid "Yes"
|
|
2251
|
-
msgstr "Sim"
|
|
2252
|
-
|
|
2253
|
-
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2254
|
-
msgid "No"
|
|
2255
|
-
msgstr "Não "
|
|
2456
|
+
msgstr "Embutido"
|
|
2256
2457
|
|
|
2257
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2458
|
+
#: ../lib/hammer_cli_foreman/role.rb:32
|
|
2258
2459
|
msgid "User role id"
|
|
2259
2460
|
msgstr "ID da função de usuário"
|
|
2260
2461
|
|
|
2261
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2462
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
|
2262
2463
|
msgid "User role [%<name>s] created"
|
|
2263
2464
|
msgstr "Função de usuário [%<name>s] criada"
|
|
2264
2465
|
|
|
2265
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2466
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
|
2266
2467
|
msgid "Could not create the user role"
|
|
2267
2468
|
msgstr "Não foi possível criar função de usuário"
|
|
2268
2469
|
|
|
2269
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2470
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
|
2270
2471
|
msgid "User role [%<name>s] updated"
|
|
2271
2472
|
msgstr "Função de usuário [%<name>s] atualizada"
|
|
2272
2473
|
|
|
2273
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2474
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
|
2274
2475
|
msgid "Could not update the user role"
|
|
2275
2476
|
msgstr "Não foi possível atualizar a função de usuário"
|
|
2276
2477
|
|
|
2277
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2478
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
|
2278
2479
|
msgid "User role [%<name>s] deleted"
|
|
2279
2480
|
msgstr "Função de usuário [%<name>s] removida"
|
|
2280
2481
|
|
|
2281
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
|
2482
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
|
2282
2483
|
msgid "Could not delete the user roles"
|
|
2283
2484
|
msgstr "Não foi possível remover funções de usuário"
|
|
2284
2485
|
|
|
@@ -2310,7 +2511,7 @@ msgstr "ID da Classe"
|
|
|
2310
2511
|
msgid "Hidden Value?"
|
|
2311
2512
|
msgstr ""
|
|
2312
2513
|
|
|
2313
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2514
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:79
|
|
2314
2515
|
#, fuzzy
|
|
2315
2516
|
msgid "Use puppet default"
|
|
2316
2517
|
msgstr "padrão"
|
|
@@ -2347,11 +2548,11 @@ msgstr "Evitar duplicações"
|
|
|
2347
2548
|
msgid "Order"
|
|
2348
2549
|
msgstr "Ordem"
|
|
2349
2550
|
|
|
2350
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2551
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
|
|
2351
2552
|
msgid "Values"
|
|
2352
2553
|
msgstr "Valores"
|
|
2353
2554
|
|
|
2354
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:
|
|
2555
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:67
|
|
2355
2556
|
msgid "Match"
|
|
2356
2557
|
msgstr "Combinar"
|
|
2357
2558
|
|
|
@@ -2375,29 +2576,27 @@ msgstr "Este parâmetro é necessário"
|
|
|
2375
2576
|
msgid "Type of the parameter."
|
|
2376
2577
|
msgstr "Tipo de parâmetro"
|
|
2377
2578
|
|
|
2378
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:120 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2579
|
+
#: ../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
|
|
2379
2580
|
msgid "Type of the validator."
|
|
2380
2581
|
msgstr "Tipo de validador."
|
|
2381
2582
|
|
|
2382
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2583
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:134 ../lib/hammer_cli_foreman/smart_variable.rb:125
|
|
2383
2584
|
msgid "Override value created"
|
|
2384
2585
|
msgstr "Substituir valor criado"
|
|
2385
2586
|
|
|
2386
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2387
|
-
#, fuzzy
|
|
2587
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:135 ../lib/hammer_cli_foreman/smart_variable.rb:126
|
|
2388
2588
|
msgid "Could not create the override value"
|
|
2389
|
-
msgstr "
|
|
2589
|
+
msgstr ""
|
|
2390
2590
|
|
|
2391
2591
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:145
|
|
2392
|
-
#, fuzzy
|
|
2393
2592
|
msgid "Cannot use --value when --use-puppet-default is true"
|
|
2394
|
-
msgstr "
|
|
2593
|
+
msgstr ""
|
|
2395
2594
|
|
|
2396
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2595
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:158 ../lib/hammer_cli_foreman/smart_variable.rb:138
|
|
2397
2596
|
msgid "Override value deleted"
|
|
2398
2597
|
msgstr "Valor substituto excluído"
|
|
2399
2598
|
|
|
2400
|
-
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2599
|
+
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:159 ../lib/hammer_cli_foreman/smart_variable.rb:139
|
|
2401
2600
|
msgid "Could not delete the override value"
|
|
2402
2601
|
msgstr "Não foi possível excluir o valor substituto"
|
|
2403
2602
|
|
|
@@ -2447,7 +2646,7 @@ msgstr "Não execute a importação"
|
|
|
2447
2646
|
|
|
2448
2647
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:92
|
|
2449
2648
|
msgid "Smart proxy features were refreshed"
|
|
2450
|
-
msgstr "Recursos de proxy
|
|
2649
|
+
msgstr "Recursos de proxy inteligente atualizados"
|
|
2451
2650
|
|
|
2452
2651
|
#: ../lib/hammer_cli_foreman/smart_proxy.rb:93
|
|
2453
2652
|
msgid "Refresh of smart proxy features failed"
|
|
@@ -2457,37 +2656,37 @@ msgstr "Falha ao atualizar os recursos do proxy inteligente "
|
|
|
2457
2656
|
msgid "Variable"
|
|
2458
2657
|
msgstr ""
|
|
2459
2658
|
|
|
2460
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2659
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:50 ../lib/hammer_cli_foreman/smart_variable.rb:112
|
|
2461
2660
|
msgid "Use --variable instead"
|
|
2462
2661
|
msgstr ""
|
|
2463
2662
|
|
|
2464
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2663
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:84
|
|
2465
2664
|
msgid "Smart variable [%{variable}] created"
|
|
2466
|
-
msgstr "Variável inteligente [%{
|
|
2665
|
+
msgstr "Variável inteligente [%{variable}] criada"
|
|
2467
2666
|
|
|
2468
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2667
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:85
|
|
2469
2668
|
msgid "Could not create the smart variable"
|
|
2470
2669
|
msgstr "Não foi possível criar uma variável inteligente"
|
|
2471
2670
|
|
|
2472
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2671
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
|
|
2473
2672
|
msgid "Type of the variable."
|
|
2474
2673
|
msgstr "Tipo de variável"
|
|
2475
2674
|
|
|
2476
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2675
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:98
|
|
2477
2676
|
msgid "Smart variable [%{variable}] updated"
|
|
2478
|
-
msgstr "Variável inteligente [%{
|
|
2677
|
+
msgstr "Variável inteligente [%{variable}] atualizada"
|
|
2479
2678
|
|
|
2480
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2679
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:99
|
|
2481
2680
|
msgid "Could not update the smart variable"
|
|
2482
2681
|
msgstr "Não foi possível atualizar a variável inteligente"
|
|
2483
2682
|
|
|
2484
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2683
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:114
|
|
2485
2684
|
msgid "Smart variable [%{variable}] deleted"
|
|
2486
|
-
msgstr "Variável inteligente [%{
|
|
2685
|
+
msgstr "Variável inteligente [%{variable}] removida"
|
|
2487
2686
|
|
|
2488
|
-
#: ../lib/hammer_cli_foreman/smart_variable.rb:
|
|
2687
|
+
#: ../lib/hammer_cli_foreman/smart_variable.rb:115
|
|
2489
2688
|
msgid "Could not delete the smart variable"
|
|
2490
|
-
msgstr "Não foi possível
|
|
2689
|
+
msgstr "Não foi possível remover a variável inteligente"
|
|
2491
2690
|
|
|
2492
2691
|
#: ../lib/hammer_cli_foreman/subnet.rb:13
|
|
2493
2692
|
msgid "Mask"
|
|
@@ -2606,14 +2805,12 @@ msgid "Update the default PXE menu on all configured TFTP servers"
|
|
|
2606
2805
|
msgstr "Atualizado o menu padrão PXE e todas as configurações TFTP dos servidores"
|
|
2607
2806
|
|
|
2608
2807
|
#: ../lib/hammer_cli_foreman/template.rb:164
|
|
2609
|
-
#, fuzzy
|
|
2610
2808
|
msgid "Config template cloned"
|
|
2611
|
-
msgstr "
|
|
2809
|
+
msgstr ""
|
|
2612
2810
|
|
|
2613
2811
|
#: ../lib/hammer_cli_foreman/template.rb:165
|
|
2614
|
-
#, fuzzy
|
|
2615
2812
|
msgid "Could not clone the config template"
|
|
2616
|
-
msgstr "
|
|
2813
|
+
msgstr ""
|
|
2617
2814
|
|
|
2618
2815
|
#: ../lib/hammer_cli_foreman/user.rb:11
|
|
2619
2816
|
msgid "Login"
|
|
@@ -2647,39 +2844,39 @@ msgstr "Fuso horário"
|
|
|
2647
2844
|
msgid "Last login"
|
|
2648
2845
|
msgstr "Último Login em"
|
|
2649
2846
|
|
|
2650
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2847
|
+
#: ../lib/hammer_cli_foreman/user.rb:35
|
|
2651
2848
|
msgid "Default organization"
|
|
2652
2849
|
msgstr "Organização padrão"
|
|
2653
2850
|
|
|
2654
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2851
|
+
#: ../lib/hammer_cli_foreman/user.rb:36
|
|
2655
2852
|
msgid "Default location"
|
|
2656
2853
|
msgstr "Localização padrão"
|
|
2657
2854
|
|
|
2658
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2855
|
+
#: ../lib/hammer_cli_foreman/user.rb:44 ../lib/hammer_cli_foreman/user.rb:45
|
|
2659
2856
|
msgid "default"
|
|
2660
2857
|
msgstr "padrão"
|
|
2661
2858
|
|
|
2662
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2859
|
+
#: ../lib/hammer_cli_foreman/user.rb:56
|
|
2663
2860
|
msgid "User [%{login}] created"
|
|
2664
2861
|
msgstr "Usuário [%{login}] criado"
|
|
2665
2862
|
|
|
2666
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2863
|
+
#: ../lib/hammer_cli_foreman/user.rb:57
|
|
2667
2864
|
msgid "Could not create the user"
|
|
2668
2865
|
msgstr "Não foi possível criar usuário"
|
|
2669
2866
|
|
|
2670
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2867
|
+
#: ../lib/hammer_cli_foreman/user.rb:64
|
|
2671
2868
|
msgid "User [%{login}] updated"
|
|
2672
2869
|
msgstr "Usuário [%{login}] atualizado"
|
|
2673
2870
|
|
|
2674
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2871
|
+
#: ../lib/hammer_cli_foreman/user.rb:65
|
|
2675
2872
|
msgid "Could not update the user"
|
|
2676
2873
|
msgstr "Não foi possível atualizar usuário"
|
|
2677
2874
|
|
|
2678
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2875
|
+
#: ../lib/hammer_cli_foreman/user.rb:72
|
|
2679
2876
|
msgid "User [%{login}] deleted"
|
|
2680
2877
|
msgstr "Usuário [%{login}] excluido"
|
|
2681
2878
|
|
|
2682
|
-
#: ../lib/hammer_cli_foreman/user.rb:
|
|
2879
|
+
#: ../lib/hammer_cli_foreman/user.rb:73
|
|
2683
2880
|
msgid "Could not delete the user"
|
|
2684
2881
|
msgstr "Não foi possível remover usuário"
|
|
2685
2882
|
|
|
@@ -2707,15 +2904,18 @@ msgstr "Grupo de usuário [%<name>s] removido"
|
|
|
2707
2904
|
msgid "Could not delete the user group"
|
|
2708
2905
|
msgstr "Não foi possível remover o grupo de usuário"
|
|
2709
2906
|
|
|
2710
|
-
#: ../lib/hammer_cli_foreman/
|
|
2711
|
-
#~ msgid "
|
|
2712
|
-
#~
|
|
2907
|
+
#: ../lib/hammer_cli_foreman/auth.rb:39
|
|
2908
|
+
#~ msgid ""
|
|
2909
|
+
#~ "You are currently not logged in to any service.\n"
|
|
2910
|
+
#~ "Use the service to set credentials."
|
|
2911
|
+
#~ msgstr ""
|
|
2912
|
+
#~ "No momento você não esta logado em nenhum serviço. \n"
|
|
2913
|
+
#~ "Usar o serviço para definir credenciais."
|
|
2713
2914
|
|
|
2714
|
-
#: ../lib/hammer_cli_foreman/
|
|
2715
|
-
#~ msgid "
|
|
2716
|
-
#~ msgstr "
|
|
2915
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2916
|
+
#~ msgid "Yes"
|
|
2917
|
+
#~ msgstr "Sim"
|
|
2717
2918
|
|
|
2718
|
-
#: ../lib/hammer_cli_foreman/
|
|
2719
|
-
|
|
2720
|
-
#~
|
|
2721
|
-
#~ msgstr "Não foi possível criar um valor_substituto"
|
|
2919
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
|
2920
|
+
#~ msgid "No"
|
|
2921
|
+
#~ msgstr "Não "
|