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,570 @@
1
+ # eukim <eukim@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 06:39-0400\n"
8
+ "Last-Translator: eukim <eukim@redhat.com>\n"
9
+ "Language-Team: Korean\n"
10
+ "Language: ko\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 "고급 미션 크리티컬"
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자 미만이어야 합니다. 웹에 업로드될 최대 첨부 파일크기는 250 MB입니다. 더 큰 파일은 FTP를(dropbox."
206
+ "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
+
237
+ #: app/log_viewer/views/logsInstructionPane.html
238
+ msgid ""
239
+ "In the event that you would still like to open a support case, select 'Open "
240
+ "a New Support Case'. The case will be pre-populated with the portion of the "
241
+ "log previously selected."
242
+ msgstr ""
243
+ "기술 문의 사항을 아직 열어 두어야 할 경우 '새 기술 문의 생성'을 선택합니다. 기술 문의는 이전에 선택한 로그의 일부로 사전 "
244
+ "작성됩니다. "
245
+
246
+ #: app/cases/views/addCommentSection.html
247
+ msgid "Is Public:"
248
+ msgstr "공개:"
249
+
250
+ #: app/cases/views/editGroup.html
251
+ msgid "Last Name"
252
+ msgstr "성"
253
+
254
+ #: app/cases/views/detailsSection.html
255
+ msgid "Last Updated:"
256
+ msgstr "마지막 업데이트:"
257
+
258
+ #: app/cases/views/requestManagementEscalationModal.html
259
+ msgid "Learn more"
260
+ msgstr "자세한 정보"
261
+
262
+ #: app/log_viewer/views/logsInstructionPane.html
263
+ msgid "Log File Viewer"
264
+ msgstr "로그 파일 뷰어 "
265
+
266
+ #: app/security/views/login_status.html
267
+ msgid "Log In"
268
+ msgstr "로그인"
269
+
270
+ #: app/security/views/login_status.html
271
+ msgid "Log Out"
272
+ msgstr "로그 아웃 "
273
+
274
+ #: app/security/views/login_status.html
275
+ msgid "Logged into the Red Hat Customer Portal as"
276
+ msgstr "Red Hat 고객 포털로 로그인 "
277
+
278
+ #: app/cases/views/accountSelect.html
279
+ msgid "My Account"
280
+ msgstr "내 계정"
281
+
282
+ #: app/cases/views/groupList.html
283
+ msgid "Name"
284
+ msgstr "이름 "
285
+
286
+ #: app/cases/views/new.html
287
+ msgid "Next"
288
+ msgstr "다음"
289
+
290
+ #: app/cases/views/listAttachments.html
291
+ msgid "No attachments added"
292
+ msgstr "추가된 첨부 파일이 없습니다 "
293
+
294
+ #: app/cases/views/compactCaseList.html
295
+ #: app/cases/views/list.html
296
+ msgid "No cases found with given filters."
297
+ msgstr "지정된 필터에 맞는 기술 문의 사항이 없습니다."
298
+
299
+ #: app/cases/views/search.html
300
+ msgid "No cases found with given search criteria."
301
+ msgstr "지정된 검색 조건에 맞는 기술 문의 사항이 없습니다. "
302
+
303
+ #: app/cases/views/groupList.html
304
+ msgid "No groups found."
305
+ msgstr "그룹을 찾을 수 없습니다."
306
+
307
+ #: app/cases/views/listBugzillas.html
308
+ msgid "No linked bugzillas"
309
+ msgstr "링크된 Bugzilla가 없습니다 "
310
+
311
+ #: app/security/views/login_status.html
312
+ msgid "Not Logged into the Red Hat Customer Portal"
313
+ msgstr "Red Hat 고객 포털에 로그인되어 있지 않습니다 "
314
+
315
+ #: app/security/views/login_form.html
316
+ msgid "Note:"
317
+ msgstr "알림: "
318
+
319
+ #: app/cases/views/detailsSection.html
320
+ msgid "Notes:"
321
+ msgstr "알림: "
322
+
323
+ #: app/log_viewer/views/logsInstructionPane.html
324
+ msgid ""
325
+ "Once you have selected your log file then you may diagnose any part of the "
326
+ "log file and clicking the 'Red Hat Diagnose' button. This will then display "
327
+ "relevant articles and solutons from our Red Hat Knowledge base."
328
+ msgstr ""
329
+ "로그 파일을 선택하면 로그 파일의 모든 부분을 진단할 수 있으므로 'Red Hat 진단' 버튼을 클릭합니다. 그러면 Red Hat 지식 "
330
+ "기반에서 관련 기사 및 솔루션이 표시됩니다. "
331
+
332
+ #: app/search/views/accordion_search_results.html
333
+ #: app/cases/views/list.html
334
+ #: app/cases/views/search.html
335
+ msgid "Open a New Support Case"
336
+ msgstr "새 기술문의 생성"
337
+
338
+ #: app/cases/views/detailsSection.html
339
+ msgid "Opened:"
340
+ msgstr "생성일: "
341
+
342
+ #: app/cases/views/search.html
343
+ msgid "Owner"
344
+ msgstr "소유자 "
345
+
346
+ #: app/cases/views/detailsSection.html
347
+ #: app/cases/views/new.html
348
+ msgid "Owner:"
349
+ msgstr "소유자:"
350
+
351
+ #: app/security/views/login_form.html
352
+ msgid "Password"
353
+ msgstr "암호 "
354
+
355
+ #: app/cases/views/new.html
356
+ msgid "Previous"
357
+ msgstr "이전"
358
+
359
+ #: app/cases/views/search.html
360
+ msgid "Product"
361
+ msgstr "제품"
362
+
363
+ #: app/cases/views/detailsSection.html
364
+ #: app/cases/views/new.html
365
+ msgid "Product Version:"
366
+ msgstr "제품 버전:"
367
+
368
+ #: app/cases/views/detailsSection.html
369
+ #: app/cases/views/new.html
370
+ msgid "Product:"
371
+ msgstr "제품:"
372
+
373
+ #: app/search/views/accordion_search_results.html
374
+ #: app/search/views/list_search_results.html
375
+ #: app/cases/views/recommendationsSection.html
376
+ msgid "Recommendations"
377
+ msgstr "권장 사항 "
378
+
379
+ #: app/security/views/login_form.html
380
+ msgid ""
381
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
382
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
383
+ "Hat Customer Portal resources, you must enter valid portal credentials."
384
+ msgstr ""
385
+ "Red Hat Access를 사용하여 문제를 직접 해결하고, 문제를 진단하거나 Red Hat 고객 포털을 통해 보다 쉽게 지원 문의할 "
386
+ "수 있습니다. Red Hat 고객 포털 리소스에 액세스하려면 유효한 포털 인증을 입력해야 합니다. "
387
+
388
+ #: app/security/views/login_form.html
389
+ msgid ""
390
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
391
+ "into this product."
392
+ msgstr "Red Hat 고객 포털 인증은 제품에 로그인하는데 사용되는 인증과 다릅니다."
393
+
394
+ #: app/log_viewer/views/logTabs.html
395
+ msgid "Red Hat Diagnose"
396
+ msgstr "Red Hat 진단"
397
+
398
+ #: app/security/views/login_form.html
399
+ msgid "Red Hat Login"
400
+ msgstr "Red Hat 로그인"
401
+
402
+ #: app/cases/views/detailsSection.html
403
+ msgid "Red Hat Owner:"
404
+ msgstr "Red Hat 소유자:"
405
+
406
+ #: app/cases/views/commentsSection.html
407
+ #: app/cases/views/requestManagementEscalationModal.html
408
+ msgid "Request Management Escalation"
409
+ msgstr "관리 에스컬레이션 요청"
410
+
411
+ #: app/search/views/resultDetail.html
412
+ msgid "Resolution"
413
+ msgstr "해결 방법 "
414
+
415
+ #: app/cases/views/createGroupModal.html
416
+ msgid "Save"
417
+ msgstr "저장"
418
+
419
+ #: app/cases/views/editGroup.html
420
+ msgid "Save Group"
421
+ msgstr "그룹 저장"
422
+
423
+ #: app/cases/views/addCommentSection.html
424
+ msgid "Saving draft..."
425
+ msgstr "초안 저장 중..."
426
+
427
+ #: app/search/views/search_form.html
428
+ msgid "Search"
429
+ msgstr "검색 "
430
+
431
+ #: app/cases/views/search.html
432
+ msgid "Searching..."
433
+ msgstr "검색 중.. "
434
+
435
+ #: app/log_viewer/views/navSideBar.html
436
+ msgid "Select File"
437
+ msgstr "파일 선택 "
438
+
439
+ #: app/cases/views/attachmentsSection.html
440
+ msgid "Server File(s) To Attach:"
441
+ msgstr "첨부할 서버 파일: "
442
+
443
+ #: app/cases/views/search.html
444
+ msgid "Severity"
445
+ msgstr "심각성 "
446
+
447
+ #: app/cases/views/detailsSection.html
448
+ #: app/cases/views/new.html
449
+ #: app/cases/views/searchResult.html
450
+ msgid "Severity:"
451
+ msgstr "심각성:"
452
+
453
+ #: app/security/views/login_form.html
454
+ msgid "Sign in"
455
+ msgstr "로그인 "
456
+
457
+ #: app/security/views/login_form.html
458
+ msgid "Sign into the Red Hat Customer Portal"
459
+ msgstr "Red Hat 고객 포털로 로그인 "
460
+
461
+ #: app/log_viewer/views/logsInstructionPane.html
462
+ msgid ""
463
+ "Simply navigate to and select a log file from the list on the left and click "
464
+ "the 'Select File' button."
465
+ msgstr "왼쪽에 있는 목록으로 이동하여 로그 파일을 선택한 후 '파일 선택' 버튼을 클릭합니다."
466
+
467
+ #: app/cases/views/listAttachments.html
468
+ msgid "Size"
469
+ msgstr "크기 "
470
+
471
+ #: app/cases/views/search.html
472
+ msgid "Status"
473
+ msgstr "상태"
474
+
475
+ #: app/cases/views/detailsSection.html
476
+ #: app/cases/views/searchResult.html
477
+ msgid "Status:"
478
+ msgstr "상태: "
479
+
480
+ #: app/cases/views/new.html
481
+ msgid "Submit"
482
+ msgstr "제출"
483
+
484
+ #: app/cases/views/requestManagementEscalationModal.html
485
+ msgid "Submit Request"
486
+ msgstr "요청 제출"
487
+
488
+ #: app/cases/services/attachmentsService.js
489
+ msgid "Successfully deleted attachment:"
490
+ msgstr "첨부 파일을 성공적으로 삭제했습니다:"
491
+
492
+ #: app/cases/services/attachmentsService.js
493
+ msgid "Successfully uploaded attachment"
494
+ msgstr "첨부 파일을 성공적으로 업로드했습니다 "
495
+
496
+ #: app/cases/views/listBugzillas.html
497
+ msgid "Summary of Request"
498
+ msgstr "요청 요약 "
499
+
500
+ #: app/cases/views/new.html
501
+ msgid "Summary:"
502
+ msgstr "요약: "
503
+
504
+ #: app/cases/views/detailsSection.html
505
+ msgid "Support Level:"
506
+ msgstr "지원 수준: "
507
+
508
+ #: app/log_viewer/views/logsInstructionPane.html
509
+ msgid ""
510
+ "The log file viewer gives the ability to diagnose application logs as well "
511
+ "as file a support case with Red Hat Global Support Services."
512
+ msgstr ""
513
+ "로그 파일 뷰어는 Red Hat 글로벌 지원 서비스 (GSS)를 통해 기술 지원 사항을 저장할 수 있는 기능과 함께 애플리케이션을 "
514
+ "진단할 수 있는 기능을 제공합니다."
515
+
516
+ #: app/cases/views/new.html
517
+ msgid ""
518
+ "This release is now retired, please refer to the recommended FAQ prior to "
519
+ "filing a case"
520
+ msgstr "이 릴리즈는 현재 만료되었습니다. 기술 문의를 작성하기 전 FAQ를 참조하십시오."
521
+
522
+ #: app/search/views/list_search_results.html
523
+ msgid "To view a recommendation, click on it."
524
+ msgstr "권장 사항을 확인하려면 해당 항목을 클릭합니다."
525
+
526
+ #: app/cases/views/search.html
527
+ msgid "Type"
528
+ msgstr "유형 "
529
+
530
+ #: app/common/services/strataService.js
531
+ msgid "Unauthorized."
532
+ msgstr "인증되지 않았습니다."
533
+
534
+ #: app/cases/views/detailsSection.html
535
+ msgid "Update Details"
536
+ msgstr "업데이트 상세 정보 "
537
+
538
+ #: app/cases/views/searchResult.html
539
+ msgid "Updated:"
540
+ msgstr "업데이트된 날짜:"
541
+
542
+ #: app/cases/views/attachmentsSection.html
543
+ msgid "Upload Attachments"
544
+ msgstr "첨부 파일 업로드 "
545
+
546
+ #: app/cases/views/editGroup.html
547
+ msgid "User Name"
548
+ msgstr "사용자 이름"
549
+
550
+ #: app/cases/views/recommendationsSection.html
551
+ msgid "View full article in new window"
552
+ msgstr "새 창에서 전체 기사 보기"
553
+
554
+ #: app/cases/views/commentsSection.html
555
+ msgid ""
556
+ "Would you like a Red Hat support manager to contact you regarding this case?"
557
+ msgstr "이 기술 문의와 관련하여 Red Hat 지원 관리자가 귀하에게 연락하도록 하시겠습니까?"
558
+
559
+ #: app/cases/views/addCommentSection.html
560
+ msgid "You have used 0% of the 32KB maximum description size."
561
+ msgstr "최대 설명 크기인 32KB 중 0%가 사용되었습니다. "
562
+
563
+ #: app/cases/views/recommendationsSection.html
564
+ msgid "handpicked"
565
+ msgstr "엄선"
566
+
567
+ #: app/cases/services/attachmentsService.js
568
+ msgid "to case"
569
+ msgstr "기술 문의 사항 "
570
+