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,580 @@
1
+ # ypoyarko <ypoyarko@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-23 11:26-0400\n"
8
+ "Last-Translator: ypoyarko <ypoyarko@redhat.com>\n"
9
+ "Language-Team: Russian\n"
10
+ "Language: ru\n"
11
+ "X-Generator: Zanata 3.5.1\n"
12
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
13
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
14
+
15
+ #: app/cases/views/detailsSection.html
16
+ #: app/cases/views/new.html
17
+ msgid "24x7 Contact:"
18
+ msgstr "Круглосуточная связь:"
19
+
20
+ #: app/cases/views/detailsSection.html
21
+ #: app/cases/views/new.html
22
+ msgid "24x7 Support:"
23
+ msgstr "Круглосуточная поддержка:"
24
+
25
+ #: app/log_viewer/views/logsInstructionPane.html
26
+ msgid ""
27
+ "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;Open a New Support "
28
+ "Case"
29
+ msgstr ""
30
+ "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;Открыть новый запрос"
31
+
32
+ #: app/log_viewer/views/logsInstructionPane.html
33
+ msgid "<span class=\"glyphicon glyphicon-refresh\"></span>&nbsp;Select Log"
34
+ msgstr ""
35
+ "<span class=\"glyphicon glyphicon-refresh\"></span>&nbsp;Выберите журнал"
36
+
37
+ #: app/cases/views/detailsSection.html
38
+ msgid "Account Name:"
39
+ msgstr "Имя учетной записи:"
40
+
41
+ #: app/cases/views/detailsSection.html
42
+ msgid "Account Number:"
43
+ msgstr "Номер учетной записи:"
44
+
45
+ #: app/cases/views/new.html
46
+ msgid "Account:"
47
+ msgstr "Учетная запись:"
48
+
49
+ #: app/cases/views/attachLocalFile.html
50
+ #: app/cases/views/attachProductLogs.html
51
+ msgid "Add"
52
+ msgstr "Добавить"
53
+
54
+ #: app/cases/views/addCommentSection.html
55
+ msgid "Add Comment"
56
+ msgstr "Добавить комментарий"
57
+
58
+ #: app/cases/views/detailsSection.html
59
+ msgid "Advanced Mission Critical"
60
+ msgstr "Программа критического обслуживания"
61
+
62
+ #: app/cases/views/detailsSection.html
63
+ msgid "Alternate Case ID:"
64
+ msgstr "Дополнительный идентификатор запроса:"
65
+
66
+ #: app/cases/views/attachProductLogs.html
67
+ msgid "Attach Foreman logs:"
68
+ msgstr "Добавить журналы Foreman:"
69
+
70
+ #: app/cases/views/attachLocalFile.html
71
+ msgid "Attach local file"
72
+ msgstr "Добавить локальный файл"
73
+
74
+ #: app/cases/views/listAttachments.html
75
+ msgid "Attached"
76
+ msgstr "Добавлено"
77
+
78
+ #: app/cases/views/listAttachments.html
79
+ msgid "Attached By"
80
+ msgstr "Добавил "
81
+
82
+ #: app/cases/views/listAttachments.html
83
+ msgid "Attached Files"
84
+ msgstr "Добавленные файлы"
85
+
86
+ #: app/cases/views/attachmentsSection.html
87
+ msgid "Attachments"
88
+ msgstr "Вложения"
89
+
90
+ #: app/cases/views/new.html
91
+ msgid "Attachments:"
92
+ msgstr "Вложения:"
93
+
94
+ #: app/log_viewer/views/navSideBar.html
95
+ msgid "Available Log Files"
96
+ msgstr "Доступные журналы"
97
+
98
+ #: app/cases/views/listBugzillas.html
99
+ msgid "Bugzilla Number"
100
+ msgstr "Номер Bugzilla"
101
+
102
+ #: app/cases/views/listBugzillas.html
103
+ msgid "Bugzilla Tickets"
104
+ msgstr "Отчеты Bugzilla"
105
+
106
+ #: app/security/views/login_form.html
107
+ #: app/cases/views/createGroupModal.html
108
+ #: app/cases/views/editGroup.html
109
+ msgid "Cancel"
110
+ msgstr "Отмена"
111
+
112
+ #: app/cases/views/commentsSection.html
113
+ msgid "Case Discussion"
114
+ msgstr "Обсуждение запроса"
115
+
116
+ #: app/cases/views/createGroupModal.html
117
+ #: app/cases/views/new.html
118
+ msgid "Case Group:"
119
+ msgstr "Группа:"
120
+
121
+ #: app/cases/views/detailsSection.html
122
+ msgid "Case Type:"
123
+ msgstr "Тип запроса:"
124
+
125
+ #: app/cases/views/chatButton.html
126
+ msgid "Chat offline"
127
+ msgstr "Оффлайн чат"
128
+
129
+ #: app/cases/views/chatButton.html
130
+ msgid "Chat with support"
131
+ msgstr "Чат с поддержкой"
132
+
133
+ #: app/common/views/treeview-selector.html
134
+ msgid "Choose File(s) To Attach:"
135
+ msgstr "Выберите файлы:"
136
+
137
+ #: app/common/views/alert.html
138
+ msgid "Close messages"
139
+ msgstr "Закрыть сообщения"
140
+
141
+ #: app/cases/views/requestManagementEscalationModal.html
142
+ msgid "Comment:"
143
+ msgstr "Комментарий:"
144
+
145
+ #: app/cases/views/createGroupModal.html
146
+ msgid "Create Case Group"
147
+ msgstr "Создать группу"
148
+
149
+ #: app/cases/views/createGroupButton.html
150
+ msgid "Create New Case Group"
151
+ msgstr "Создать новую группу запросов"
152
+
153
+ #: app/cases/views/listAttachments.html
154
+ msgid "Delete"
155
+ msgstr "Удалить"
156
+
157
+ #: app/cases/views/deleteGroupButton.html
158
+ msgid "Delete Group"
159
+ msgstr "Удалить группу"
160
+
161
+ #: app/cases/services/attachmentsService.js
162
+ msgid "Deleting attachment:"
163
+ msgstr "Удаление вложения:"
164
+
165
+ #: app/cases/views/descriptionSection.html
166
+ #: app/cases/views/listAttachments.html
167
+ msgid "Description"
168
+ msgstr "Описание"
169
+
170
+ #: app/cases/views/new.html
171
+ msgid "Description:"
172
+ msgstr "Описание:"
173
+
174
+ #: app/cases/views/detailsSection.html
175
+ msgid "Details"
176
+ msgstr "Свойства"
177
+
178
+ #: app/log_viewer/views/logsInstructionPane.html
179
+ msgid "Diagnose"
180
+ msgstr "Диагностика"
181
+
182
+ #: app/cases/views/addCommentSection.html
183
+ msgid "Draft saved"
184
+ msgstr "Черновик сохранен"
185
+
186
+ #: app/cases/views/emailNotifySelect.html
187
+ msgid "Email Notification Recipients"
188
+ msgstr "Получатели уведомлений"
189
+
190
+ #: app/search/views/resultDetail.html
191
+ msgid "Environment"
192
+ msgstr "Окружение"
193
+
194
+ #: app/cases/views/exportCSVButton.html
195
+ msgid "Export All as CSV"
196
+ msgstr "Экспорт в CSV"
197
+
198
+ #: app/cases/views/exportCSVButton.html
199
+ msgid "Exporting CSV..."
200
+ msgstr "Экспорт в CSV..."
201
+
202
+ #: app/cases/views/attachLocalFile.html
203
+ msgid ""
204
+ "File names must be less than 80 characters. Maximum file size for web-"
205
+ "uploaded attachments is 250 MB. Please FTP larger files to dropbox.redhat."
206
+ "com."
207
+ msgstr ""
208
+ "Имена файлов не могут содержать больше 80 знаков, а размер вложения не "
209
+ "должен превышать 250 МБ. Для больших файлов рекомендуется использовать "
210
+ "dropbox.redhat.com."
211
+
212
+ #: app/cases/views/listAttachments.html
213
+ msgid "Filename"
214
+ msgstr "Имя файла"
215
+
216
+ #: app/cases/views/listNewAttachments.html
217
+ msgid "Files to Attach"
218
+ msgstr "Файлы для добавления"
219
+
220
+ #: app/cases/views/editGroup.html
221
+ msgid "First Name"
222
+ msgstr "Имя"
223
+
224
+ #: app/cases/views/search.html
225
+ msgid "Group"
226
+ msgstr "Группа"
227
+
228
+ #: app/cases/views/detailsSection.html
229
+ msgid "Group:"
230
+ msgstr "Группа:"
231
+
232
+ #: app/cases/views/requestManagementEscalationModal.html
233
+ msgid ""
234
+ "If you feel the issue has become more severe or the case should be a higher "
235
+ "priority, please provide a detailed comment, and the case will be reviewed "
236
+ "by a support manager."
237
+ msgstr ""
238
+ "Если вы считаете, что ваш запрос должен иметь высокий приоритет, объясните "
239
+ "причину в комментариях."
240
+
241
+ #: app/log_viewer/views/logsInstructionPane.html
242
+ msgid ""
243
+ "In the event that you would still like to open a support case, select 'Open "
244
+ "a New Support Case'. The case will be pre-populated with the portion of the "
245
+ "log previously selected."
246
+ msgstr ""
247
+ "Если вы все же хотите открыть запрос, нажмите «Открыть новый запрос». Данные "
248
+ "из выбранного журнала будут автоматически добавлены в отчет."
249
+
250
+ #: app/cases/views/addCommentSection.html
251
+ msgid "Is Public:"
252
+ msgstr "Общий доступ:"
253
+
254
+ #: app/cases/views/editGroup.html
255
+ msgid "Last Name"
256
+ msgstr "Фамилия"
257
+
258
+ #: app/cases/views/detailsSection.html
259
+ msgid "Last Updated:"
260
+ msgstr "Обновлен:"
261
+
262
+ #: app/cases/views/requestManagementEscalationModal.html
263
+ msgid "Learn more"
264
+ msgstr "Узнать больше"
265
+
266
+ #: app/log_viewer/views/logsInstructionPane.html
267
+ msgid "Log File Viewer"
268
+ msgstr "Просмотр журналов"
269
+
270
+ #: app/security/views/login_status.html
271
+ msgid "Log In"
272
+ msgstr "Вход"
273
+
274
+ #: app/security/views/login_status.html
275
+ msgid "Log Out"
276
+ msgstr "Выход"
277
+
278
+ #: app/security/views/login_status.html
279
+ msgid "Logged into the Red Hat Customer Portal as"
280
+ msgstr "Пользователь:"
281
+
282
+ #: app/cases/views/accountSelect.html
283
+ msgid "My Account"
284
+ msgstr "Моя учетная запись"
285
+
286
+ #: app/cases/views/groupList.html
287
+ msgid "Name"
288
+ msgstr "Имя"
289
+
290
+ #: app/cases/views/new.html
291
+ msgid "Next"
292
+ msgstr "Вперед"
293
+
294
+ #: app/cases/views/listAttachments.html
295
+ msgid "No attachments added"
296
+ msgstr "Нет вложений"
297
+
298
+ #: app/cases/views/compactCaseList.html
299
+ #: app/cases/views/list.html
300
+ msgid "No cases found with given filters."
301
+ msgstr "Нет запросов."
302
+
303
+ #: app/cases/views/search.html
304
+ msgid "No cases found with given search criteria."
305
+ msgstr "Нет запросов."
306
+
307
+ #: app/cases/views/groupList.html
308
+ msgid "No groups found."
309
+ msgstr "Нет групп."
310
+
311
+ #: app/cases/views/listBugzillas.html
312
+ msgid "No linked bugzillas"
313
+ msgstr "Нет запросов Bugzilla"
314
+
315
+ #: app/security/views/login_status.html
316
+ msgid "Not Logged into the Red Hat Customer Portal"
317
+ msgstr "Не авторизован на портале пользователей"
318
+
319
+ #: app/security/views/login_form.html
320
+ msgid "Note:"
321
+ msgstr "Примечание:"
322
+
323
+ #: app/cases/views/detailsSection.html
324
+ msgid "Notes:"
325
+ msgstr "Примечания:"
326
+
327
+ #: app/log_viewer/views/logsInstructionPane.html
328
+ msgid ""
329
+ "Once you have selected your log file then you may diagnose any part of the "
330
+ "log file and clicking the 'Red Hat Diagnose' button. This will then display "
331
+ "relevant articles and solutons from our Red Hat Knowledge base."
332
+ msgstr ""
333
+ "После выбора журнала можно провести его диагностику, нажав кнопку "
334
+ "«Диагностика Red Hat». Будут показаны подходящие статьи и решения из базы "
335
+ "данных Red Hat."
336
+
337
+ #: app/search/views/accordion_search_results.html
338
+ #: app/cases/views/list.html
339
+ #: app/cases/views/search.html
340
+ msgid "Open a New Support Case"
341
+ msgstr "Открыть новый запрос"
342
+
343
+ #: app/cases/views/detailsSection.html
344
+ msgid "Opened:"
345
+ msgstr "Открыт: "
346
+
347
+ #: app/cases/views/search.html
348
+ msgid "Owner"
349
+ msgstr "Владелец"
350
+
351
+ #: app/cases/views/detailsSection.html
352
+ #: app/cases/views/new.html
353
+ msgid "Owner:"
354
+ msgstr "Владелец:"
355
+
356
+ #: app/security/views/login_form.html
357
+ msgid "Password"
358
+ msgstr "Пароль"
359
+
360
+ #: app/cases/views/new.html
361
+ msgid "Previous"
362
+ msgstr "Назад"
363
+
364
+ #: app/cases/views/search.html
365
+ msgid "Product"
366
+ msgstr "Продукт"
367
+
368
+ #: app/cases/views/detailsSection.html
369
+ #: app/cases/views/new.html
370
+ msgid "Product Version:"
371
+ msgstr "Версия:"
372
+
373
+ #: app/cases/views/detailsSection.html
374
+ #: app/cases/views/new.html
375
+ msgid "Product:"
376
+ msgstr "Продукт:"
377
+
378
+ #: app/search/views/accordion_search_results.html
379
+ #: app/search/views/list_search_results.html
380
+ #: app/cases/views/recommendationsSection.html
381
+ msgid "Recommendations"
382
+ msgstr "Рекомендации"
383
+
384
+ #: app/security/views/login_form.html
385
+ msgid ""
386
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
387
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
388
+ "Hat Customer Portal resources, you must enter valid portal credentials."
389
+ msgstr ""
390
+ "Red Hat Access облегчает самостоятельную диагностику конфликтов и "
391
+ "предоставляет каналы связи с Red Hat через портал пользователей. Для доступа "
392
+ "к ресурсам надо будет авторизоваться на портале."
393
+
394
+ #: app/security/views/login_form.html
395
+ msgid ""
396
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
397
+ "into this product."
398
+ msgstr ""
399
+ "Имя пользователя и пароль доступа к порталу отличаются от имени и пароля, "
400
+ "связанных с продуктом."
401
+
402
+ #: app/log_viewer/views/logTabs.html
403
+ msgid "Red Hat Diagnose"
404
+ msgstr "Диагностика Red Hat"
405
+
406
+ #: app/security/views/login_form.html
407
+ msgid "Red Hat Login"
408
+ msgstr "Учетная запись Red Hat"
409
+
410
+ #: app/cases/views/detailsSection.html
411
+ msgid "Red Hat Owner:"
412
+ msgstr "Владелец Red Hat:"
413
+
414
+ #: app/cases/views/commentsSection.html
415
+ #: app/cases/views/requestManagementEscalationModal.html
416
+ msgid "Request Management Escalation"
417
+ msgstr "Связаться с менеджером"
418
+
419
+ #: app/search/views/resultDetail.html
420
+ msgid "Resolution"
421
+ msgstr "Решение"
422
+
423
+ #: app/cases/views/createGroupModal.html
424
+ msgid "Save"
425
+ msgstr "Сохранить"
426
+
427
+ #: app/cases/views/editGroup.html
428
+ msgid "Save Group"
429
+ msgstr "Сохранить группу"
430
+
431
+ #: app/cases/views/addCommentSection.html
432
+ msgid "Saving draft..."
433
+ msgstr "Сохранение черновика..."
434
+
435
+ #: app/search/views/search_form.html
436
+ msgid "Search"
437
+ msgstr "Поиск"
438
+
439
+ #: app/cases/views/search.html
440
+ msgid "Searching..."
441
+ msgstr "Поиск..."
442
+
443
+ #: app/log_viewer/views/navSideBar.html
444
+ msgid "Select File"
445
+ msgstr "Выбрать файл"
446
+
447
+ #: app/cases/views/attachmentsSection.html
448
+ msgid "Server File(s) To Attach:"
449
+ msgstr "Файлы на сервере:"
450
+
451
+ #: app/cases/views/search.html
452
+ msgid "Severity"
453
+ msgstr "Степень"
454
+
455
+ #: app/cases/views/detailsSection.html
456
+ #: app/cases/views/new.html
457
+ #: app/cases/views/searchResult.html
458
+ msgid "Severity:"
459
+ msgstr "Степень:"
460
+
461
+ #: app/security/views/login_form.html
462
+ msgid "Sign in"
463
+ msgstr "Вход"
464
+
465
+ #: app/security/views/login_form.html
466
+ msgid "Sign into the Red Hat Customer Portal"
467
+ msgstr "Авторизация на портале пользователей Red Hat"
468
+
469
+ #: app/log_viewer/views/logsInstructionPane.html
470
+ msgid ""
471
+ "Simply navigate to and select a log file from the list on the left and click "
472
+ "the 'Select File' button."
473
+ msgstr "Выберите журнал из списка и нажмите «Выбрать файл»."
474
+
475
+ #: app/cases/views/listAttachments.html
476
+ msgid "Size"
477
+ msgstr "Размер"
478
+
479
+ #: app/cases/views/search.html
480
+ msgid "Status"
481
+ msgstr "Статус"
482
+
483
+ #: app/cases/views/detailsSection.html
484
+ #: app/cases/views/searchResult.html
485
+ msgid "Status:"
486
+ msgstr "Статус:"
487
+
488
+ #: app/cases/views/new.html
489
+ msgid "Submit"
490
+ msgstr "Отправить"
491
+
492
+ #: app/cases/views/requestManagementEscalationModal.html
493
+ msgid "Submit Request"
494
+ msgstr "Отправить запрос"
495
+
496
+ #: app/cases/services/attachmentsService.js
497
+ msgid "Successfully deleted attachment:"
498
+ msgstr "Вложение удалено:"
499
+
500
+ #: app/cases/services/attachmentsService.js
501
+ msgid "Successfully uploaded attachment"
502
+ msgstr "Вложение добавлено:"
503
+
504
+ #: app/cases/views/listBugzillas.html
505
+ msgid "Summary of Request"
506
+ msgstr "Сводка запроса"
507
+
508
+ #: app/cases/views/new.html
509
+ msgid "Summary:"
510
+ msgstr "Сводка:"
511
+
512
+ #: app/cases/views/detailsSection.html
513
+ msgid "Support Level:"
514
+ msgstr "Уровень поддержки:"
515
+
516
+ #: app/log_viewer/views/logsInstructionPane.html
517
+ msgid ""
518
+ "The log file viewer gives the ability to diagnose application logs as well "
519
+ "as file a support case with Red Hat Global Support Services."
520
+ msgstr ""
521
+ "В окне просмотра журналов можно проверить журналы программ и создать запрос "
522
+ "обслуживания в службе поддержки Red Hat."
523
+
524
+ #: app/cases/views/new.html
525
+ msgid ""
526
+ "This release is now retired, please refer to the recommended FAQ prior to "
527
+ "filing a case"
528
+ msgstr ""
529
+ "Жизненный цикл этого выпуска подошел к концу. Прежде чем создать запрос, "
530
+ "ознакомьтесь с секцией вопросов и ответов."
531
+
532
+ #: app/search/views/list_search_results.html
533
+ msgid "To view a recommendation, click on it."
534
+ msgstr "Щелкните на рекомендации для ее просмотра."
535
+
536
+ #: app/cases/views/search.html
537
+ msgid "Type"
538
+ msgstr "Тип"
539
+
540
+ #: app/common/services/strataService.js
541
+ msgid "Unauthorized."
542
+ msgstr "Не авторизован."
543
+
544
+ #: app/cases/views/detailsSection.html
545
+ msgid "Update Details"
546
+ msgstr "Обновить свойства"
547
+
548
+ #: app/cases/views/searchResult.html
549
+ msgid "Updated:"
550
+ msgstr "Обновлено:"
551
+
552
+ #: app/cases/views/attachmentsSection.html
553
+ msgid "Upload Attachments"
554
+ msgstr "Добавить вложения"
555
+
556
+ #: app/cases/views/editGroup.html
557
+ msgid "User Name"
558
+ msgstr "Имя пользователя"
559
+
560
+ #: app/cases/views/recommendationsSection.html
561
+ msgid "View full article in new window"
562
+ msgstr "Открыть статью в новом окне"
563
+
564
+ #: app/cases/views/commentsSection.html
565
+ msgid ""
566
+ "Would you like a Red Hat support manager to contact you regarding this case?"
567
+ msgstr "Вы согласны, чтобы менеджер службы поддержки Red Hat с вами связался?"
568
+
569
+ #: app/cases/views/addCommentSection.html
570
+ msgid "You have used 0% of the 32KB maximum description size."
571
+ msgstr "Для описания использовано 0% из 32 КБ."
572
+
573
+ #: app/cases/views/recommendationsSection.html
574
+ msgid "handpicked"
575
+ msgstr "подобрано"
576
+
577
+ #: app/cases/services/attachmentsService.js
578
+ msgid "to case"
579
+ msgstr "к запросу"
580
+