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,589 @@
1
+ # hpeters <hpeters@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 02:01-0400\n"
8
+ "Last-Translator: hpeters <hpeters@redhat.com>\n"
9
+ "Language-Team: German\n"
10
+ "Language: de\n"
11
+ "X-Generator: Zanata 3.5.1\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
13
+
14
+ #: app/cases/views/detailsSection.html
15
+ #: app/cases/views/new.html
16
+ msgid "24x7 Contact:"
17
+ msgstr "24x7 Kontakt:"
18
+
19
+ #: app/cases/views/detailsSection.html
20
+ #: app/cases/views/new.html
21
+ msgid "24x7 Support:"
22
+ msgstr "24x7 Support:"
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 ""
29
+ "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;Neues Support-Ticket "
30
+ "erstellen"
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;Protokoll auswählen"
36
+
37
+ #: app/cases/views/detailsSection.html
38
+ msgid "Account Name:"
39
+ msgstr "Accountname:"
40
+
41
+ #: app/cases/views/detailsSection.html
42
+ msgid "Account Number:"
43
+ msgstr "Accountnummer:"
44
+
45
+ #: app/cases/views/new.html
46
+ msgid "Account:"
47
+ msgstr "Account:"
48
+
49
+ #: app/cases/views/attachLocalFile.html
50
+ #: app/cases/views/attachProductLogs.html
51
+ msgid "Add"
52
+ msgstr "Hinzufügen"
53
+
54
+ #: app/cases/views/addCommentSection.html
55
+ msgid "Add Comment"
56
+ msgstr "Kommentar hinzufügen"
57
+
58
+ #: app/cases/views/detailsSection.html
59
+ msgid "Advanced Mission Critical"
60
+ msgstr "Advanced Mission Critical"
61
+
62
+ #: app/cases/views/detailsSection.html
63
+ msgid "Alternate Case ID:"
64
+ msgstr "Alternative Ticket-ID:"
65
+
66
+ #: app/cases/views/attachProductLogs.html
67
+ msgid "Attach Foreman logs:"
68
+ msgstr "Foreman-Protokolle anhängen:"
69
+
70
+ #: app/cases/views/attachLocalFile.html
71
+ msgid "Attach local file"
72
+ msgstr "Lokale Datei anhängen"
73
+
74
+ #: app/cases/views/listAttachments.html
75
+ msgid "Attached"
76
+ msgstr "Angehängt"
77
+
78
+ #: app/cases/views/listAttachments.html
79
+ msgid "Attached By"
80
+ msgstr "Angehängt durch"
81
+
82
+ #: app/cases/views/listAttachments.html
83
+ msgid "Attached Files"
84
+ msgstr "Angehängte Dateien"
85
+
86
+ #: app/cases/views/attachmentsSection.html
87
+ msgid "Attachments"
88
+ msgstr "Anhänge"
89
+
90
+ #: app/cases/views/new.html
91
+ msgid "Attachments:"
92
+ msgstr "Anhänge:"
93
+
94
+ #: app/log_viewer/views/navSideBar.html
95
+ msgid "Available Log Files"
96
+ msgstr "Verfügbare Protokolldateien"
97
+
98
+ #: app/cases/views/listBugzillas.html
99
+ msgid "Bugzilla Number"
100
+ msgstr "Bugzilla-Nummer"
101
+
102
+ #: app/cases/views/listBugzillas.html
103
+ msgid "Bugzilla Tickets"
104
+ msgstr "Bugzilla-Tickets"
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 "Abbrechen"
111
+
112
+ #: app/cases/views/commentsSection.html
113
+ msgid "Case Discussion"
114
+ msgstr "Ticketdiskussion"
115
+
116
+ #: app/cases/views/createGroupModal.html
117
+ #: app/cases/views/new.html
118
+ msgid "Case Group:"
119
+ msgstr "Ticketgruppe:"
120
+
121
+ #: app/cases/views/detailsSection.html
122
+ msgid "Case Type:"
123
+ msgstr "Tickettyp:"
124
+
125
+ #: app/cases/views/chatButton.html
126
+ msgid "Chat offline"
127
+ msgstr "Offline chatten"
128
+
129
+ #: app/cases/views/chatButton.html
130
+ msgid "Chat with support"
131
+ msgstr "Mit Support-Team chatten"
132
+
133
+ #: app/common/views/treeview-selector.html
134
+ msgid "Choose File(s) To Attach:"
135
+ msgstr "Wählen Sie die anzuhängenden Dateien:"
136
+
137
+ #: app/common/views/alert.html
138
+ msgid "Close messages"
139
+ msgstr "Nachrichten schließen"
140
+
141
+ #: app/cases/views/requestManagementEscalationModal.html
142
+ msgid "Comment:"
143
+ msgstr "Kommentar:"
144
+
145
+ #: app/cases/views/createGroupModal.html
146
+ msgid "Create Case Group"
147
+ msgstr "Ticketgruppe erstellen"
148
+
149
+ #: app/cases/views/createGroupButton.html
150
+ msgid "Create New Case Group"
151
+ msgstr "Neue Ticketgruppe erstellen"
152
+
153
+ #: app/cases/views/listAttachments.html
154
+ msgid "Delete"
155
+ msgstr "Löschen"
156
+
157
+ #: app/cases/views/deleteGroupButton.html
158
+ msgid "Delete Group"
159
+ msgstr "Gruppe löschen"
160
+
161
+ #: app/cases/services/attachmentsService.js
162
+ msgid "Deleting attachment:"
163
+ msgstr "Anhang löschen:"
164
+
165
+ #: app/cases/views/descriptionSection.html
166
+ #: app/cases/views/listAttachments.html
167
+ msgid "Description"
168
+ msgstr "Beschreibung"
169
+
170
+ #: app/cases/views/new.html
171
+ msgid "Description:"
172
+ msgstr "Beschreibung:"
173
+
174
+ #: app/cases/views/detailsSection.html
175
+ msgid "Details"
176
+ msgstr "Details"
177
+
178
+ #: app/log_viewer/views/logsInstructionPane.html
179
+ msgid "Diagnose"
180
+ msgstr "Diagnose"
181
+
182
+ #: app/cases/views/addCommentSection.html
183
+ msgid "Draft saved"
184
+ msgstr "Entwurf gespeichert"
185
+
186
+ #: app/cases/views/emailNotifySelect.html
187
+ msgid "Email Notification Recipients"
188
+ msgstr "Empfänger von E-Mail-Benachrichtigungen"
189
+
190
+ #: app/search/views/resultDetail.html
191
+ msgid "Environment"
192
+ msgstr "Umgebung"
193
+
194
+ #: app/cases/views/exportCSVButton.html
195
+ msgid "Export All as CSV"
196
+ msgstr "Alle als CSV exportieren"
197
+
198
+ #: app/cases/views/exportCSVButton.html
199
+ msgid "Exporting CSV..."
200
+ msgstr "CSV wird exportiert..."
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
+ "Dateinamen sind auf 80&nbsp;Zeichen beschränkt. Maximale Dateigröße für "
209
+ "Anhänge zum Web-Upload ist 250&nbsp;MB. Für größere Dateien bitte FTP "
210
+ "verwenden (dropbox.redhat.com)."
211
+
212
+ #: app/cases/views/listAttachments.html
213
+ msgid "Filename"
214
+ msgstr "Dateiname"
215
+
216
+ #: app/cases/views/listNewAttachments.html
217
+ msgid "Files to Attach"
218
+ msgstr "Anzuhängende Dateien"
219
+
220
+ #: app/cases/views/editGroup.html
221
+ msgid "First Name"
222
+ msgstr "Vorname"
223
+
224
+ #: app/cases/views/search.html
225
+ msgid "Group"
226
+ msgstr "Gruppe"
227
+
228
+ #: app/cases/views/detailsSection.html
229
+ msgid "Group:"
230
+ msgstr "Gruppe:"
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
+ "Wenn das Problem schwerwiegender ist oder dem Ticket eine höhere Priorität "
239
+ "zugeordnet werden soll, fügen Sie bitte einen ausführlichen Kommentar hinzu. "
240
+ "Das Ticket wird anschließend von einem Support-Manager überprüft."
241
+
242
+ #: app/log_viewer/views/logsInstructionPane.html
243
+ msgid ""
244
+ "In the event that you would still like to open a support case, select 'Open "
245
+ "a New Support Case'. The case will be pre-populated with the portion of the "
246
+ "log previously selected."
247
+ msgstr ""
248
+ "Falls Sie dennoch ein Support-Ticket einreichen möchten, klicken Sie auf "
249
+ "\"Neues Support-Ticket erstellen\". In das Ticket werden Informationen aus "
250
+ "dem Protokoll eingefügt, das Sie zuvor ausgewählt haben."
251
+
252
+ #: app/cases/views/addCommentSection.html
253
+ msgid "Is Public:"
254
+ msgstr "Ist öffentlich:"
255
+
256
+ #: app/cases/views/editGroup.html
257
+ msgid "Last Name"
258
+ msgstr "Nachname"
259
+
260
+ #: app/cases/views/detailsSection.html
261
+ msgid "Last Updated:"
262
+ msgstr "Zuletzt aktualisiert:"
263
+
264
+ #: app/cases/views/requestManagementEscalationModal.html
265
+ msgid "Learn more"
266
+ msgstr "Mehr dazu"
267
+
268
+ #: app/log_viewer/views/logsInstructionPane.html
269
+ msgid "Log File Viewer"
270
+ msgstr "Protokollbetrachter"
271
+
272
+ #: app/security/views/login_status.html
273
+ msgid "Log In"
274
+ msgstr "Anmelden"
275
+
276
+ #: app/security/views/login_status.html
277
+ msgid "Log Out"
278
+ msgstr "Abmelden"
279
+
280
+ #: app/security/views/login_status.html
281
+ msgid "Logged into the Red Hat Customer Portal as"
282
+ msgstr "Beim Red Hat Kundenportal angemeldet als"
283
+
284
+ #: app/cases/views/accountSelect.html
285
+ msgid "My Account"
286
+ msgstr "Mein Account"
287
+
288
+ #: app/cases/views/groupList.html
289
+ msgid "Name"
290
+ msgstr "Name"
291
+
292
+ #: app/cases/views/new.html
293
+ msgid "Next"
294
+ msgstr "Weiter"
295
+
296
+ #: app/cases/views/listAttachments.html
297
+ msgid "No attachments added"
298
+ msgstr "Keine Anhänge hinzugefügt"
299
+
300
+ #: app/cases/views/compactCaseList.html
301
+ #: app/cases/views/list.html
302
+ msgid "No cases found with given filters."
303
+ msgstr "Keine Tickets gefunden mit diesen Filtern."
304
+
305
+ #: app/cases/views/search.html
306
+ msgid "No cases found with given search criteria."
307
+ msgstr "Keine Tickets gefunden mit diesen Suchkriterien."
308
+
309
+ #: app/cases/views/groupList.html
310
+ msgid "No groups found."
311
+ msgstr "Keine Gruppen gefunden."
312
+
313
+ #: app/cases/views/listBugzillas.html
314
+ msgid "No linked bugzillas"
315
+ msgstr "Keine verlinkten Bugzillas"
316
+
317
+ #: app/security/views/login_status.html
318
+ msgid "Not Logged into the Red Hat Customer Portal"
319
+ msgstr "Nicht beim Red Hat Kundenportal angemeldet"
320
+
321
+ #: app/security/views/login_form.html
322
+ msgid "Note:"
323
+ msgstr "Hinweis:"
324
+
325
+ #: app/cases/views/detailsSection.html
326
+ msgid "Notes:"
327
+ msgstr "Hinweise:"
328
+
329
+ #: app/log_viewer/views/logsInstructionPane.html
330
+ msgid ""
331
+ "Once you have selected your log file then you may diagnose any part of the "
332
+ "log file and clicking the 'Red Hat Diagnose' button. This will then display "
333
+ "relevant articles and solutons from our Red Hat Knowledge base."
334
+ msgstr ""
335
+ "Nachdem Sie Ihre Protokolldatei ausgewählt haben, können Sie einen "
336
+ "beliebigen Teil dieser Protokolldatei untersuchen, indem Sie auf die "
337
+ "Schaltfläche \"Red Hat Diagnose\" klicken. Daraufhin werden die relevanten "
338
+ "Artikel und Lösungen aus der Red Hat Knowledgebase angezeigt."
339
+
340
+ #: app/search/views/accordion_search_results.html
341
+ #: app/cases/views/list.html
342
+ #: app/cases/views/search.html
343
+ msgid "Open a New Support Case"
344
+ msgstr "Neues Support-Ticket erstellen"
345
+
346
+ #: app/cases/views/detailsSection.html
347
+ msgid "Opened:"
348
+ msgstr "Erstellt:"
349
+
350
+ #: app/cases/views/search.html
351
+ msgid "Owner"
352
+ msgstr "Besitzer"
353
+
354
+ #: app/cases/views/detailsSection.html
355
+ #: app/cases/views/new.html
356
+ msgid "Owner:"
357
+ msgstr "Besitzer:"
358
+
359
+ #: app/security/views/login_form.html
360
+ msgid "Password"
361
+ msgstr "Passwort"
362
+
363
+ #: app/cases/views/new.html
364
+ msgid "Previous"
365
+ msgstr "Zurück"
366
+
367
+ #: app/cases/views/search.html
368
+ msgid "Product"
369
+ msgstr "Produkt"
370
+
371
+ #: app/cases/views/detailsSection.html
372
+ #: app/cases/views/new.html
373
+ msgid "Product Version:"
374
+ msgstr "Produktversion:"
375
+
376
+ #: app/cases/views/detailsSection.html
377
+ #: app/cases/views/new.html
378
+ msgid "Product:"
379
+ msgstr "Produkt:"
380
+
381
+ #: app/search/views/accordion_search_results.html
382
+ #: app/search/views/list_search_results.html
383
+ #: app/cases/views/recommendationsSection.html
384
+ msgid "Recommendations"
385
+ msgstr "Empfehlungen"
386
+
387
+ #: app/security/views/login_form.html
388
+ msgid ""
389
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
390
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
391
+ "Hat Customer Portal resources, you must enter valid portal credentials."
392
+ msgstr ""
393
+ "Red Hat Access erleichtert Ihnen die Problemdiagnose, Selbsthilfe und "
394
+ "Kommunikation mit uns über das Red Hat Kundenportal. Um auf die Ressourcen "
395
+ "im Red Hat Kundenportal zugreifen zu können, müssen Sie Ihre gültige "
396
+ "Anmeldedaten für das Kundenportal angeben."
397
+
398
+ #: app/security/views/login_form.html
399
+ msgid ""
400
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
401
+ "into this product."
402
+ msgstr ""
403
+ "Die Anmeldedaten für das Red Hat Kundenportal unterscheiden sich von den "
404
+ "Anmeldedaten für dieses Produkt."
405
+
406
+ #: app/log_viewer/views/logTabs.html
407
+ msgid "Red Hat Diagnose"
408
+ msgstr "Red Hat Diagnose"
409
+
410
+ #: app/security/views/login_form.html
411
+ msgid "Red Hat Login"
412
+ msgstr "Red Hat Login"
413
+
414
+ #: app/cases/views/detailsSection.html
415
+ msgid "Red Hat Owner:"
416
+ msgstr "Red Hat Besitzer:"
417
+
418
+ #: app/cases/views/commentsSection.html
419
+ #: app/cases/views/requestManagementEscalationModal.html
420
+ msgid "Request Management Escalation"
421
+ msgstr "Management-Eskalation beantragen"
422
+
423
+ #: app/search/views/resultDetail.html
424
+ msgid "Resolution"
425
+ msgstr "Lösung"
426
+
427
+ #: app/cases/views/createGroupModal.html
428
+ msgid "Save"
429
+ msgstr "Speichern"
430
+
431
+ #: app/cases/views/editGroup.html
432
+ msgid "Save Group"
433
+ msgstr "Gruppe speichern"
434
+
435
+ #: app/cases/views/addCommentSection.html
436
+ msgid "Saving draft..."
437
+ msgstr "Entwurf wird gespeichert..."
438
+
439
+ #: app/search/views/search_form.html
440
+ msgid "Search"
441
+ msgstr "Suchen"
442
+
443
+ #: app/cases/views/search.html
444
+ msgid "Searching..."
445
+ msgstr "Suchen..."
446
+
447
+ #: app/log_viewer/views/navSideBar.html
448
+ msgid "Select File"
449
+ msgstr "Datei wählen"
450
+
451
+ #: app/cases/views/attachmentsSection.html
452
+ msgid "Server File(s) To Attach:"
453
+ msgstr "Anzuhängende Server-Dateien:"
454
+
455
+ #: app/cases/views/search.html
456
+ msgid "Severity"
457
+ msgstr " Schweregrad"
458
+
459
+ #: app/cases/views/detailsSection.html
460
+ #: app/cases/views/new.html
461
+ #: app/cases/views/searchResult.html
462
+ msgid "Severity:"
463
+ msgstr "Schweregrad:"
464
+
465
+ #: app/security/views/login_form.html
466
+ msgid "Sign in"
467
+ msgstr "Anmelden"
468
+
469
+ #: app/security/views/login_form.html
470
+ msgid "Sign into the Red Hat Customer Portal"
471
+ msgstr "Melden Sie sich beim Red Hat Kundenportal an"
472
+
473
+ #: app/log_viewer/views/logsInstructionPane.html
474
+ msgid ""
475
+ "Simply navigate to and select a log file from the list on the left and click "
476
+ "the 'Select File' button."
477
+ msgstr ""
478
+ "Navigieren Sie zu einer Protokolldatei und wählen Sie diese aus der Liste "
479
+ "links aus, klicken Sie anschließend auf die Schaltfläche \"Datei wählen\"."
480
+
481
+ #: app/cases/views/listAttachments.html
482
+ msgid "Size"
483
+ msgstr "Größe"
484
+
485
+ #: app/cases/views/search.html
486
+ msgid "Status"
487
+ msgstr "Status"
488
+
489
+ #: app/cases/views/detailsSection.html
490
+ #: app/cases/views/searchResult.html
491
+ msgid "Status:"
492
+ msgstr "Status:"
493
+
494
+ #: app/cases/views/new.html
495
+ msgid "Submit"
496
+ msgstr "Absenden"
497
+
498
+ #: app/cases/views/requestManagementEscalationModal.html
499
+ msgid "Submit Request"
500
+ msgstr "Anfrage absenden"
501
+
502
+ #: app/cases/services/attachmentsService.js
503
+ msgid "Successfully deleted attachment:"
504
+ msgstr "Anhang erfolgreich gelöscht:"
505
+
506
+ #: app/cases/services/attachmentsService.js
507
+ msgid "Successfully uploaded attachment"
508
+ msgstr "Anhang erfolgreich hochgeladen"
509
+
510
+ #: app/cases/views/listBugzillas.html
511
+ msgid "Summary of Request"
512
+ msgstr "Zusammenfassung der Anfrage"
513
+
514
+ #: app/cases/views/new.html
515
+ msgid "Summary:"
516
+ msgstr "Zusammenfassung:"
517
+
518
+ #: app/cases/views/detailsSection.html
519
+ msgid "Support Level:"
520
+ msgstr "Support-Level:"
521
+
522
+ #: app/log_viewer/views/logsInstructionPane.html
523
+ msgid ""
524
+ "The log file viewer gives the ability to diagnose application logs as well "
525
+ "as file a support case with Red Hat Global Support Services."
526
+ msgstr ""
527
+ "Mithilfe des Protokollbetrachters können Sie sowohl Protokolldateien von "
528
+ "Applikationen untersuchen, als auch ein Support-Ticket bei Red Hat Global "
529
+ "Support Services einreichen."
530
+
531
+ #: app/cases/views/new.html
532
+ msgid ""
533
+ "This release is now retired, please refer to the recommended FAQ prior to "
534
+ "filing a case"
535
+ msgstr ""
536
+ "Diese Release ist veraltet, bitte werfen Sie einen Blick auf die empfohlenen "
537
+ "FAQ, bevor Sie ein Ticket öffnen."
538
+
539
+ #: app/search/views/list_search_results.html
540
+ msgid "To view a recommendation, click on it."
541
+ msgstr "Klicken Sie auf eine Empfehlung, um sie anzusehen."
542
+
543
+ #: app/cases/views/search.html
544
+ msgid "Type"
545
+ msgstr "Typ"
546
+
547
+ #: app/common/services/strataService.js
548
+ msgid "Unauthorized."
549
+ msgstr "Nicht autorisiert."
550
+
551
+ #: app/cases/views/detailsSection.html
552
+ msgid "Update Details"
553
+ msgstr "Details aktualisieren"
554
+
555
+ #: app/cases/views/searchResult.html
556
+ msgid "Updated:"
557
+ msgstr "Aktualisiert:"
558
+
559
+ #: app/cases/views/attachmentsSection.html
560
+ msgid "Upload Attachments"
561
+ msgstr "Anhänge hochladen"
562
+
563
+ #: app/cases/views/editGroup.html
564
+ msgid "User Name"
565
+ msgstr "Benutzername"
566
+
567
+ #: app/cases/views/recommendationsSection.html
568
+ msgid "View full article in new window"
569
+ msgstr "Vollständigen Artikel in neuem Fenster anzeigen"
570
+
571
+ #: app/cases/views/commentsSection.html
572
+ msgid ""
573
+ "Would you like a Red Hat support manager to contact you regarding this case?"
574
+ msgstr ""
575
+ "Möchten Sie, dass sich ein Red Hat Support-Manager bezüglich dieses Tickets "
576
+ "mit Ihnen in Verbindung setzt?"
577
+
578
+ #: app/cases/views/addCommentSection.html
579
+ msgid "You have used 0% of the 32KB maximum description size."
580
+ msgstr "Sie haben 0 % der maximalen Beschreibungsgröße von 32 KB verwendet."
581
+
582
+ #: app/cases/views/recommendationsSection.html
583
+ msgid "handpicked"
584
+ msgstr "manuell ausgewählt"
585
+
586
+ #: app/cases/services/attachmentsService.js
587
+ msgid "to case"
588
+ msgstr "nach Ticket"
589
+