foreman_discovery 3.0.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/controllers/api/v2/discovered_hosts_controller.rb +31 -11
  4. data/app/controllers/api/v2/discovery_rules_controller.rb +8 -16
  5. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +47 -2
  6. data/app/controllers/discovered_hosts_controller.rb +30 -55
  7. data/app/controllers/discovery_rules_controller.rb +2 -4
  8. data/app/helpers/discovered_hosts_helper.rb +27 -5
  9. data/app/lib/facter_utils.rb +18 -0
  10. data/app/lib/puppet_fact_parser_extensions.rb +18 -32
  11. data/app/models/discovery_rule.rb +33 -2
  12. data/app/models/host/discovered.rb +47 -61
  13. data/app/models/host/managed_extensions.rb +12 -3
  14. data/app/models/setting/discovered.rb +18 -6
  15. data/app/services/foreman_discovery/host_converter.rb +22 -0
  16. data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
  17. data/app/views/api/v2/discovery_rules/main.json.rabl +6 -1
  18. data/app/views/api/v2/discovery_rules/show.json.rabl +4 -0
  19. data/app/views/dashboard/_discovery_widget.html.erb +6 -4
  20. data/app/views/dashboard/_discovery_widget_host.html.erb +4 -0
  21. data/app/views/dashboard/_discovery_widget_host_list.html.erb +2 -3
  22. data/app/views/discovered_hosts/_discovered_host.html.erb +3 -5
  23. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +7 -7
  24. data/app/views/discovered_hosts/index.html.erb +1 -0
  25. data/app/views/discovery_rules/_form.html.erb +51 -32
  26. data/config/routes.rb +4 -4
  27. data/db/migrate/20150310153859_remove_discovery_attribute_sets_from_managed_hosts.rb +8 -0
  28. data/db/migrate/20150331132115_remove_old_permissions.rb +16 -0
  29. data/db/migrate/20150505111345_remove_leftover_tokens.rb +13 -0
  30. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +10 -0
  31. data/db/migrate/20150714144500_review_discovery_permissions.rb +17 -0
  32. data/lib/foreman_discovery/engine.rb +46 -16
  33. data/lib/foreman_discovery/version.rb +1 -1
  34. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/de/foreman_discovery.po +74 -72
  36. data/locale/de/foreman_discovery.pox +40 -0
  37. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/en_GB/foreman_discovery.po +90 -88
  39. data/locale/en_GB/foreman_discovery.pox +0 -0
  40. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/es/foreman_discovery.po +3 -3
  42. data/locale/es/foreman_discovery.pox +41 -0
  43. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/fr/foreman_discovery.po +3 -3
  45. data/locale/fr/foreman_discovery.pox +69 -0
  46. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/gl/foreman_discovery.po +3 -3
  48. data/locale/gl/foreman_discovery.pox +21 -0
  49. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  50. data/locale/it/foreman_discovery.po +3 -3
  51. data/locale/it/foreman_discovery.pox +0 -0
  52. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/ja/foreman_discovery.po +67 -66
  54. data/locale/ja/foreman_discovery.pox +29 -0
  55. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ko/foreman_discovery.po +3 -3
  57. data/locale/ko/foreman_discovery.pox +189 -0
  58. data/locale/messages.mo +0 -0
  59. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/pt_BR/foreman_discovery.po +7 -7
  61. data/locale/pt_BR/foreman_discovery.pox +0 -0
  62. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/ru/foreman_discovery.po +98 -96
  64. data/locale/ru/foreman_discovery.pox +0 -0
  65. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/sv_SE/foreman_discovery.po +3 -3
  67. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/zh_CN/foreman_discovery.po +3 -3
  69. data/locale/zh_CN/foreman_discovery.pox +33 -0
  70. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/zh_TW/foreman_discovery.po +3 -3
  72. data/locale/zh_TW/foreman_discovery.pox +23 -0
  73. data/test/functional/api/v2/discovered_hosts_controller_test.rb +45 -7
  74. data/test/functional/discovered_hosts_controller_test.rb +52 -11
  75. data/test/unit/discovered_extensions_test.rb +40 -17
  76. data/test/unit/discovery_rule_test.rb +59 -0
  77. data/test/unit/host_discovered_test.rb +69 -6
  78. data/test/unit/puppet_fact_parser_extensions_test.rb +55 -40
  79. metadata +103 -81
  80. data/app/services/host_converter.rb +0 -30
@@ -3,14 +3,15 @@
3
3
  # This file is distributed under the same license as the foreman package.
4
4
  #
5
5
  # Translators:
6
+ # Shuji Yamada <uzy.exe@gmail.com>, 2015
6
7
  msgid ""
7
8
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
9
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
9
10
  "Report-Msgid-Bugs-To: \n"
10
11
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
11
- "PO-Revision-Date: 2015-01-30 11:12+0000\n"
12
- "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Japanese (http://www.transifex.com/projects/p/foreman/language/ja/)\n"
12
+ "PO-Revision-Date: 2015-04-05 12:23+0000\n"
13
+ "Last-Translator: Shuji Yamada <uzy.exe@gmail.com>\n"
14
+ "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/)\n"
14
15
  "MIME-Version: 1.0\n"
15
16
  "Content-Type: text/plain; charset=UTF-8\n"
16
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -33,15 +34,15 @@ msgid "Assign Organization"
33
34
  msgstr "組織の割り当て"
34
35
 
35
36
  msgid "Auto Provision"
36
- msgstr ""
37
+ msgstr "自動プロビジョン"
37
38
 
38
39
  msgid "Auto Provision All"
39
- msgstr ""
40
+ msgstr "全自動プロビジョン"
40
41
 
41
42
  msgid ""
42
43
  "Automatically provision newly discovered hosts, according to the "
43
44
  "provisioning rules"
44
- msgstr ""
45
+ msgstr "プロビジョニングルールに従って、新しく発見されたホストを自動プロビジョニングする"
45
46
 
46
47
  msgid "CPUs"
47
48
  msgstr "CPU"
@@ -50,13 +51,13 @@ msgid "Cancel"
50
51
  msgstr "取り消し"
51
52
 
52
53
  msgid "Could not get facts from proxy %{url}: %{error}"
53
- msgstr ""
54
+ msgstr "プロキシーからファクトを取得できませんでした: %{url}: %{error}"
54
55
 
55
56
  msgid "Create a discovered host"
56
- msgstr ""
57
+ msgstr "検出されたホストを作成します"
57
58
 
58
59
  msgid "Create a discovery rule"
59
- msgstr ""
60
+ msgstr "検出ルールを作成します"
60
61
 
61
62
  msgid "Delete"
62
63
  msgstr "削除"
@@ -65,10 +66,10 @@ msgid "Delete %s?"
65
66
  msgstr "%s を削除しますか?"
66
67
 
67
68
  msgid "Delete a discovered host"
68
- msgstr ""
69
+ msgstr "検出されたホストの削除"
69
70
 
70
71
  msgid "Delete a rule"
71
- msgstr ""
72
+ msgstr "ルールの削除"
72
73
 
73
74
  msgid "Delete hosts"
74
75
  msgstr "ホストの削除"
@@ -77,13 +78,13 @@ msgid "Destroyed selected hosts"
77
78
  msgstr "破棄された選択ホスト"
78
79
 
79
80
  msgid "Disable"
80
- msgstr ""
81
+ msgstr "無効"
81
82
 
82
83
  msgid "Disable rule?"
83
- msgstr ""
84
+ msgstr "ルールを無効にしますか?"
84
85
 
85
86
  msgid "Discovered Host Pool"
86
- msgstr ""
87
+ msgstr "検出されたホストのプール"
87
88
 
88
89
  msgid "Discovered host: %s"
89
90
  msgstr "検出されたホスト: %s"
@@ -92,34 +93,34 @@ msgid "Discovered hosts"
92
93
  msgstr "検出されたホスト"
93
94
 
94
95
  msgid "Discovered hosts are provisioning now"
95
- msgstr ""
96
+ msgstr "現在、検出されたホストはプロビジョニング中です"
96
97
 
97
98
  msgid "Discovery Rules"
98
- msgstr ""
99
+ msgstr "検出ルール"
99
100
 
100
101
  msgid "Discovery rules"
101
- msgstr ""
102
+ msgstr "検出ルール"
102
103
 
103
104
  msgid "Discovery widget"
104
- msgstr ""
105
+ msgstr "検出ウィジット"
105
106
 
106
107
  msgid "DiscoveryRule|Enabled"
107
- msgstr ""
108
+ msgstr "有効"
108
109
 
109
110
  msgid "DiscoveryRule|Name"
110
- msgstr ""
111
+ msgstr "名前"
111
112
 
112
113
  msgid "DiscoveryRule|Priority"
113
- msgstr ""
114
+ msgstr "優先度"
114
115
 
115
116
  msgid "DiscoveryRule|Query"
116
- msgstr ""
117
+ msgstr "クエリ"
117
118
 
118
119
  msgid "Disk count"
119
- msgstr ""
120
+ msgstr "ディスク数"
120
121
 
121
122
  msgid "Disks size"
122
- msgstr ""
123
+ msgstr "ディスク容量"
123
124
 
124
125
  msgid ""
125
126
  "Domain will be appended automatically. A hostname based on MAC address will "
@@ -128,22 +129,22 @@ msgid ""
128
129
  msgstr ""
129
130
 
130
131
  msgid "Edit Discovery Rule"
131
- msgstr ""
132
+ msgstr "検出ルールの編集"
132
133
 
133
134
  msgid "Enable"
134
- msgstr ""
135
+ msgstr "有効化"
135
136
 
136
137
  msgid "Enable rule?"
137
- msgstr ""
138
+ msgstr "ルールを有効化しますか?"
138
139
 
139
140
  msgid "Errors during auto provisioning: %s"
140
- msgstr ""
141
+ msgstr "自動プロビジョニング中のエラー: %s"
141
142
 
142
143
  msgid "Execute rules against a discovered host"
143
- msgstr ""
144
+ msgstr "検出されたホストに対してルールを実行"
144
145
 
145
146
  msgid "Execute rules against all currently discovered hosts"
146
- msgstr ""
147
+ msgstr "すべての検出されているホストに対してルールを実行"
147
148
 
148
149
  msgid "Fact"
149
150
  msgstr "ファクト"
@@ -155,16 +156,16 @@ msgid "Facts refreshed for %s"
155
156
  msgstr "%s について更新されたファクト"
156
157
 
157
158
  msgid "Failed to auto provision host %s: %s"
158
- msgstr ""
159
+ msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
159
160
 
160
161
  msgid "Failed to import facts for discovered host"
161
- msgstr ""
162
+ msgstr "検出されたホストのファクトをインポートできませんでした"
162
163
 
163
164
  msgid "Failed to import facts for discovered host: %s"
164
165
  msgstr ""
165
166
 
166
167
  msgid "Failed to reboot host %s"
167
- msgstr ""
168
+ msgstr "ホスト %s の再起動に失敗しました"
168
169
 
169
170
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
170
171
  msgstr ""
@@ -182,28 +183,28 @@ msgid "Host group"
182
183
  msgstr "ホストグループ"
183
184
 
184
185
  msgid "Host of type %s can not be rebooted"
185
- msgstr ""
186
+ msgstr "タイプ %s のホストを再起動することができません"
186
187
 
187
188
  msgid "Hostname for provisioned hosts"
188
- msgstr ""
189
+ msgstr "プロビジョニングホストのホスト名"
189
190
 
190
191
  msgid "Hosts limit"
191
- msgstr ""
192
+ msgstr "ホストの制限"
192
193
 
193
194
  msgid "Hosts/limit"
194
- msgstr ""
195
+ msgstr "ホスト/制限"
195
196
 
196
197
  msgid "IP Address"
197
198
  msgstr "IP アドレス"
198
199
 
199
200
  msgid "Imported discovered host"
200
- msgstr ""
201
+ msgstr "検出されたホストのインポート"
201
202
 
202
203
  msgid "Invalid facts, must be a Hash"
203
204
  msgstr "無効なファクトです。ハッシュにする必要があります"
204
205
 
205
206
  msgid "Invalid facts: hash does not contain IP address"
206
- msgstr ""
207
+ msgstr "無効なファクト : ハッシュは IP アドレスが含まれていません"
207
208
 
208
209
  msgid "Invalid facts: hash does not contain the required fact '%s'"
209
210
  msgstr "無効なファクト: ハッシュには必要なファクト '%s' が含まれていません"
@@ -212,10 +213,10 @@ msgid "Last facts upload"
212
213
  msgstr "最終ファクトのアップロード"
213
214
 
214
215
  msgid "List all discovered hosts"
215
- msgstr ""
216
+ msgstr "検出されたすべてのホストを一覧表示"
216
217
 
217
218
  msgid "List all discovery rules"
218
- msgstr ""
219
+ msgstr "すべての検出ルールを一覧表示"
219
220
 
220
221
  msgid "Location"
221
222
  msgstr "ロケーション"
@@ -236,10 +237,10 @@ msgid "Name"
236
237
  msgstr "名前"
237
238
 
238
239
  msgid "New Discovery Rule"
239
- msgstr ""
240
+ msgstr "新規検出ルール"
240
241
 
241
242
  msgid "New Rule"
242
- msgstr ""
243
+ msgstr "新規ルール"
243
244
 
244
245
  msgid "No discovered hosts available"
245
246
  msgstr ""
@@ -254,7 +255,7 @@ msgid "No hosts were found with that id or name"
254
255
  msgstr "該当する ID または名前のホストが見つかりませんでした"
255
256
 
256
257
  msgid "No rule found for host %s"
257
- msgstr ""
258
+ msgstr "ホスト %s のルールが見つかりません"
258
259
 
259
260
  msgid "Organization"
260
261
  msgstr "組織"
@@ -266,34 +267,34 @@ msgid "Provision"
266
267
  msgstr "プロビジョニング"
267
268
 
268
269
  msgid "Provision a discovered host"
269
- msgstr ""
270
+ msgstr "検出されたホストのプロビジョン"
270
271
 
271
272
  msgid "Reboot"
272
- msgstr ""
273
+ msgstr "再起動"
273
274
 
274
275
  msgid "Rebooting %s"
275
276
  msgstr "%s の再起動中"
276
277
 
277
278
  msgid "Rebooting a discovered host"
278
- msgstr ""
279
+ msgstr "検出されたホストの再起動"
279
280
 
280
281
  msgid "Rebooting host %s"
281
- msgstr ""
282
+ msgstr "ホスト %s の再起動中"
282
283
 
283
284
  msgid "Refresh facts"
284
285
  msgstr "ファクトの更新"
285
286
 
286
287
  msgid "Refreshing the facts of a discovered host"
287
- msgstr ""
288
+ msgstr "検出されたホストのファクト更新"
288
289
 
289
290
  msgid "Rule disabled"
290
- msgstr ""
291
+ msgstr "ルールの無効化"
291
292
 
292
293
  msgid "Rule enabled"
293
- msgstr ""
294
+ msgstr "ルールを有効化"
294
295
 
295
296
  msgid "Rule priority (lower integer means higher priority)"
296
- msgstr ""
297
+ msgstr "ルール優先度 ( 小さい整数ほど、より高い優先順位を意味します )"
297
298
 
298
299
  msgid "Select Action"
299
300
  msgstr "アクションの選択"
@@ -308,10 +309,10 @@ msgid "Select organization"
308
309
  msgstr "組織の選択"
309
310
 
310
311
  msgid "Show a discovered host"
311
- msgstr ""
312
+ msgstr "検出されたホストを表示"
312
313
 
313
314
  msgid "Show a discovery rule"
314
- msgstr ""
315
+ msgstr "検出ルールを表示"
315
316
 
316
317
  msgid "Show fact as an extra column in the discovered hosts list"
317
318
  msgstr ""
@@ -346,7 +347,7 @@ msgid "The default organization to place discovered hosts in"
346
347
  msgstr "検出されたホストを配置するデフォルトの組織"
347
348
 
348
349
  msgid "The default prefix to use for the host name, must start with a letter"
349
- msgstr ""
350
+ msgstr "ホスト名に使用するデフォルトの接頭辞は、文字で始まる必要があります"
350
351
 
351
352
  msgid "The following hosts were not deleted: %s"
352
353
  msgstr "以下のホストが削除されました: %s"
@@ -358,17 +359,17 @@ msgstr "ホスト、ファクトおよびレポートがすべて破棄される
358
359
 
359
360
  msgid "Total pool size"
360
361
  msgid_plural "Total pool size"
361
- msgstr[0] ""
362
+ msgstr[0] "合計プールサイズ"
362
363
 
363
364
  msgid ""
364
365
  "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
365
366
  msgstr ""
366
367
 
367
368
  msgid "Update a rule"
368
- msgstr ""
369
+ msgstr "ルールの更新"
369
370
 
370
371
  msgid "Upload facts for a host, creating the host if required"
371
- msgstr ""
372
+ msgstr "ホストのファクトをアップロードし、必要に応じてホストを作成する"
372
373
 
373
374
  msgid "Value"
374
375
  msgstr "値"
@@ -383,10 +384,10 @@ msgid ""
383
384
  msgstr ""
384
385
 
385
386
  msgid "can't contain white spaces."
386
- msgstr ""
387
+ msgstr "空白を含めることはできません."
387
388
 
388
389
  msgid "filter results"
389
- msgstr ""
390
+ msgstr "結果をフィルタ"
390
391
 
391
392
  msgid "hash containing facts for the host"
392
393
  msgstr ""
@@ -398,16 +399,16 @@ msgid "must start with a letter or ERB."
398
399
  msgstr ""
399
400
 
400
401
  msgid "not required if it's a virtual machine"
401
- msgstr ""
402
+ msgstr "仮想マシンの場合は必要ありません"
402
403
 
403
404
  msgid "not required if using a subnet with DHCP proxy"
404
- msgstr ""
405
+ msgstr "DHCP プロキシとサブネットを使用している場合は必要ではありません"
405
406
 
406
407
  msgid "number of entries per request"
407
- msgstr ""
408
+ msgstr "リクエストあたりのエントリ数"
408
409
 
409
410
  msgid "paginate results"
410
- msgstr ""
411
+ msgstr "結果をページ分割"
411
412
 
412
413
  msgid ""
413
414
  "required if value is not inherited from host group or default password in "
@@ -415,4 +416,4 @@ msgid ""
415
416
  msgstr ""
416
417
 
417
418
  msgid "sort results"
418
- msgstr ""
419
+ msgstr "結果をソート"
@@ -0,0 +1,29 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-28 17:53+0100\n"
6
+ "PO-Revision-Date: 2015-04-05 12:23+0000\n"
7
+ "Last-Translator: Shuji Yamada <uzy.exe@gmail.com>\n"
8
+ "Language-Team: Japanese "
9
+ "(http://www.transifex.com/foreman/foreman/language/ja/)\n"
10
+ "Language: ja\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Generator: Translate Toolkit 1.9.0\n"
16
+
17
+ # (pofilter) endpunc: Different punctuation at the end
18
+ msgid "Disable rule?"
19
+ msgstr "ルールを無効にしますか?"
20
+
21
+ # (pofilter) puncspacing: Different spacing around punctuation
22
+ msgid "Rule priority (lower integer means higher priority)"
23
+ msgstr "ルール優先度 ( 小さい整数ほど、より高い優先順位を意味します )"
24
+
25
+ # (pofilter) endpunc: Different punctuation at the end
26
+ msgid ""
27
+ "This might take a while, as all hosts, facts and reports will be destroyed "
28
+ "as well"
29
+ msgstr "ホスト、ファクトおよびレポートがすべて破棄されるため、時間がかかる場合があります。"
@@ -5,12 +5,12 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
8
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
11
- "PO-Revision-Date: 2015-01-30 11:12+0000\n"
11
+ "PO-Revision-Date: 2015-03-21 22:53+0000\n"
12
12
  "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Korean (http://www.transifex.com/projects/p/foreman/language/ko/)\n"
13
+ "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -0,0 +1,189 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-28 17:53+0100\n"
6
+ "PO-Revision-Date: 2015-03-21 22:53+0000\n"
7
+ "Last-Translator: Lukáš Zapletal\n"
8
+ "Language-Team: Korean "
9
+ "(http://www.transifex.com/foreman/foreman/language/ko/)\n"
10
+ "Language: ko\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Generator: Translate Toolkit 1.9.0\n"
16
+
17
+ # (pofilter) endwhitespace: Different whitespace at the end
18
+ msgid "%s - The following hosts are about to be changed"
19
+ msgstr "%s - 다음 호스트는 즉시 변경됩니다 "
20
+
21
+ # (pofilter) endwhitespace: Different whitespace at the end
22
+ msgid "%s ago"
23
+ msgstr "%s 전 "
24
+
25
+ # (pofilter) endwhitespace: Different whitespace at the end
26
+ msgid "Are you sure?"
27
+ msgstr "정말로 삭제하시겠습니까? "
28
+
29
+ # (pofilter) endwhitespace: Different whitespace at the end
30
+ msgid "Assign Location"
31
+ msgstr "위치 지정 "
32
+
33
+ # (pofilter) endwhitespace: Different whitespace at the end
34
+ msgid "Assign Organization"
35
+ msgstr "조직 지정 "
36
+
37
+ # (pofilter) endwhitespace: Different whitespace at the end
38
+ msgid "Cancel"
39
+ msgstr "취소 "
40
+
41
+ # (pofilter) endwhitespace: Different whitespace at the end
42
+ msgid "Delete"
43
+ msgstr "삭제 "
44
+
45
+ # (pofilter) endwhitespace: Different whitespace at the end
46
+ msgid "Delete hosts"
47
+ msgstr "호스트 삭제 "
48
+
49
+ # (pofilter) endwhitespace: Different whitespace at the end
50
+ msgid "Discovered hosts"
51
+ msgstr "검색된 호스트 "
52
+
53
+ # (pofilter) endwhitespace: Different whitespace at the end
54
+ msgid "Fact"
55
+ msgstr "정보 "
56
+
57
+ # (pofilter) endwhitespace: Different whitespace at the end
58
+ msgid "Facts discovered on this host"
59
+ msgstr "이 호스트에서 검색된 정보 "
60
+
61
+ # (pofilter) endwhitespace: Different whitespace at the end
62
+ msgid "Facts refreshed for %s"
63
+ msgstr "%s에 대해 업데이트된 정보 "
64
+
65
+ # (pofilter) endwhitespace: Different whitespace at the end
66
+ msgid "Failed to refresh facts for %s"
67
+ msgstr "%s에 대한 정보를 새로고침하는데 실패했습니다 "
68
+
69
+ # (pofilter) endwhitespace: Different whitespace at the end
70
+ msgid "Host"
71
+ msgstr "호스트 "
72
+
73
+ # (pofilter) endwhitespace: Different whitespace at the end
74
+ msgid "Host group"
75
+ msgstr "호스트 그룹 "
76
+
77
+ # (pofilter) endwhitespace: Different whitespace at the end
78
+ msgid "Invalid facts, must be a Hash"
79
+ msgstr "잘못된 정보, 해시여야 합니다 "
80
+
81
+ # (pofilter) endwhitespace: Different whitespace at the end
82
+ msgid "Invalid facts: hash does not contain the required fact '%s'"
83
+ msgstr "잘못된 정보: 해시에 필요한 정보 '%s'가 포함되어 있지 않습니다 "
84
+
85
+ # (pofilter) endwhitespace: Different whitespace at the end
86
+ msgid "Last facts upload"
87
+ msgstr "마지막 정보 업로드 "
88
+
89
+ # (pofilter) endwhitespace: Different whitespace at the end
90
+ msgid "Location"
91
+ msgstr "위치 "
92
+
93
+ # (pofilter) endwhitespace: Different whitespace at the end
94
+ msgid "Memory"
95
+ msgstr "메모리 "
96
+
97
+ # (pofilter) endwhitespace: Different whitespace at the end
98
+ msgid "Model"
99
+ msgstr "모델 "
100
+
101
+ # (pofilter) endwhitespace: Different whitespace at the end
102
+ msgid "N/A"
103
+ msgstr "해당 없음 "
104
+
105
+ # (pofilter) endwhitespace: Different whitespace at the end
106
+ msgid "Name"
107
+ msgstr "이름 "
108
+
109
+ # (pofilter) endwhitespace: Different whitespace at the end
110
+ msgid "No hosts selected"
111
+ msgstr "선택된 호스트가 없음 "
112
+
113
+ # (pofilter) endwhitespace: Different whitespace at the end
114
+ msgid "No hosts were found with that id or name"
115
+ msgstr "해당 ID 또는 이름의 호스트를 찾을 수 없습니다 "
116
+
117
+ # (pofilter) endwhitespace: Different whitespace at the end
118
+ msgid "Organization"
119
+ msgstr "조직 "
120
+
121
+ # (pofilter) endwhitespace: Different whitespace at the end
122
+ msgid "Please Confirm"
123
+ msgstr "확인해 주십시오 "
124
+
125
+ # (pofilter) endwhitespace: Different whitespace at the end
126
+ msgid "Provision"
127
+ msgstr "프로비저닝 "
128
+
129
+ # (pofilter) endwhitespace: Different whitespace at the end
130
+ msgid "Rebooting %s"
131
+ msgstr "%s 재부팅 중 "
132
+
133
+ # (pofilter) endwhitespace: Different whitespace at the end
134
+ msgid "Refresh facts"
135
+ msgstr "정보 새로 고침 "
136
+
137
+ # (pofilter) endwhitespace: Different whitespace at the end
138
+ msgid "Select Action"
139
+ msgstr "작업 선택 "
140
+
141
+ # (pofilter) endwhitespace: Different whitespace at the end
142
+ msgid "Select all items in this page"
143
+ msgstr "이 페이지에 있는 모든 항목을 선택 "
144
+
145
+ # (pofilter) endwhitespace: Different whitespace at the end
146
+ msgid "Select location"
147
+ msgstr "위치 선택 "
148
+
149
+ # (pofilter) endwhitespace: Different whitespace at the end
150
+ msgid "Select organization"
151
+ msgstr "조직 선택 "
152
+
153
+ # (pofilter) endwhitespace: Different whitespace at the end
154
+ msgid "Submit"
155
+ msgstr "제출 "
156
+
157
+ # (pofilter) endwhitespace: Different whitespace at the end
158
+ msgid "Subnet"
159
+ msgstr "서브넷 "
160
+
161
+ # (pofilter) endwhitespace: Different whitespace at the end
162
+ msgid "The default fact name to use for the MAC of the system"
163
+ msgstr "시스템의 MAC에 사용할 기본 정보 이름 "
164
+
165
+ # (pofilter) endwhitespace: Different whitespace at the end
166
+ msgid "The default location to place discovered hosts in"
167
+ msgstr "검색된 호스트를 배치하기 위한 기본 위치 "
168
+
169
+ # (pofilter) endwhitespace: Different whitespace at the end
170
+ msgid "The default organization to place discovered hosts in"
171
+ msgstr "검색된 호스트를 배치하기 위한 기본 조직 "
172
+
173
+ # (pofilter) endwhitespace: Different whitespace at the end
174
+ msgid ""
175
+ "This might take a while, as all hosts, facts and reports will be destroyed "
176
+ "as well"
177
+ msgstr "모든 호스트, 정보, 보고서가 모두 삭제되기 때문에 시간이 걸릴 수 있습니다 "
178
+
179
+ # (pofilter) endwhitespace: Different whitespace at the end
180
+ msgid "Value"
181
+ msgstr "값 "
182
+
183
+ # (pofilter) endwhitespace: Different whitespace at the end
184
+ msgid "Warning"
185
+ msgstr "경고 "
186
+
187
+ # (pofilter) endwhitespace: Different whitespace at the end
188
+ msgid "items selected. Uncheck to Clear"
189
+ msgstr "항목이 선택되어 있습니다. 삭제하려면 선택 해제합니다 "
Binary file
@@ -8,12 +8,12 @@
8
8
  # luizvasconcelos <luizvasconceloss@yahoo.com.br>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
11
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
13
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
14
- "PO-Revision-Date: 2015-01-30 11:12+0000\n"
14
+ "PO-Revision-Date: 2015-03-28 23:01+0000\n"
15
15
  "Last-Translator: Lukáš Zapletal\n"
16
- "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/foreman/language/pt_BR/)\n"
16
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/language/pt_BR/)\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
@@ -390,7 +390,7 @@ msgid "can't contain white spaces."
390
390
  msgstr ""
391
391
 
392
392
  msgid "filter results"
393
- msgstr ""
393
+ msgstr "filtrar resultados"
394
394
 
395
395
  msgid "hash containing facts for the host"
396
396
  msgstr ""
@@ -408,10 +408,10 @@ msgid "not required if using a subnet with DHCP proxy"
408
408
  msgstr ""
409
409
 
410
410
  msgid "number of entries per request"
411
- msgstr ""
411
+ msgstr "número de entradas por requisições"
412
412
 
413
413
  msgid "paginate results"
414
- msgstr ""
414
+ msgstr "paginar resultados"
415
415
 
416
416
  msgid ""
417
417
  "required if value is not inherited from host group or default password in "
@@ -419,4 +419,4 @@ msgid ""
419
419
  msgstr ""
420
420
 
421
421
  msgid "sort results"
422
- msgstr ""
422
+ msgstr "ordenar resultados"
File without changes