redhat_access 2.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 (218) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +24 -0
  3. data/LICENSE.txt +620 -0
  4. data/README.rdoc +7 -0
  5. data/Rakefile +131 -0
  6. data/app/assets/javascripts/insights/app.module.js +64 -0
  7. data/app/assets/javascripts/insights/application.js +18 -0
  8. data/app/assets/javascripts/insights/configuration.controller.js +66 -0
  9. data/app/assets/javascripts/insights/configuration.service.js +28 -0
  10. data/app/assets/javascripts/insights/views/configuration.html +85 -0
  11. data/app/assets/javascripts/insights/views/error.html +13 -0
  12. data/app/assets/javascripts/insights/views/help.html +16 -0
  13. data/app/assets/javascripts/redhat_access/analytics_dashboard.js +2 -0
  14. data/app/assets/javascripts/redhat_access/application.js +15 -0
  15. data/app/assets/javascripts/redhat_access/redhat_access.module.js +126 -0
  16. data/app/assets/stylesheets/insights/application.css +14 -0
  17. data/app/assets/stylesheets/insights/insights.css +21 -0
  18. data/app/assets/stylesheets/redhat_access/application.css +14 -0
  19. data/app/assets/stylesheets/redhat_access/telemetry_configuration.css +4 -0
  20. data/app/controllers/redhat_access/analytics_dashboard_controller.rb +12 -0
  21. data/app/controllers/redhat_access/api/api_controller.rb +24 -0
  22. data/app/controllers/redhat_access/api/attachments_controller.rb +40 -0
  23. data/app/controllers/redhat_access/api/logs_controller.rb +49 -0
  24. data/app/controllers/redhat_access/api/machine_telemetry_api_controller.rb +112 -0
  25. data/app/controllers/redhat_access/api/strata_proxy_controller.rb +81 -0
  26. data/app/controllers/redhat_access/api/telemetry_api_controller.rb +179 -0
  27. data/app/controllers/redhat_access/application_controller.rb +2 -0
  28. data/app/controllers/redhat_access/cases_controller.rb +14 -0
  29. data/app/controllers/redhat_access/configuration_controller.rb +21 -0
  30. data/app/controllers/redhat_access/log_viewer_controller.rb +9 -0
  31. data/app/controllers/redhat_access/redhat_access_controller.rb +8 -0
  32. data/app/controllers/redhat_access/search_controller.rb +9 -0
  33. data/app/controllers/redhat_access/strata_credentials_controller.rb +48 -0
  34. data/app/controllers/redhat_access/telemetry_configurations_controller.rb +38 -0
  35. data/app/controllers/redhat_access/telemetry_controller.rb +6 -0
  36. data/app/helpers/redhat_access/analytics_dashboard_helper.rb +13 -0
  37. data/app/helpers/redhat_access/application_helper.rb +4 -0
  38. data/app/helpers/redhat_access/attachments_helper.rb +4 -0
  39. data/app/helpers/redhat_access/cases_helper.rb +4 -0
  40. data/app/helpers/redhat_access/log_viewer_helper.rb +4 -0
  41. data/app/helpers/redhat_access/logs_helper.rb +4 -0
  42. data/app/helpers/redhat_access/redhat_access_helper.rb +4 -0
  43. data/app/helpers/redhat_access/search_helper.rb +4 -0
  44. data/app/helpers/redhat_access/telemetry_configuration_helper.rb +4 -0
  45. data/app/models/redhat_access/concerns/organization_extensions.rb +10 -0
  46. data/app/models/redhat_access/telemetry_configuration.rb +11 -0
  47. data/app/models/redhat_access/telemetry_proxy_credentials.rb +10 -0
  48. data/app/services/redhat_access/authentication/client_authentication.rb +80 -0
  49. data/app/services/redhat_access/telemetry/look_ups.rb +233 -0
  50. data/app/services/redhat_access/telemetry/portal_client.rb +39 -0
  51. data/app/views/redhat_access/analytics_dashboard/configuration.html.erb +85 -0
  52. data/app/views/redhat_access/analytics_dashboard/error.html.erb +13 -0
  53. data/app/views/redhat_access/analytics_dashboard/help.html.erb +16 -0
  54. data/app/views/redhat_access/analytics_dashboard/index.html.erb +69 -0
  55. data/app/views/redhat_access/analytics_dashboard/welcome.html.erb +8 -0
  56. data/app/views/redhat_access/redhat_access/index.html.erb +34 -0
  57. data/ca/rh_cert-api_chain.pem +74 -0
  58. data/config/config.yml.example +15 -0
  59. data/config/environments/development.rb +5 -0
  60. data/config/initializers/load_config.rb +5 -0
  61. data/config/mount_engine.rb +3 -0
  62. data/config/routes.rb +36 -0
  63. data/db/migrate/20141204161152_create_redhat_access_telemetry_proxy_credentials.rb +11 -0
  64. data/db/migrate/20150319153744_create_redhat_access_telemetry_configurations.rb +13 -0
  65. data/db/migrate/20160425175501_add_email_to_telemetry_configurations.rb +5 -0
  66. data/db/seeds.d/200-update-insights-roles.rb +11 -0
  67. data/lib/redhat_access/configuration.rb +8 -0
  68. data/lib/redhat_access/engine.rb +225 -0
  69. data/lib/redhat_access/sos_reports/generator.rb +58 -0
  70. data/lib/redhat_access/strata/client.rb +39 -0
  71. data/lib/redhat_access/version.rb +3 -0
  72. data/lib/redhat_access.rb +5 -0
  73. data/lib/tasks/redhat_access_tasks.rake +41 -0
  74. data/locale/Makefile +62 -0
  75. data/locale/de/LC_MESSAGES/redhat_access.mo +0 -0
  76. data/locale/de/redhat_access.po +589 -0
  77. data/locale/es/LC_MESSAGES/redhat_access.mo +0 -0
  78. data/locale/es/redhat_access.po +589 -0
  79. data/locale/fr/LC_MESSAGES/redhat_access.mo +0 -0
  80. data/locale/fr/redhat_access.po +593 -0
  81. data/locale/gemspec.rb +2 -0
  82. data/locale/it/LC_MESSAGES/redhat_access.mo +0 -0
  83. data/locale/it/redhat_access.po +589 -0
  84. data/locale/ja/LC_MESSAGES/redhat_access.mo +0 -0
  85. data/locale/ja/redhat_access.po +569 -0
  86. data/locale/ko/LC_MESSAGES/redhat_access.mo +0 -0
  87. data/locale/ko/redhat_access.po +570 -0
  88. data/locale/pt/LC_MESSAGES/redhat_access.mo +0 -0
  89. data/locale/pt/redhat_access.po +588 -0
  90. data/locale/redhat_access.pot +34 -0
  91. data/locale/ru/LC_MESSAGES/redhat_access.mo +0 -0
  92. data/locale/ru/redhat_access.po +580 -0
  93. data/locale/zh/LC_MESSAGES/redhat_access.mo +0 -0
  94. data/locale/zh/redhat_access.po +561 -0
  95. data/redhat_access.gemspec +30 -0
  96. data/script/rails +8 -0
  97. data/script/sos_reports/foreman_sosreport.pam +9 -0
  98. data/script/sos_reports/foreman_sosreport_console.apps +3 -0
  99. data/script/sos_reports/foreman_sosreport_wrapper.py +65 -0
  100. data/test/dummy/README.rdoc +261 -0
  101. data/test/dummy/Rakefile +7 -0
  102. data/test/dummy/app/assets/javascripts/application.js +15 -0
  103. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  104. data/test/dummy/app/controllers/application_controller.rb +3 -0
  105. data/test/dummy/app/helpers/application_helper.rb +2 -0
  106. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  107. data/test/dummy/config/application.rb +59 -0
  108. data/test/dummy/config/boot.rb +10 -0
  109. data/test/dummy/config/database.yml +25 -0
  110. data/test/dummy/config/environment.rb +5 -0
  111. data/test/dummy/config/environments/development.rb +37 -0
  112. data/test/dummy/config/environments/production.rb +67 -0
  113. data/test/dummy/config/environments/test.rb +37 -0
  114. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  115. data/test/dummy/config/initializers/inflections.rb +15 -0
  116. data/test/dummy/config/initializers/mime_types.rb +5 -0
  117. data/test/dummy/config/initializers/secret_token.rb +7 -0
  118. data/test/dummy/config/initializers/session_store.rb +8 -0
  119. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  120. data/test/dummy/config/locales/en.yml +5 -0
  121. data/test/dummy/config/routes.rb +4 -0
  122. data/test/dummy/config.ru +4 -0
  123. data/test/dummy/public/404.html +26 -0
  124. data/test/dummy/public/422.html +26 -0
  125. data/test/dummy/public/500.html +25 -0
  126. data/test/dummy/public/favicon.ico +0 -0
  127. data/test/dummy/script/rails +6 -0
  128. data/test/fixtures/redhat_access/telemetry_configurations.yml +11 -0
  129. data/test/fixtures/redhat_access/telemetry_proxy_credentials.yml +11 -0
  130. data/test/functional/redhat_access/analytics_dashboard_controller_test.rb +11 -0
  131. data/test/functional/redhat_access/attachments_controller_test.rb +11 -0
  132. data/test/functional/redhat_access/cases_controller_test.rb +16 -0
  133. data/test/functional/redhat_access/configuration_controller_test.rb +11 -0
  134. data/test/functional/redhat_access/log_viewer_controller_test.rb +11 -0
  135. data/test/functional/redhat_access/logs_controller_test.rb +9 -0
  136. data/test/functional/redhat_access/redhat_access_controller_test.rb +11 -0
  137. data/test/functional/redhat_access/search_controller_test.rb +11 -0
  138. data/test/functional/redhat_access/telemetry_configuration_controller_test.rb +26 -0
  139. data/test/integration/navigation_test.rb +10 -0
  140. data/test/models/redhat_access/telemetry_proxy_credentials_test.rb +9 -0
  141. data/test/redhat_access_test.rb +7 -0
  142. data/test/sos-report-test.rb +32 -0
  143. data/test/test_helper.rb +15 -0
  144. data/test/unit/helpers/redhat_access/analytics_dashboard_helper_test.rb +6 -0
  145. data/test/unit/helpers/redhat_access/attachments_helper_test.rb +6 -0
  146. data/test/unit/helpers/redhat_access/cases_helper_test.rb +6 -0
  147. data/test/unit/helpers/redhat_access/log_viewer_helper_test.rb +6 -0
  148. data/test/unit/helpers/redhat_access/logs_helper_test.rb +6 -0
  149. data/test/unit/helpers/redhat_access/redhat_access_helper_test.rb +6 -0
  150. data/test/unit/helpers/redhat_access/search_helper_test.rb +6 -0
  151. data/test/unit/helpers/redhat_access/telemetry_configuration_helper_test.rb +6 -0
  152. data/test/unit/redhat_access/telemetry_configuration_test.rb +9 -0
  153. data/vendor/assets/fonts/fonts/FontAwesome.otf +0 -0
  154. data/vendor/assets/fonts/fonts/fontawesome-webfont.eot +0 -0
  155. data/vendor/assets/fonts/fonts/fontawesome-webfont.svg +655 -0
  156. data/vendor/assets/fonts/fonts/fontawesome-webfont.ttf +0 -0
  157. data/vendor/assets/fonts/fonts/fontawesome-webfont.woff +0 -0
  158. data/vendor/assets/fonts/fonts/icomoon.eot +0 -0
  159. data/vendor/assets/fonts/fonts/icomoon.svg +22 -0
  160. data/vendor/assets/fonts/fonts/icomoon.ttf +0 -0
  161. data/vendor/assets/fonts/fonts/icomoon.woff +0 -0
  162. data/vendor/assets/fonts/fonts/overpass_bold-web.eot +0 -0
  163. data/vendor/assets/fonts/fonts/overpass_bold-web.svg +454 -0
  164. data/vendor/assets/fonts/fonts/overpass_bold-web.ttf +0 -0
  165. data/vendor/assets/fonts/fonts/overpass_bold-web.woff +0 -0
  166. data/vendor/assets/fonts/fonts/overpass_light-webfont.eot +0 -0
  167. data/vendor/assets/fonts/fonts/overpass_light-webfont.svg +2105 -0
  168. data/vendor/assets/fonts/fonts/overpass_light-webfont.ttf +0 -0
  169. data/vendor/assets/fonts/fonts/overpass_light-webfont.woff +0 -0
  170. data/vendor/assets/fonts/fonts/overpass_regular-web.eot +0 -0
  171. data/vendor/assets/fonts/fonts/overpass_regular-web.svg +454 -0
  172. data/vendor/assets/fonts/fonts/overpass_regular-web.ttf +0 -0
  173. data/vendor/assets/fonts/fonts/overpass_regular-web.woff +0 -0
  174. data/vendor/assets/fonts/fonts/portalicons.eot +0 -0
  175. data/vendor/assets/fonts/fonts/portalicons.svg +145 -0
  176. data/vendor/assets/fonts/fonts/portalicons.ttf +0 -0
  177. data/vendor/assets/fonts/fonts/portalicons.woff +0 -0
  178. data/vendor/assets/images/images/Icon_RH_Document_Blueprint_RGB_Button.png +0 -0
  179. data/vendor/assets/images/images/Icon_RH_Misc_Lifestyle_RGB_Button.png +0 -0
  180. data/vendor/assets/images/images/Icon_RH_Software_Data_CMYK_Button.png +0 -0
  181. data/vendor/assets/images/images/Icon_RH_Software_Transfer-Upload_CMYK_Button.png +0 -0
  182. data/vendor/assets/images/images/bg1.jpg +0 -0
  183. data/vendor/assets/images/images/bg_body.jpg +0 -0
  184. data/vendor/assets/images/images/bg_chart-shadow.png +0 -0
  185. data/vendor/assets/images/images/bg_dount-hole-na.png +0 -0
  186. data/vendor/assets/images/images/bg_glow.jpg +0 -0
  187. data/vendor/assets/images/images/bg_pattern.png +0 -0
  188. data/vendor/assets/images/images/i_chart.png +0 -0
  189. data/vendor/assets/images/images/img-insights-connection-sat.png +0 -0
  190. data/vendor/assets/images/images/img-insights-connection.png +0 -0
  191. data/vendor/assets/images/images/img-sat5-step2-admin.png +0 -0
  192. data/vendor/assets/images/images/img-sat5-step3-completed.png +0 -0
  193. data/vendor/assets/images/images/img-sat5-step3-pending.png +0 -0
  194. data/vendor/assets/images/images/img-sat5-step3-setup.png +0 -0
  195. data/vendor/assets/images/images/img-sat5-step5-overview.png +0 -0
  196. data/vendor/assets/images/images/img-sat5-step5-reports.png +0 -0
  197. data/vendor/assets/images/images/img-sat5-step5-systems.png +0 -0
  198. data/vendor/assets/images/images/img-sat6-step2.jpg +0 -0
  199. data/vendor/assets/images/images/img-sat6-step3.jpg +0 -0
  200. data/vendor/assets/images/images/img-sat6-step3.png +0 -0
  201. data/vendor/assets/images/images/img-sat6-step4.jpg +0 -0
  202. data/vendor/assets/images/images/img-sat6-step5a.jpg +0 -0
  203. data/vendor/assets/images/images/img-sat6-step5b.jpg +0 -0
  204. data/vendor/assets/images/images/img-sat6-step5c.jpg +0 -0
  205. data/vendor/assets/images/images/img-sat6-step5d.jpg +0 -0
  206. data/vendor/assets/images/images/keynote-snap.jpg +0 -0
  207. data/vendor/assets/images/images/keynote-snap.png +0 -0
  208. data/vendor/assets/images/images/splash-gettingstarted.jpg +0 -0
  209. data/vendor/assets/images/images/splash-learnmore.jpg +0 -0
  210. data/vendor/assets/images/images/splash-security.jpg +0 -0
  211. data/vendor/assets/javascripts/angular/angular.js +20131 -0
  212. data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui-deps.js +14103 -0
  213. data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui.js +7854 -0
  214. data/vendor/assets/javascripts/telemetry/insights.js +39 -0
  215. data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui-deps.css +11 -0
  216. data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui.css +1 -0
  217. data/vendor/assets/stylesheets/telemetry/sat6.css +18 -0
  218. metadata +341 -0
@@ -0,0 +1,569 @@
1
+ # asasaki <asasaki@redhat.com>, 2014. #zanata
2
+ msgid ""
3
+ msgstr ""
4
+ "Content-Type: text/plain; charset=UTF-8\n"
5
+ "Content-Transfer-Encoding: 8bit\n"
6
+ "MIME-Version: 1.0\n"
7
+ "PO-Revision-Date: 2014-10-14 08:27-0400\n"
8
+ "Last-Translator: asasaki <asasaki@redhat.com>\n"
9
+ "Language-Team: Japanese\n"
10
+ "Language: ja\n"
11
+ "X-Generator: Zanata 3.5.1\n"
12
+ "Plural-Forms: nplurals=1; plural=0\n"
13
+
14
+ #: app/cases/views/detailsSection.html
15
+ #: app/cases/views/new.html
16
+ msgid "24x7 Contact:"
17
+ msgstr "24x7 のお問い合わせ先:"
18
+
19
+ #: app/cases/views/detailsSection.html
20
+ #: app/cases/views/new.html
21
+ msgid "24x7 Support:"
22
+ msgstr "24x7 サポート:"
23
+
24
+ #: app/log_viewer/views/logsInstructionPane.html
25
+ msgid ""
26
+ "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;Open a New Support "
27
+ "Case"
28
+ msgstr "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;サポートケースを新規作成"
29
+
30
+ #: app/log_viewer/views/logsInstructionPane.html
31
+ msgid "<span class=\"glyphicon glyphicon-refresh\"></span>&nbsp;Select Log"
32
+ msgstr "<span class=\"glyphicon glyphicon-refresh\"></span>&nbsp;ログの選択"
33
+
34
+ #: app/cases/views/detailsSection.html
35
+ msgid "Account Name:"
36
+ msgstr "アカウント名:"
37
+
38
+ #: app/cases/views/detailsSection.html
39
+ msgid "Account Number:"
40
+ msgstr "アカウント番号:"
41
+
42
+ #: app/cases/views/new.html
43
+ msgid "Account:"
44
+ msgstr "アカウント:"
45
+
46
+ #: app/cases/views/attachLocalFile.html
47
+ #: app/cases/views/attachProductLogs.html
48
+ msgid "Add"
49
+ msgstr "追加"
50
+
51
+ #: app/cases/views/addCommentSection.html
52
+ msgid "Add Comment"
53
+ msgstr "コメントの追加"
54
+
55
+ #: app/cases/views/detailsSection.html
56
+ msgid "Advanced Mission Critical"
57
+ msgstr "Advanced Mission Critical"
58
+
59
+ #: app/cases/views/detailsSection.html
60
+ msgid "Alternate Case ID:"
61
+ msgstr "代替ケース ID:"
62
+
63
+ #: app/cases/views/attachProductLogs.html
64
+ msgid "Attach Foreman logs:"
65
+ msgstr "Foreman のログを添付:"
66
+
67
+ #: app/cases/views/attachLocalFile.html
68
+ msgid "Attach local file"
69
+ msgstr "ローカルファイルを添付します"
70
+
71
+ #: app/cases/views/listAttachments.html
72
+ msgid "Attached"
73
+ msgstr "添付"
74
+
75
+ #: app/cases/views/listAttachments.html
76
+ msgid "Attached By"
77
+ msgstr "作成者"
78
+
79
+ #: app/cases/views/listAttachments.html
80
+ msgid "Attached Files"
81
+ msgstr "添付ファイル"
82
+
83
+ #: app/cases/views/attachmentsSection.html
84
+ msgid "Attachments"
85
+ msgstr "添付ファイル"
86
+
87
+ #: app/cases/views/new.html
88
+ msgid "Attachments:"
89
+ msgstr "添付ファイル:"
90
+
91
+ #: app/log_viewer/views/navSideBar.html
92
+ msgid "Available Log Files"
93
+ msgstr "利用可能なログファイル"
94
+
95
+ #: app/cases/views/listBugzillas.html
96
+ msgid "Bugzilla Number"
97
+ msgstr "Bugzilla 番号"
98
+
99
+ #: app/cases/views/listBugzillas.html
100
+ msgid "Bugzilla Tickets"
101
+ msgstr "Bugzilla チケット"
102
+
103
+ #: app/security/views/login_form.html
104
+ #: app/cases/views/createGroupModal.html
105
+ #: app/cases/views/editGroup.html
106
+ msgid "Cancel"
107
+ msgstr "キャンセル"
108
+
109
+ #: app/cases/views/commentsSection.html
110
+ msgid "Case Discussion"
111
+ msgstr "ケースコメント"
112
+
113
+ #: app/cases/views/createGroupModal.html
114
+ #: app/cases/views/new.html
115
+ msgid "Case Group:"
116
+ msgstr "ケースグループ:"
117
+
118
+ #: app/cases/views/detailsSection.html
119
+ msgid "Case Type:"
120
+ msgstr "ケースタイプ:"
121
+
122
+ #: app/cases/views/chatButton.html
123
+ msgid "Chat offline"
124
+ msgstr "オフラインのチャット"
125
+
126
+ #: app/cases/views/chatButton.html
127
+ msgid "Chat with support"
128
+ msgstr "サポート担当者とチャットする"
129
+
130
+ #: app/common/views/treeview-selector.html
131
+ msgid "Choose File(s) To Attach:"
132
+ msgstr "添付するファイルの選択:"
133
+
134
+ #: app/common/views/alert.html
135
+ msgid "Close messages"
136
+ msgstr "メッセージを閉じる"
137
+
138
+ #: app/cases/views/requestManagementEscalationModal.html
139
+ msgid "Comment:"
140
+ msgstr "コメント:"
141
+
142
+ #: app/cases/views/createGroupModal.html
143
+ msgid "Create Case Group"
144
+ msgstr "ケースグループの作成"
145
+
146
+ #: app/cases/views/createGroupButton.html
147
+ msgid "Create New Case Group"
148
+ msgstr "ケースグループの新規作成"
149
+
150
+ #: app/cases/views/listAttachments.html
151
+ msgid "Delete"
152
+ msgstr "削除"
153
+
154
+ #: app/cases/views/deleteGroupButton.html
155
+ msgid "Delete Group"
156
+ msgstr "グループの削除"
157
+
158
+ #: app/cases/services/attachmentsService.js
159
+ msgid "Deleting attachment:"
160
+ msgstr "添付ファイルの削除:"
161
+
162
+ #: app/cases/views/descriptionSection.html
163
+ #: app/cases/views/listAttachments.html
164
+ msgid "Description"
165
+ msgstr "詳細"
166
+
167
+ #: app/cases/views/new.html
168
+ msgid "Description:"
169
+ msgstr "詳細:"
170
+
171
+ #: app/cases/views/detailsSection.html
172
+ msgid "Details"
173
+ msgstr "詳細"
174
+
175
+ #: app/log_viewer/views/logsInstructionPane.html
176
+ msgid "Diagnose"
177
+ msgstr "診断"
178
+
179
+ #: app/cases/views/addCommentSection.html
180
+ msgid "Draft saved"
181
+ msgstr "ドラフトを保存しました"
182
+
183
+ #: app/cases/views/emailNotifySelect.html
184
+ msgid "Email Notification Recipients"
185
+ msgstr "電子メール通知の受信者"
186
+
187
+ #: app/search/views/resultDetail.html
188
+ msgid "Environment"
189
+ msgstr "環境"
190
+
191
+ #: app/cases/views/exportCSVButton.html
192
+ msgid "Export All as CSV"
193
+ msgstr "すべてを CSV でエクスポート"
194
+
195
+ #: app/cases/views/exportCSVButton.html
196
+ msgid "Exporting CSV..."
197
+ msgstr "CSV をエクスポート中..."
198
+
199
+ #: app/cases/views/attachLocalFile.html
200
+ msgid ""
201
+ "File names must be less than 80 characters. Maximum file size for web-"
202
+ "uploaded attachments is 250 MB. Please FTP larger files to dropbox.redhat."
203
+ "com."
204
+ msgstr ""
205
+ "ファイル名は 80 文字未満にしてください。Web にアップロードする添付ファイルの最大サイズは 250 MBです。それ以上の場合は、FTP で "
206
+ "dropbox.redhat.com にアップロードしてください。"
207
+
208
+ #: app/cases/views/listAttachments.html
209
+ msgid "Filename"
210
+ msgstr "ファイル名"
211
+
212
+ #: app/cases/views/listNewAttachments.html
213
+ msgid "Files to Attach"
214
+ msgstr "添付するファイル"
215
+
216
+ #: app/cases/views/editGroup.html
217
+ msgid "First Name"
218
+ msgstr "氏名 (名)"
219
+
220
+ #: app/cases/views/search.html
221
+ msgid "Group"
222
+ msgstr "グループ"
223
+
224
+ #: app/cases/views/detailsSection.html
225
+ msgid "Group:"
226
+ msgstr "グループ:"
227
+
228
+ #: app/cases/views/requestManagementEscalationModal.html
229
+ msgid ""
230
+ "If you feel the issue has become more severe or the case should be a higher "
231
+ "priority, please provide a detailed comment, and the case will be reviewed "
232
+ "by a support manager."
233
+ msgstr ""
234
+ "問題がより深刻になったか、またはケースの優先度を高くする必要があると思われる場合は、詳細なコメントを入力してください。サポートマネージャーがケースを確認します。"
235
+
236
+ #: app/log_viewer/views/logsInstructionPane.html
237
+ msgid ""
238
+ "In the event that you would still like to open a support case, select 'Open "
239
+ "a New Support Case'. The case will be pre-populated with the portion of the "
240
+ "log previously selected."
241
+ msgstr ""
242
+ "サポートケースをまだ作成する必要がある場合には、「サポートケースを新規作成」を選択します。ケースにはログのすでに選択されている部分が事前設定されます。"
243
+
244
+ #: app/cases/views/addCommentSection.html
245
+ msgid "Is Public:"
246
+ msgstr "公開:"
247
+
248
+ #: app/cases/views/editGroup.html
249
+ msgid "Last Name"
250
+ msgstr "氏名 (姓):"
251
+
252
+ #: app/cases/views/detailsSection.html
253
+ msgid "Last Updated:"
254
+ msgstr "最終更新日時:"
255
+
256
+ #: app/cases/views/requestManagementEscalationModal.html
257
+ msgid "Learn more"
258
+ msgstr "詳細情報"
259
+
260
+ #: app/log_viewer/views/logsInstructionPane.html
261
+ msgid "Log File Viewer"
262
+ msgstr "ログファイルビューアー"
263
+
264
+ #: app/security/views/login_status.html
265
+ msgid "Log In"
266
+ msgstr "ログイン"
267
+
268
+ #: app/security/views/login_status.html
269
+ msgid "Log Out"
270
+ msgstr "ログアウト"
271
+
272
+ #: app/security/views/login_status.html
273
+ msgid "Logged into the Red Hat Customer Portal as"
274
+ msgstr "Red Hat カスタマーポータルにログイン中: "
275
+
276
+ #: app/cases/views/accountSelect.html
277
+ msgid "My Account"
278
+ msgstr "自分のアカウント"
279
+
280
+ #: app/cases/views/groupList.html
281
+ msgid "Name"
282
+ msgstr "名前"
283
+
284
+ #: app/cases/views/new.html
285
+ msgid "Next"
286
+ msgstr "次へ"
287
+
288
+ #: app/cases/views/listAttachments.html
289
+ msgid "No attachments added"
290
+ msgstr "添付ファイルが追加されていません"
291
+
292
+ #: app/cases/views/compactCaseList.html
293
+ #: app/cases/views/list.html
294
+ msgid "No cases found with given filters."
295
+ msgstr "指定のフィルターでケースが見つかりませんでした。"
296
+
297
+ #: app/cases/views/search.html
298
+ msgid "No cases found with given search criteria."
299
+ msgstr "指定の検索条件でケースが見つかりませんでした。"
300
+
301
+ #: app/cases/views/groupList.html
302
+ msgid "No groups found."
303
+ msgstr "グループが見つかりませんでした。"
304
+
305
+ #: app/cases/views/listBugzillas.html
306
+ msgid "No linked bugzillas"
307
+ msgstr "リンクされた Bugzilla がありません"
308
+
309
+ #: app/security/views/login_status.html
310
+ msgid "Not Logged into the Red Hat Customer Portal"
311
+ msgstr "Red Hat カスタマーポータルにログインしていません"
312
+
313
+ #: app/security/views/login_form.html
314
+ msgid "Note:"
315
+ msgstr "注意:"
316
+
317
+ #: app/cases/views/detailsSection.html
318
+ msgid "Notes:"
319
+ msgstr "注意:"
320
+
321
+ #: app/log_viewer/views/logsInstructionPane.html
322
+ msgid ""
323
+ "Once you have selected your log file then you may diagnose any part of the "
324
+ "log file and clicking the 'Red Hat Diagnose' button. This will then display "
325
+ "relevant articles and solutons from our Red Hat Knowledge base."
326
+ msgstr ""
327
+ "ログファイルを選択すると、ファイルのすべての部分を診断することができます。また「Red Hat 診断」ボタンをクリックすると、Red Hat "
328
+ "ナレッジベースの関連記事やソリューションが表示されます。"
329
+
330
+ #: app/search/views/accordion_search_results.html
331
+ #: app/cases/views/list.html
332
+ #: app/cases/views/search.html
333
+ msgid "Open a New Support Case"
334
+ msgstr "サポートケースを新規作成"
335
+
336
+ #: app/cases/views/detailsSection.html
337
+ msgid "Opened:"
338
+ msgstr "作成日時:"
339
+
340
+ #: app/cases/views/search.html
341
+ msgid "Owner"
342
+ msgstr "担当者"
343
+
344
+ #: app/cases/views/detailsSection.html
345
+ #: app/cases/views/new.html
346
+ msgid "Owner:"
347
+ msgstr "担当者:"
348
+
349
+ #: app/security/views/login_form.html
350
+ msgid "Password"
351
+ msgstr "パスワード"
352
+
353
+ #: app/cases/views/new.html
354
+ msgid "Previous"
355
+ msgstr "前へ"
356
+
357
+ #: app/cases/views/search.html
358
+ msgid "Product"
359
+ msgstr "製品"
360
+
361
+ #: app/cases/views/detailsSection.html
362
+ #: app/cases/views/new.html
363
+ msgid "Product Version:"
364
+ msgstr "製品バージョン:"
365
+
366
+ #: app/cases/views/detailsSection.html
367
+ #: app/cases/views/new.html
368
+ msgid "Product:"
369
+ msgstr "製品:"
370
+
371
+ #: app/search/views/accordion_search_results.html
372
+ #: app/search/views/list_search_results.html
373
+ #: app/cases/views/recommendationsSection.html
374
+ msgid "Recommendations"
375
+ msgstr "推奨項目"
376
+
377
+ #: app/security/views/login_form.html
378
+ msgid ""
379
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
380
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
381
+ "Hat Customer Portal resources, you must enter valid portal credentials."
382
+ msgstr ""
383
+ "Red Hat Access をご利用いただくと、問題をご自分で解決したり、問題の診断を行ったり、また Red Hat カスタマーポータル経由で Red "
384
+ "Hat にお問い合わせいただいたりすることがより簡単になります。Red Hat "
385
+ "カスタマーポータルの各種リソースにアクセスするには、有効なポータルの資格情報を入力する必要があります。"
386
+
387
+ #: app/security/views/login_form.html
388
+ msgid ""
389
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
390
+ "into this product."
391
+ msgstr "Red Hat カスタマーポータルの資格情報は、この製品にログインするために使用される資格情報とは異なります。"
392
+
393
+ #: app/log_viewer/views/logTabs.html
394
+ msgid "Red Hat Diagnose"
395
+ msgstr "Red Hat 診断"
396
+
397
+ #: app/security/views/login_form.html
398
+ msgid "Red Hat Login"
399
+ msgstr "Red Hat ログイン"
400
+
401
+ #: app/cases/views/detailsSection.html
402
+ msgid "Red Hat Owner:"
403
+ msgstr "Red Hat 担当者:"
404
+
405
+ #: app/cases/views/commentsSection.html
406
+ #: app/cases/views/requestManagementEscalationModal.html
407
+ msgid "Request Management Escalation"
408
+ msgstr "マネージメントエスカレーションをリクエスト"
409
+
410
+ #: app/search/views/resultDetail.html
411
+ msgid "Resolution"
412
+ msgstr "解決方法"
413
+
414
+ #: app/cases/views/createGroupModal.html
415
+ msgid "Save"
416
+ msgstr "保存"
417
+
418
+ #: app/cases/views/editGroup.html
419
+ msgid "Save Group"
420
+ msgstr "グループの保存"
421
+
422
+ #: app/cases/views/addCommentSection.html
423
+ msgid "Saving draft..."
424
+ msgstr "下書きの保存中..."
425
+
426
+ #: app/search/views/search_form.html
427
+ msgid "Search"
428
+ msgstr "検索"
429
+
430
+ #: app/cases/views/search.html
431
+ msgid "Searching..."
432
+ msgstr "検索中..."
433
+
434
+ #: app/log_viewer/views/navSideBar.html
435
+ msgid "Select File"
436
+ msgstr "ファイルの選択"
437
+
438
+ #: app/cases/views/attachmentsSection.html
439
+ msgid "Server File(s) To Attach:"
440
+ msgstr "添付するサーバーファイル:"
441
+
442
+ #: app/cases/views/search.html
443
+ msgid "Severity"
444
+ msgstr "重大度"
445
+
446
+ #: app/cases/views/detailsSection.html
447
+ #: app/cases/views/new.html
448
+ #: app/cases/views/searchResult.html
449
+ msgid "Severity:"
450
+ msgstr "重大度:"
451
+
452
+ #: app/security/views/login_form.html
453
+ msgid "Sign in"
454
+ msgstr "サインイン"
455
+
456
+ #: app/security/views/login_form.html
457
+ msgid "Sign into the Red Hat Customer Portal"
458
+ msgstr "Red Hat カスタマーポータルにサインインします"
459
+
460
+ #: app/log_viewer/views/logsInstructionPane.html
461
+ msgid ""
462
+ "Simply navigate to and select a log file from the list on the left and click "
463
+ "the 'Select File' button."
464
+ msgstr "左側にある一覧に移動し、一覧からログファイルを選択して「ファイルの選択」ボタンをクリックします。"
465
+
466
+ #: app/cases/views/listAttachments.html
467
+ msgid "Size"
468
+ msgstr "サイズ"
469
+
470
+ #: app/cases/views/search.html
471
+ msgid "Status"
472
+ msgstr "ステータス"
473
+
474
+ #: app/cases/views/detailsSection.html
475
+ #: app/cases/views/searchResult.html
476
+ msgid "Status:"
477
+ msgstr "ステータス:"
478
+
479
+ #: app/cases/views/new.html
480
+ msgid "Submit"
481
+ msgstr "送信"
482
+
483
+ #: app/cases/views/requestManagementEscalationModal.html
484
+ msgid "Submit Request"
485
+ msgstr "リクエストの送信"
486
+
487
+ #: app/cases/services/attachmentsService.js
488
+ msgid "Successfully deleted attachment:"
489
+ msgstr "添付ファイルが正しく削除されました:"
490
+
491
+ #: app/cases/services/attachmentsService.js
492
+ msgid "Successfully uploaded attachment"
493
+ msgstr "添付ファイルが正しくアップロードされました:"
494
+
495
+ #: app/cases/views/listBugzillas.html
496
+ msgid "Summary of Request"
497
+ msgstr "リクエストの要約"
498
+
499
+ #: app/cases/views/new.html
500
+ msgid "Summary:"
501
+ msgstr "概要:"
502
+
503
+ #: app/cases/views/detailsSection.html
504
+ msgid "Support Level:"
505
+ msgstr "サポートレベル:"
506
+
507
+ #: app/log_viewer/views/logsInstructionPane.html
508
+ msgid ""
509
+ "The log file viewer gives the ability to diagnose application logs as well "
510
+ "as file a support case with Red Hat Global Support Services."
511
+ msgstr ""
512
+ "ログファイルビューアーは、Red Hat グローバルサポートサービス (GSS) "
513
+ "にサポートケースを報告する機能と共に、アプリケーションのログを診断する機能を提供します。"
514
+
515
+ #: app/cases/views/new.html
516
+ msgid ""
517
+ "This release is now retired, please refer to the recommended FAQ prior to "
518
+ "filing a case"
519
+ msgstr "本リリースは現在使用中止になっています。ケースを作成する前に、推奨されている FAQ を参照してください。"
520
+
521
+ #: app/search/views/list_search_results.html
522
+ msgid "To view a recommendation, click on it."
523
+ msgstr "推奨項目を閲覧するには、その項目をクリックします。"
524
+
525
+ #: app/cases/views/search.html
526
+ msgid "Type"
527
+ msgstr "タイプ"
528
+
529
+ #: app/common/services/strataService.js
530
+ msgid "Unauthorized."
531
+ msgstr "承認されていません。"
532
+
533
+ #: app/cases/views/detailsSection.html
534
+ msgid "Update Details"
535
+ msgstr "更新の詳細"
536
+
537
+ #: app/cases/views/searchResult.html
538
+ msgid "Updated:"
539
+ msgstr "更新日:"
540
+
541
+ #: app/cases/views/attachmentsSection.html
542
+ msgid "Upload Attachments"
543
+ msgstr "添付ファイルのアップロード"
544
+
545
+ #: app/cases/views/editGroup.html
546
+ msgid "User Name"
547
+ msgstr "ユーザー名"
548
+
549
+ #: app/cases/views/recommendationsSection.html
550
+ msgid "View full article in new window"
551
+ msgstr "記事の全文を新規ウィンドウで表示する"
552
+
553
+ #: app/cases/views/commentsSection.html
554
+ msgid ""
555
+ "Would you like a Red Hat support manager to contact you regarding this case?"
556
+ msgstr "このケースについて、Red Hat のサポートマネージャーからの連絡を希望されますか?"
557
+
558
+ #: app/cases/views/addCommentSection.html
559
+ msgid "You have used 0% of the 32KB maximum description size."
560
+ msgstr "コメントの最大サイズ 32KB の 0% を使用しています。"
561
+
562
+ #: app/cases/views/recommendationsSection.html
563
+ msgid "handpicked"
564
+ msgstr "選択済み"
565
+
566
+ #: app/cases/services/attachmentsService.js
567
+ msgid "to case"
568
+ msgstr "対象のケース"
569
+