foreman_docker 3.0.0 → 3.1.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 (79) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +22 -22
  3. data/app/assets/javascripts/foreman_docker/image_step.js +36 -6
  4. data/app/controllers/api/v2/containers_controller.rb +13 -11
  5. data/app/controllers/containers/steps_controller.rb +8 -2
  6. data/app/controllers/containers_controller.rb +4 -3
  7. data/app/controllers/image_search_controller.rb +36 -79
  8. data/app/helpers/container_steps_helper.rb +21 -0
  9. data/app/models/concerns/foreman_docker/parameter_validators.rb +27 -4
  10. data/app/models/container.rb +9 -10
  11. data/app/models/docker_container_wizard_state.rb +2 -0
  12. data/app/models/docker_container_wizard_states/dns.rb +2 -8
  13. data/app/models/docker_container_wizard_states/environment.rb +4 -14
  14. data/app/models/docker_container_wizard_states/environment_variable.rb +2 -2
  15. data/app/models/docker_container_wizard_states/exposed_port.rb +2 -8
  16. data/app/models/docker_container_wizard_states/image.rb +30 -0
  17. data/app/models/docker_container_wizard_states/preliminary.rb +1 -1
  18. data/app/models/docker_parameter.rb +20 -0
  19. data/app/models/docker_registry.rb +6 -4
  20. data/app/models/environment_variable.rb +3 -3
  21. data/app/models/exposed_port.rb +4 -10
  22. data/app/models/foreman_docker/compute_resource_extensions.rb +11 -0
  23. data/app/models/foreman_docker/dns.rb +3 -9
  24. data/app/models/foreman_docker/docker.rb +1 -5
  25. data/app/models/service/containers.rb +15 -11
  26. data/app/models/service/registry_api.rb +87 -15
  27. data/app/services/foreman_docker/image_search.rb +92 -0
  28. data/app/views/containers/index.html.erb +1 -3
  29. data/app/views/containers/show.html.erb +1 -1
  30. data/app/views/containers/steps/_image_hub_tab.html.erb +39 -29
  31. data/app/views/containers/steps/_title.html.erb +1 -1
  32. data/app/views/containers/steps/preliminary.html.erb +1 -1
  33. data/app/views/foreman_docker/common_parameters/_dns_entry.html.erb +1 -1
  34. data/app/views/foreman_docker/common_parameters/_environment_variable.html.erb +1 -1
  35. data/app/views/foreman_docker/common_parameters/_exposed_port.html.erb +1 -1
  36. data/app/views/image_search/_repository_search_results.html.erb +1 -1
  37. data/app/views/registries/index.html.erb +1 -3
  38. data/app/views/registries/new.html.erb +1 -1
  39. data/db/migrate/20160605133025_create_docker_parameters.rb +13 -0
  40. data/db/migrate/20160605134652_move_parameters_to_docker_parameters.rb +27 -0
  41. data/lib/foreman_docker/engine.rb +6 -7
  42. data/lib/foreman_docker/version.rb +1 -1
  43. data/lib/tasks/test.rake +35 -0
  44. data/test/functionals/api/v2/containers_controller_test.rb +21 -0
  45. data/test/functionals/api/v2/registries_controller_test.rb +4 -3
  46. data/test/functionals/containers_controller_test.rb +5 -0
  47. data/test/functionals/containers_steps_controller_test.rb +74 -36
  48. data/test/functionals/image_search_controller_test.rb +166 -12
  49. data/test/integration/container_test.rb +1 -1
  50. data/test/test_plugin_helper.rb +10 -0
  51. data/test/units/container_test.rb +1 -1
  52. data/test/units/containers_service_test.rb +31 -9
  53. data/test/units/docker_container_wizard_states/image_test.rb +84 -0
  54. data/test/units/docker_registry_test.rb +27 -10
  55. data/test/units/foreman_docker/compute_resource_extensions_test.rb +10 -0
  56. data/test/units/image_search_service_test.rb +188 -0
  57. data/test/units/registry_api_test.rb +206 -12
  58. metadata +55 -36
  59. data/lib/foreman_docker/tasks/test.rake +0 -45
  60. data/locale/de/foreman_docker.edit.po +0 -631
  61. data/locale/de/foreman_docker.po.time_stamp +0 -0
  62. data/locale/es/foreman_docker.edit.po +0 -631
  63. data/locale/es/foreman_docker.po.time_stamp +0 -0
  64. data/locale/fr/foreman_docker.edit.po +0 -632
  65. data/locale/fr/foreman_docker.po.time_stamp +0 -0
  66. data/locale/it/foreman_docker.edit.po +0 -630
  67. data/locale/it/foreman_docker.po.time_stamp +0 -0
  68. data/locale/ja/foreman_docker.edit.po +0 -634
  69. data/locale/ja/foreman_docker.po.time_stamp +0 -0
  70. data/locale/ko/foreman_docker.edit.po +0 -629
  71. data/locale/ko/foreman_docker.po.time_stamp +0 -0
  72. data/locale/pt_BR/foreman_docker.edit.po +0 -631
  73. data/locale/pt_BR/foreman_docker.po.time_stamp +0 -0
  74. data/locale/ru/foreman_docker.edit.po +0 -630
  75. data/locale/ru/foreman_docker.po.time_stamp +0 -0
  76. data/locale/zh_CN/foreman_docker.edit.po +0 -628
  77. data/locale/zh_CN/foreman_docker.po.time_stamp +0 -0
  78. data/locale/zh_TW/foreman_docker.edit.po +0 -628
  79. data/locale/zh_TW/foreman_docker.po.time_stamp +0 -0
File without changes
@@ -1,634 +0,0 @@
1
- # myamamot <myamamot@redhat.com>, 2014. #zanata
2
- # asasaki <asasaki@redhat.com>, 2015. #zanata
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: version 0.0.1\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "PO-Revision-Date: 2015-04-27 06:24+0000\n"
8
- "Last-Translator: asasaki <asasaki@redhat.com>\n"
9
- "Language-Team: Japanese\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Language: ja\n"
14
- "Plural-Forms: nplurals=1; plural=0\n"
15
- "X-Generator: Zanata 3.6.0\n"
16
-
17
- #: ../app/controllers/api/v2/containers_controller.rb:13
18
- msgid "List all containers"
19
- msgstr "すべてのコンテナーの一覧表示"
20
-
21
- #: ../app/controllers/api/v2/containers_controller.rb:15
22
- msgid "List all containers on a compute resource"
23
- msgstr ""
24
-
25
- #: ../app/controllers/api/v2/containers_controller.rb:29
26
- msgid "Show a container"
27
- msgstr "コンテナーの表示"
28
-
29
- #: ../app/controllers/api/v2/containers_controller.rb:31
30
- msgid "Show container on a compute resource"
31
- msgstr ""
32
-
33
- #: ../app/controllers/api/v2/containers_controller.rb:43
34
- msgid "Registry this container will have to use to get the image"
35
- msgstr ""
36
-
37
- #: ../app/controllers/api/v2/containers_controller.rb:46
38
- msgid "Name of the repository to use to create the container. e.g. centos"
39
- msgstr ""
40
-
41
- #: ../app/controllers/api/v2/containers_controller.rb:49
42
- msgid "Tag to use to create the container. e.g. latest"
43
- msgstr ""
44
-
45
- #: ../app/controllers/api/v2/containers_controller.rb:60
46
- msgid "The capsule this container will have to use to get the image. Relevant for images retrieved from katello registry."
47
- msgstr ""
48
-
49
- # translation auto-copied from project RHELOSP End User Guide, version 5.0, document section_dashboard_manage_containers, author myamamot
50
- #: ../app/controllers/api/v2/containers_controller.rb:66
51
- msgid "Create a container"
52
- msgstr "コンテナーの作成"
53
-
54
- #: ../app/controllers/api/v2/containers_controller.rb:68
55
- msgid "Create container on a compute resource"
56
- msgstr ""
57
-
58
- #: ../app/controllers/api/v2/containers_controller.rb:84
59
- msgid "Wrong attributes: %s"
60
- msgstr "正しくない属性: %s"
61
-
62
- #: ../app/controllers/api/v2/containers_controller.rb:88
63
- msgid "Delete a container"
64
- msgstr "コンテナーの削除"
65
-
66
- #: ../app/controllers/api/v2/containers_controller.rb:90
67
- msgid "Delete container on a compute resource"
68
- msgstr ""
69
-
70
- #: ../app/controllers/api/v2/containers_controller.rb:98
71
- msgid "Show container logs"
72
- msgstr "コンテナーログの表示"
73
-
74
- #: ../app/controllers/api/v2/containers_controller.rb:100
75
- msgid "Show logs from a container on a compute resource"
76
- msgstr ""
77
-
78
- #: ../app/controllers/api/v2/containers_controller.rb:105
79
- msgid "Number of lines to tail. Default: 100"
80
- msgstr "末尾の表示する行の数。デフォルト: 100"
81
-
82
- #: ../app/controllers/api/v2/containers_controller.rb:114
83
- msgid "Run power operation on a container"
84
- msgstr "コンテナーでパワー操作を実行"
85
-
86
- #: ../app/controllers/api/v2/containers_controller.rb:116
87
- msgid "Run power operation on a container on a compute resource"
88
- msgstr ""
89
-
90
- #: ../app/controllers/api/v2/containers_controller.rb:121
91
- msgid "power action, valid actions are (start), (stop), (status)"
92
- msgstr "パワーアクション。有効なアクションは (start)、(stop)、(status) です。"
93
-
94
- #: ../app/controllers/api/v2/containers_controller.rb:134
95
- msgid "Unknown method: available power operations are %s"
96
- msgstr "不明なメソッド: 選択できるパワー操作は %s です"
97
-
98
- #: ../app/controllers/api/v2/registries_controller.rb:22
99
- msgid "List all docker registries"
100
- msgstr ""
101
-
102
- #: ../app/controllers/api/v2/registries_controller.rb:29
103
- msgid "Show a docker registry"
104
- msgstr ""
105
-
106
- #: ../app/controllers/api/v2/registries_controller.rb:34
107
- msgid "Create a docker registry"
108
- msgstr ""
109
-
110
- #: ../app/controllers/api/v2/registries_controller.rb:41
111
- msgid "Update a docker registry"
112
- msgstr ""
113
-
114
- #: ../app/controllers/api/v2/registries_controller.rb:48
115
- msgid "Delete a docker registry"
116
- msgstr ""
117
-
118
- #: ../app/controllers/containers_controller.rb:25
119
- msgid "Container %s is being deleted."
120
- msgstr "コンテナー %s が削除されています。"
121
-
122
- #: ../app/controllers/containers_controller.rb:44
123
- msgid "%{container} commit was successful"
124
- msgstr ""
125
-
126
- #: ../app/controllers/containers_controller.rb:47
127
- msgid "Failed to commit %{container}: %{e}"
128
- msgstr "%{container} のコミットに失敗しました: %{e}"
129
-
130
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
131
- #: ../app/controllers/containers_controller.rb:60
132
- msgid "%{vm} is now %{vm_state}"
133
- msgstr "%{vm} は %{vm_state} になりました"
134
-
135
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
136
- #: ../app/controllers/containers_controller.rb:64
137
- msgid "failed to %{action} %{vm}"
138
- msgstr "%{vm} に対する %{action} の実行に失敗しました"
139
-
140
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author asasaki
141
- #: ../app/controllers/containers_controller.rb:69
142
- msgid "Error - %{message}"
143
- msgstr "エラー - %{message}"
144
-
145
- #: ../app/controllers/image_search_controller.rb:62
146
- msgid "An error occured during repository search: '%s'"
147
- msgstr "リポジトリーの検索中にエラーが発生しました: '%s'"
148
-
149
- #: ../app/helpers/container_steps_helper.rb:12 ../app/views/registries/_form.html.erb:4
150
- msgid "Registry"
151
- msgstr "レジストリー"
152
-
153
- #: ../app/helpers/container_steps_helper.rb:16
154
- msgid "Select a registry"
155
- msgstr "レジストリーの選択"
156
-
157
- # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
158
- #: ../app/helpers/container_steps_helper.rb:22 ../app/views/compute_resources_vms/form/_docker.html.erb:6 ../app/views/compute_resources_vms/index/_docker.html.erb:5 ../app/views/containers/_list.html.erb:6
159
- msgid "Image"
160
- msgstr "イメージ"
161
-
162
- #: ../app/helpers/container_steps_helper.rb:22
163
- msgid "Environment"
164
- msgstr ""
165
-
166
- #: ../app/helpers/container_steps_helper.rb:22
167
- msgid "Configuration"
168
- msgstr ""
169
-
170
- #: ../app/helpers/container_steps_helper.rb:22
171
- msgid "Preliminary"
172
- msgstr ""
173
-
174
- # translation auto-copied from project PressGang CCMS topics, version 1, document 4283-155458, author tnagamot
175
- #: ../app/helpers/containers_helper.rb:34
176
- msgid "Commit"
177
- msgstr "コミット"
178
-
179
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
180
- #: ../app/helpers/containers_helper.rb:43 ../app/views/containers/_list.html.erb:36 ../app/views/registries/index.html.erb:23
181
- msgid "Delete %s?"
182
- msgstr "%s を削除しますか?"
183
-
184
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author asasaki
185
- #: ../app/helpers/containers_helper.rb:71
186
- msgid "Are you sure you want to power %{act} %{vm}?"
187
- msgstr "%{vm} の %{act} を実行してもよいですか?"
188
-
189
- #: ../app/models/concerns/fog_extensions/fogdocker/server.rb:39
190
- msgid "%{cores} cores and %{memory} memory"
191
- msgstr ""
192
-
193
- #: ../app/models/container.rb:61
194
- msgid "Docker/Container"
195
- msgstr "Docker/コンテナー"
196
-
197
- #: ../app/models/docker_registry.rb:39
198
- msgid "Docker/Registry"
199
- msgstr "Docker/レジストリー"
200
-
201
- #: ../app/models/docker_registry.rb:50
202
- msgid "Unable to log in to this Docker Registry - %s"
203
- msgstr ""
204
-
205
- #: ../app/models/foreman_docker/docker.rb:140
206
- msgid "Error creating communicating with Docker. Check the Foreman logs: %s"
207
- msgstr "作成中および Docker との通信中にエラーが発生しました。Foreman ログを確認してください: %s"
208
-
209
- #: ../app/models/service/containers.rb:101
210
- msgid "Could not start container"
211
- msgstr ""
212
-
213
- #: ../app/views/compute_resources/form/_docker.html.erb:1
214
- msgid "e.g. https://docker.example.com:4243 or unix:///var/run/docker.sock"
215
- msgstr "例: https://docker.example.com:4243 または unix:///var/run/docker.sock"
216
-
217
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
218
- #: ../app/views/compute_resources/form/_docker.html.erb:7
219
- msgid "Test Connection"
220
- msgstr "テスト接続"
221
-
222
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
223
- #: ../app/views/compute_resources/show/_docker.html.erb:2 ../app/views/registries/index.html.erb:9
224
- msgid "URL"
225
- msgstr "URL"
226
-
227
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
228
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:10
229
- msgid "Cores"
230
- msgstr "コア数"
231
-
232
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
233
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:11 ../app/views/compute_resources_vms/index/_docker.html.erb:7 ../app/views/compute_resources_vms/show/_docker.html.erb:22 ../app/views/containers/show.html.erb:39 ../app/views/containers/steps/configuration.html.erb:15
234
- msgid "Memory"
235
- msgstr "メモリー"
236
-
237
- # translation auto-copied from project nautilus, version 3.8.2, document nautilus
238
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:13 ../app/views/compute_resources_vms/show/_docker.html.erb:26 ../app/views/containers/_list.html.erb:7 ../app/views/containers/show.html.erb:43
239
- msgid "Command"
240
- msgstr "コマンド"
241
-
242
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
243
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:15
244
- msgid "Power ON this machine"
245
- msgstr "このマシンのパワーをオンにする"
246
-
247
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
248
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:15
249
- msgid "Start"
250
- msgstr "開始"
251
-
252
- # translation auto-copied from project Satellite6 Katello, version 6.1, document katello
253
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:4 ../app/views/compute_resources_vms/show/_docker.html.erb:6 ../app/views/containers/_list.html.erb:4 ../app/views/containers/show.html.erb:11 ../app/views/registries/index.html.erb:8
254
- msgid "Name"
255
- msgstr "名前"
256
-
257
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
258
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:6
259
- msgid "CPUs"
260
- msgstr "CPU"
261
-
262
- # translation auto-copied from project PressGang CCMS topics, version 1, document 6888-635853, author tnagamot
263
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:8 ../app/views/containers/_list.html.erb:5
264
- msgid "Status"
265
- msgstr "状態"
266
-
267
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
268
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:9
269
- msgid "Power"
270
- msgstr "パワー"
271
-
272
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
273
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:4 ../app/views/containers/show.html.erb:9
274
- msgid "Properties"
275
- msgstr "プロパティー"
276
-
277
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
278
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:10 ../app/views/containers/show.html.erb:23
279
- msgid "IP Address"
280
- msgstr "IP アドレス"
281
-
282
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:14 ../app/views/containers/show.html.erb:27 ../app/views/containers/steps/configuration.html.erb:12
283
- msgid "CPU shares"
284
- msgstr "CPU シェア"
285
-
286
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
287
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:18 ../app/views/containers/show.html.erb:35
288
- msgid "UUID"
289
- msgstr "UUID"
290
-
291
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:30 ../app/views/containers/show.html.erb:47
292
- msgid "Exposed ports"
293
- msgstr "表示されるポート"
294
-
295
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
296
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:35 ../app/views/containers/_list.html.erb:9 ../app/views/containers/show.html.erb:89
297
- msgid "Running on"
298
- msgstr "実行中: "
299
-
300
- # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/database/StringResource
301
- #: ../app/views/containers/_list.html.erb:8
302
- msgid "Uptime"
303
- msgstr "アップタイム"
304
-
305
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
306
- #: ../app/views/containers/_list.html.erb:10
307
- msgid "Managed"
308
- msgstr "管理"
309
-
310
- #: ../app/views/containers/_list.html.erb:11
311
- msgid "Action"
312
- msgstr ""
313
-
314
- # translation auto-copied from project Satellite6 Katello, version 6.1, document katello, author asasaki
315
- #: ../app/views/containers/_list.html.erb:27
316
- msgid "No"
317
- msgstr "No"
318
-
319
- # translation auto-copied from project PressGang CCMS topics, version 1, document 5213-684429, author jito
320
- #: ../app/views/containers/_list.html.erb:27
321
- msgid "Yes"
322
- msgstr "Yes"
323
-
324
- #: ../app/views/containers/index.html.erb:1 ../lib/foreman_docker/engine.rb:47
325
- msgid "Containers"
326
- msgstr "コンテナー"
327
-
328
- #: ../app/views/containers/index.html.erb:3 ../app/views/containers/steps/_title.html.erb:1 ../lib/foreman_docker/engine.rb:52
329
- msgid "New container"
330
- msgstr "新規コンテナー"
331
-
332
- #: ../app/views/containers/index.html.erb:27
333
- msgid "Error connecting with the compute resource: <strong> %s </strong>"
334
- msgstr "コンピュートリソースに接続中にエラーが発生しました: <strong> %s </strong>"
335
-
336
- #: ../app/views/containers/show.html.erb:15
337
- msgid "Image Repository"
338
- msgstr "イメージリポジトリー"
339
-
340
- #: ../app/views/containers/show.html.erb:19
341
- msgid "Image Tag"
342
- msgstr "イメージタグ"
343
-
344
- #: ../app/views/containers/show.html.erb:31
345
- msgid "CPU set"
346
- msgstr ""
347
-
348
- #: ../app/views/containers/show.html.erb:61 ../app/views/containers/steps/environment.html.erb:16
349
- msgid "DNS"
350
- msgstr ""
351
-
352
- #: ../app/views/containers/show.html.erb:69
353
- msgid "Environment Variables"
354
- msgstr "環境変数"
355
-
356
- # translation auto-copied from project gnome-system-monitor, version 3.8.2.1, document gnome-system-monitor
357
- #: ../app/views/containers/show.html.erb:103
358
- msgid "Processes"
359
- msgstr "プロセス"
360
-
361
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
362
- #: ../app/views/containers/show.html.erb:107
363
- msgid "Logs"
364
- msgstr "ログ"
365
-
366
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
367
- #: ../app/views/containers/show.html.erb:139
368
- msgid "Notice"
369
- msgstr "通知"
370
-
371
- #: ../app/views/containers/show.html.erb:141
372
- msgid "Your container is stopped."
373
- msgstr "コンテナーが停止しています。"
374
-
375
- #: ../app/views/containers/show.html.erb:142
376
- msgid "Please turn on your container to see processes running, logs, and more."
377
- msgstr "実行中のプロセスやログなどを確認するためのコンテナーをオンにしてください。"
378
-
379
- #: ../app/views/containers/show.html.erb:153
380
- msgid "Commit this container state"
381
- msgstr "このコンテナーの状態をコミット"
382
-
383
- #: ../app/views/containers/show.html.erb:160
384
- msgid "Repo"
385
- msgstr "リポジトリー"
386
-
387
- #: ../app/views/containers/show.html.erb:162
388
- msgid "docker/my-committed-image"
389
- msgstr "docker/my-committed-image"
390
-
391
- # translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
392
- #: ../app/views/containers/show.html.erb:165
393
- msgid "Tag"
394
- msgstr "タグ"
395
-
396
- #: ../app/views/containers/show.html.erb:167
397
- msgid "latest"
398
- msgstr "最新"
399
-
400
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
401
- #: ../app/views/containers/show.html.erb:170
402
- msgid "Author"
403
- msgstr "作成者"
404
-
405
- #: ../app/views/containers/show.html.erb:172
406
- msgid "Foreman user <foremaner@example.org>"
407
- msgstr ""
408
-
409
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
410
- #: ../app/views/containers/show.html.erb:175
411
- msgid "Comment"
412
- msgstr "コメント"
413
-
414
- #: ../app/views/containers/show.html.erb:177
415
- msgid "Description of the commit"
416
- msgstr "コミットの説明"
417
-
418
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
419
- #: ../app/views/containers/show.html.erb:180 ../app/views/containers/steps/_form_buttons.html.erb:4
420
- msgid "Cancel"
421
- msgstr "取り消し"
422
-
423
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
424
- #: ../app/views/containers/show.html.erb:182 ../app/views/containers/steps/_form_buttons.html.erb:14
425
- msgid "Submit"
426
- msgstr "送信"
427
-
428
- # translation auto-copied from project Satellite6 Foreman Bootdisk, version 6.1, document foreman_bootdisk
429
- #: ../app/views/containers/steps/_form_buttons.html.erb:8
430
- msgid "Back"
431
- msgstr "戻る"
432
-
433
- # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author asasaki
434
- #: ../app/views/containers/steps/_form_buttons.html.erb:16
435
- msgid "Next"
436
- msgstr "次へ"
437
-
438
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
439
- #: ../app/views/containers/steps/_image_hub_tab.html.erb:15
440
- msgid "Search"
441
- msgstr "検索"
442
-
443
- #: ../app/views/containers/steps/_image_hub_tab.html.erb:24
444
- msgid "Find your favorite container, e.g. centos"
445
- msgstr ""
446
-
447
- # translation auto-copied from project RHEL Virtualization Administration Guide, version 6.4, document QEMUKVMCommands, author noriko
448
- #: ../app/views/containers/steps/configuration.html.erb:3
449
- msgid "Basic options"
450
- msgstr "基本オプション"
451
-
452
- #: ../app/views/containers/steps/configuration.html.erb:8
453
- msgid "Compute options"
454
- msgstr "コンピュートオプション"
455
-
456
- #: ../app/views/containers/steps/configuration.html.erb:9
457
- msgid "CPU sets"
458
- msgstr "CPU セット"
459
-
460
- #: ../app/views/containers/steps/configuration.html.erb:11
461
- msgid "learn more about CPU sets"
462
- msgstr "CPU セットについての詳細"
463
-
464
- #: ../app/views/containers/steps/configuration.html.erb:14
465
- msgid "learn more about CPU shares"
466
- msgstr "CPU シェアについての詳細"
467
-
468
- # translation auto-copied from project RHEL Deployment Guide, version 6.2, document Managing_Users_and_Groups
469
- #: ../app/views/containers/steps/environment.html.erb:5
470
- msgid "Shell"
471
- msgstr "シェル"
472
-
473
- # translation auto-copied from project gnome-contacts, version 3.8.2, document gnome-contacts
474
- #: ../app/views/containers/steps/environment.html.erb:6
475
- msgid "TTY"
476
- msgstr "TTY"
477
-
478
- #: ../app/views/containers/steps/environment.html.erb:6
479
- msgid "Allocate a pseudo-tty"
480
- msgstr "pseudo-tty の割り当て"
481
-
482
- #: ../app/views/containers/steps/environment.html.erb:7
483
- msgid "Attach STDIN"
484
- msgstr "STDIN の割り当て"
485
-
486
- #: ../app/views/containers/steps/environment.html.erb:8
487
- msgid "Attach STDOUT"
488
- msgstr "STDOUT の割り当て"
489
-
490
- #: ../app/views/containers/steps/environment.html.erb:9
491
- msgid "Attach STDERR"
492
- msgstr "STDERR の割り当て"
493
-
494
- #: ../app/views/containers/steps/environment.html.erb:12
495
- msgid "Environment variables"
496
- msgstr "環境変数"
497
-
498
- #: ../app/views/containers/steps/environment.html.erb:14
499
- msgid "Exposed Ports"
500
- msgstr ""
501
-
502
- #: ../app/views/containers/steps/environment.html.erb:22
503
- msgid "Run?"
504
- msgstr ""
505
-
506
- #: ../app/views/containers/steps/environment.html.erb:23
507
- msgid "If selected, the container will start after it is created"
508
- msgstr ""
509
-
510
- #: ../app/views/containers/steps/image.html.erb:9
511
- msgid "Content View"
512
- msgstr ""
513
-
514
- #: ../app/views/containers/steps/image.html.erb:15
515
- msgid "Docker hub"
516
- msgstr "Docker ハブ"
517
-
518
- #: ../app/views/containers/steps/image.html.erb:19
519
- msgid "External registry"
520
- msgstr "外部レジストリー"
521
-
522
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
523
- #: ../app/views/containers/steps/preliminary.html.erb:6
524
- msgid "Compute resource"
525
- msgstr "コンピュートリソース"
526
-
527
- #: ../app/views/containers/steps/preliminary.html.erb:19
528
- msgid "Resource selection"
529
- msgstr "リソースの選択"
530
-
531
- #: ../app/views/containers/steps/preliminary.html.erb:20
532
- msgid "Where do you want to deploy your container?:"
533
- msgstr "コンテナーのデプロイ先:"
534
-
535
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
536
- #: ../app/views/containers/steps/preliminary.html.erb:22
537
- msgid "Deploy on"
538
- msgstr "デプロイ先"
539
-
540
- #: ../app/views/containers/steps/preliminary.html.erb:25
541
- msgid "You need a Docker compute resource in order to create containers. Please %s and try again."
542
- msgstr "コンテナーを作成するには Docker コンピュートリソースが必要です。%s を実行してからやり直してください。"
543
-
544
- #: ../app/views/foreman_docker/common_parameters/_dns.erb:8
545
- msgid "Add DNS"
546
- msgstr ""
547
-
548
- #: ../app/views/foreman_docker/common_parameters/_dns_entry.html.erb:3
549
- msgid "DNS e.g. 8.8.8.8"
550
- msgstr ""
551
-
552
- #: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:3
553
- msgid "Name, e.g. PING_HOST"
554
- msgstr ""
555
-
556
- #: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:5
557
- msgid "Value, e.g. example.org"
558
- msgstr ""
559
-
560
- #: ../app/views/foreman_docker/common_parameters/_environment_variables.html.erb:8
561
- msgid "Add environment variable"
562
- msgstr "環境変数の追加"
563
-
564
- #: ../app/views/foreman_docker/common_parameters/_exposed_port.html.erb:3
565
- msgid "Port number e.g. 22"
566
- msgstr ""
567
-
568
- #: ../app/views/foreman_docker/common_parameters/_exposed_ports.erb:8
569
- msgid "Add Exposed Port"
570
- msgstr ""
571
-
572
- #: ../app/views/images/form/_docker.html.erb:1
573
- msgid "The user that is used to ssh into the instance, normally docker-user, ubuntu, root etc"
574
- msgstr "SSH をインスタンスに実行するために、通常 docker-user、ubuntu、root などのユーザーを使用します。"
575
-
576
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
577
- #: ../app/views/images/form/_docker.html.erb:2
578
- msgid "Password to authenticate with - used for SSH finish step."
579
- msgstr "認証に使用するパスワード - SSH の最終ステップで使用されます。"
580
-
581
- #: ../app/views/images/form/_docker.html.erb:4
582
- msgid "Does this image support user data input?"
583
- msgstr "このイメージはユーザーのデータ入力に対応しますか?"
584
-
585
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
586
- #: ../app/views/registries/_form.html.erb:6
587
- msgid "Locations"
588
- msgstr "ロケーション"
589
-
590
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
591
- #: ../app/views/registries/_form.html.erb:9
592
- msgid "Organizations"
593
- msgstr "組織"
594
-
595
- #: ../app/views/registries/_form.html.erb:17
596
- msgid "Description of the registry"
597
- msgstr ""
598
-
599
- #: ../app/views/registries/_form.html.erb:18
600
- msgid "Username used to access the registry"
601
- msgstr "レジストリーにアクセスするために使用されるユーザー名"
602
-
603
- #: ../app/views/registries/_form.html.erb:19
604
- msgid "Password used for authentication to the registry"
605
- msgstr "レジストリーへの認証に使用されるパスワード"
606
-
607
- #: ../app/views/registries/edit.html.erb:1
608
- msgid "Edit Registry"
609
- msgstr "レジストリーの編集"
610
-
611
- #: ../app/views/registries/index.html.erb:1 ../lib/foreman_docker/engine.rb:55
612
- msgid "Registries"
613
- msgstr "レジストリー"
614
-
615
- #: ../app/views/registries/index.html.erb:3
616
- msgid "New registry"
617
- msgstr ""
618
-
619
- # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello, author myamamot
620
- #: ../app/views/registries/index.html.erb:10
621
- msgid "Description"
622
- msgstr "説明"
623
-
624
- #: ../app/views/registries/index.html.erb:11
625
- msgid "Actions"
626
- msgstr ""
627
-
628
- #: ../app/views/registries/new.html.erb:1
629
- msgid "New Registry"
630
- msgstr "新規レジストリー"
631
-
632
- #: ../lib/foreman_docker/engine.rb:49
633
- msgid "All containers"
634
- msgstr "すべてのコンテナー"