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,588 @@
1
+ # gcintra <gcintra@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-15 11:02-0400\n"
8
+ "Last-Translator: gcintra <gcintra@redhat.com>\n"
9
+ "Language-Team: Portuguese (Brazil)\n"
10
+ "Language: pt-BR\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 "Contato 24x7:"
18
+
19
+ #: app/cases/views/detailsSection.html
20
+ #: app/cases/views/new.html
21
+ msgid "24x7 Support:"
22
+ msgstr "Suporte 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 ""
29
+ "<span class=\"glyphicon glyphicon-plus\"></span>&nbsp;Abra um Novo Caso de "
30
+ "Suporte"
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;Selecione o Log"
36
+
37
+ #: app/cases/views/detailsSection.html
38
+ msgid "Account Name:"
39
+ msgstr "Nome da Conta:"
40
+
41
+ #: app/cases/views/detailsSection.html
42
+ msgid "Account Number:"
43
+ msgstr "Número da Conta:"
44
+
45
+ #: app/cases/views/new.html
46
+ msgid "Account:"
47
+ msgstr "Conta:"
48
+
49
+ #: app/cases/views/attachLocalFile.html
50
+ #: app/cases/views/attachProductLogs.html
51
+ msgid "Add"
52
+ msgstr "Adicionar"
53
+
54
+ #: app/cases/views/addCommentSection.html
55
+ msgid "Add Comment"
56
+ msgstr "Adicionar Comentário"
57
+
58
+ #: app/cases/views/detailsSection.html
59
+ msgid "Advanced Mission Critical"
60
+ msgstr "Missão Crítica Avançada"
61
+
62
+ #: app/cases/views/detailsSection.html
63
+ msgid "Alternate Case ID:"
64
+ msgstr "Alternar ID de Caso:"
65
+
66
+ #: app/cases/views/attachProductLogs.html
67
+ msgid "Attach Foreman logs:"
68
+ msgstr "Anexar logs do Foreman:"
69
+
70
+ #: app/cases/views/attachLocalFile.html
71
+ msgid "Attach local file"
72
+ msgstr "Anexar arquivo local:"
73
+
74
+ #: app/cases/views/listAttachments.html
75
+ msgid "Attached"
76
+ msgstr "Anexado"
77
+
78
+ #: app/cases/views/listAttachments.html
79
+ msgid "Attached By"
80
+ msgstr "Anexado por"
81
+
82
+ #: app/cases/views/listAttachments.html
83
+ msgid "Attached Files"
84
+ msgstr "Arquivos anexados"
85
+
86
+ #: app/cases/views/attachmentsSection.html
87
+ msgid "Attachments"
88
+ msgstr "Anexos"
89
+
90
+ #: app/cases/views/new.html
91
+ msgid "Attachments:"
92
+ msgstr "Anexos:"
93
+
94
+ #: app/log_viewer/views/navSideBar.html
95
+ msgid "Available Log Files"
96
+ msgstr "Arquivos de Log Disponíveis:"
97
+
98
+ #: app/cases/views/listBugzillas.html
99
+ msgid "Bugzilla Number"
100
+ msgstr "Número do Bugzilla"
101
+
102
+ #: app/cases/views/listBugzillas.html
103
+ msgid "Bugzilla Tickets"
104
+ msgstr "Tiquetes do 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 "Cancelar"
111
+
112
+ #: app/cases/views/commentsSection.html
113
+ msgid "Case Discussion"
114
+ msgstr "Discussão do Caso"
115
+
116
+ #: app/cases/views/createGroupModal.html
117
+ #: app/cases/views/new.html
118
+ msgid "Case Group:"
119
+ msgstr "Grupo do Caso:"
120
+
121
+ #: app/cases/views/detailsSection.html
122
+ msgid "Case Type:"
123
+ msgstr "Tipo do Caso:"
124
+
125
+ #: app/cases/views/chatButton.html
126
+ msgid "Chat offline"
127
+ msgstr "Bate papo offline"
128
+
129
+ #: app/cases/views/chatButton.html
130
+ msgid "Chat with support"
131
+ msgstr "Bate-papo com o suporte"
132
+
133
+ #: app/common/views/treeview-selector.html
134
+ msgid "Choose File(s) To Attach:"
135
+ msgstr "Escolha Arquivo(s) para Anexar:"
136
+
137
+ #: app/common/views/alert.html
138
+ msgid "Close messages"
139
+ msgstr "Fechar Mensagens"
140
+
141
+ #: app/cases/views/requestManagementEscalationModal.html
142
+ msgid "Comment:"
143
+ msgstr "Comentário:"
144
+
145
+ #: app/cases/views/createGroupModal.html
146
+ msgid "Create Case Group"
147
+ msgstr "Criar Grupo de Caso"
148
+
149
+ #: app/cases/views/createGroupButton.html
150
+ msgid "Create New Case Group"
151
+ msgstr "Criar novo Grupo de Caso"
152
+
153
+ #: app/cases/views/listAttachments.html
154
+ msgid "Delete"
155
+ msgstr "Remover"
156
+
157
+ #: app/cases/views/deleteGroupButton.html
158
+ msgid "Delete Group"
159
+ msgstr "Excluir Grupo"
160
+
161
+ #: app/cases/services/attachmentsService.js
162
+ msgid "Deleting attachment:"
163
+ msgstr "remover Anexo:"
164
+
165
+ #: app/cases/views/descriptionSection.html
166
+ #: app/cases/views/listAttachments.html
167
+ msgid "Description"
168
+ msgstr "Descrição"
169
+
170
+ #: app/cases/views/new.html
171
+ msgid "Description:"
172
+ msgstr "Descrição:"
173
+
174
+ #: app/cases/views/detailsSection.html
175
+ msgid "Details"
176
+ msgstr "Detalhes"
177
+
178
+ #: app/log_viewer/views/logsInstructionPane.html
179
+ msgid "Diagnose"
180
+ msgstr "Diagnóstico"
181
+
182
+ #: app/cases/views/addCommentSection.html
183
+ msgid "Draft saved"
184
+ msgstr "Rascunho Salvo "
185
+
186
+ #: app/cases/views/emailNotifySelect.html
187
+ msgid "Email Notification Recipients"
188
+ msgstr "Destinatários de notificação por e-mail"
189
+
190
+ #: app/search/views/resultDetail.html
191
+ msgid "Environment"
192
+ msgstr "Ambiente"
193
+
194
+ #: app/cases/views/exportCSVButton.html
195
+ msgid "Export All as CSV"
196
+ msgstr "Exportar todos os CSV"
197
+
198
+ #: app/cases/views/exportCSVButton.html
199
+ msgid "Exporting CSV..."
200
+ msgstr "Exportando 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
+ "O nome dos arquivos são limitados a 80 caracteres. Tamanho máximo de arquivo "
209
+ "é 250 Mb. Para arquivos maiores que 250Mb por favor utilize o FTP (dropbox."
210
+ "redhat.com). "
211
+
212
+ #: app/cases/views/listAttachments.html
213
+ msgid "Filename"
214
+ msgstr "Nome do Arquivo"
215
+
216
+ #: app/cases/views/listNewAttachments.html
217
+ msgid "Files to Attach"
218
+ msgstr "Anexar Arquivos à"
219
+
220
+ #: app/cases/views/editGroup.html
221
+ msgid "First Name"
222
+ msgstr "Primeiro Nome"
223
+
224
+ #: app/cases/views/search.html
225
+ msgid "Group"
226
+ msgstr "Grupo"
227
+
228
+ #: app/cases/views/detailsSection.html
229
+ msgid "Group:"
230
+ msgstr "Grupo:"
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
+ "Caso sinta que o problema ficou mais grave ou que o caso deveria ter maior "
239
+ "prioridade, forneça um comentário detalhado, e o caso será analisado por um "
240
+ "gerente de suporte."
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
+ "Caso você ainda deseje abrir um caso de suporte, selecione 'Abrir um Novo "
249
+ "Caso de Suporte'. O caso será pré-populado com a porção do log anteriormente "
250
+ "selecionada."
251
+
252
+ #: app/cases/views/addCommentSection.html
253
+ msgid "Is Public:"
254
+ msgstr "É Público:"
255
+
256
+ #: app/cases/views/editGroup.html
257
+ msgid "Last Name"
258
+ msgstr "Sobrenome"
259
+
260
+ #: app/cases/views/detailsSection.html
261
+ msgid "Last Updated:"
262
+ msgstr "Úlltima Atualização:"
263
+
264
+ #: app/cases/views/requestManagementEscalationModal.html
265
+ msgid "Learn more"
266
+ msgstr "Saiba mais"
267
+
268
+ #: app/log_viewer/views/logsInstructionPane.html
269
+ msgid "Log File Viewer"
270
+ msgstr "Visualizador de Arquivos de Log"
271
+
272
+ #: app/security/views/login_status.html
273
+ msgid "Log In"
274
+ msgstr "Logon"
275
+
276
+ #: app/security/views/login_status.html
277
+ msgid "Log Out"
278
+ msgstr "Sair"
279
+
280
+ #: app/security/views/login_status.html
281
+ msgid "Logged into the Red Hat Customer Portal as"
282
+ msgstr "Autenticado no Red Hat Customer Portal como"
283
+
284
+ #: app/cases/views/accountSelect.html
285
+ msgid "My Account"
286
+ msgstr "Minha conta"
287
+
288
+ #: app/cases/views/groupList.html
289
+ msgid "Name"
290
+ msgstr "Nome"
291
+
292
+ #: app/cases/views/new.html
293
+ msgid "Next"
294
+ msgstr "Próximo"
295
+
296
+ #: app/cases/views/listAttachments.html
297
+ msgid "No attachments added"
298
+ msgstr "Não foi adicionado nenhum anexo"
299
+
300
+ #: app/cases/views/compactCaseList.html
301
+ #: app/cases/views/list.html
302
+ msgid "No cases found with given filters."
303
+ msgstr "Nenhum caso foi encontrado com os filtros especificados"
304
+
305
+ #: app/cases/views/search.html
306
+ msgid "No cases found with given search criteria."
307
+ msgstr "Nenhum caso encontrado com critério de busca especificado"
308
+
309
+ #: app/cases/views/groupList.html
310
+ msgid "No groups found."
311
+ msgstr "Nenhum grupo encontrado"
312
+
313
+ #: app/cases/views/listBugzillas.html
314
+ msgid "No linked bugzillas"
315
+ msgstr "Nenhum bugzilla conectado"
316
+
317
+ #: app/security/views/login_status.html
318
+ msgid "Not Logged into the Red Hat Customer Portal"
319
+ msgstr "Não foi autenticado no Red Hat Customer Portal"
320
+
321
+ #: app/security/views/login_form.html
322
+ msgid "Note:"
323
+ msgstr "Nota:"
324
+
325
+ #: app/cases/views/detailsSection.html
326
+ msgid "Notes:"
327
+ msgstr "Notas:"
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
+ "Depois que você selecionou o arquivo de log, você poderá diagnosticar "
336
+ "qualquer parte do arquivo de log e clicar no botão 'Red Hat Diagnose'. Isto "
337
+ "irá exibir artigos relevantes e soluções de nossa base do Red Hat Knowledge."
338
+
339
+ #: app/search/views/accordion_search_results.html
340
+ #: app/cases/views/list.html
341
+ #: app/cases/views/search.html
342
+ msgid "Open a New Support Case"
343
+ msgstr "Abrir um novo Caso de Suporte"
344
+
345
+ #: app/cases/views/detailsSection.html
346
+ msgid "Opened:"
347
+ msgstr "Aberto: "
348
+
349
+ #: app/cases/views/search.html
350
+ msgid "Owner"
351
+ msgstr "Proprietário"
352
+
353
+ #: app/cases/views/detailsSection.html
354
+ #: app/cases/views/new.html
355
+ msgid "Owner:"
356
+ msgstr "Proprietário:"
357
+
358
+ #: app/security/views/login_form.html
359
+ msgid "Password"
360
+ msgstr "Senha"
361
+
362
+ #: app/cases/views/new.html
363
+ msgid "Previous"
364
+ msgstr "Anterior"
365
+
366
+ #: app/cases/views/search.html
367
+ msgid "Product"
368
+ msgstr "Produto"
369
+
370
+ #: app/cases/views/detailsSection.html
371
+ #: app/cases/views/new.html
372
+ msgid "Product Version:"
373
+ msgstr "Versão do Produto:"
374
+
375
+ #: app/cases/views/detailsSection.html
376
+ #: app/cases/views/new.html
377
+ msgid "Product:"
378
+ msgstr "Produto:"
379
+
380
+ #: app/search/views/accordion_search_results.html
381
+ #: app/search/views/list_search_results.html
382
+ #: app/cases/views/recommendationsSection.html
383
+ msgid "Recommendations"
384
+ msgstr "Recomendações"
385
+
386
+ #: app/security/views/login_form.html
387
+ msgid ""
388
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
389
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
390
+ "Hat Customer Portal resources, you must enter valid portal credentials."
391
+ msgstr ""
392
+ "O Red Hat Access facilita a solução de problemas, diagnóstico de problemas "
393
+ "pra você e nos une via Red Hat Customer Portal. Para acessar os recursos do "
394
+ "Portal do Consumidor Red Hat, você precisa inserir as credenciais do portal "
395
+ "válidas."
396
+
397
+ #: app/security/views/login_form.html
398
+ msgid ""
399
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
400
+ "into this product."
401
+ msgstr ""
402
+ "As credenciais do Portal do Consumidor, diferem das credenciais usadas para "
403
+ "se autenticar neste produto."
404
+
405
+ #: app/log_viewer/views/logTabs.html
406
+ msgid "Red Hat Diagnose"
407
+ msgstr "Diagnóstico da Red Hat"
408
+
409
+ #: app/security/views/login_form.html
410
+ msgid "Red Hat Login"
411
+ msgstr "Red Hat Login"
412
+
413
+ #: app/cases/views/detailsSection.html
414
+ msgid "Red Hat Owner:"
415
+ msgstr "Proprietário da Red Hat:"
416
+
417
+ #: app/cases/views/commentsSection.html
418
+ #: app/cases/views/requestManagementEscalationModal.html
419
+ msgid "Request Management Escalation"
420
+ msgstr "Requisita a escalação de gerenciamento"
421
+
422
+ #: app/search/views/resultDetail.html
423
+ msgid "Resolution"
424
+ msgstr "Resolução"
425
+
426
+ #: app/cases/views/createGroupModal.html
427
+ msgid "Save"
428
+ msgstr "Salvar"
429
+
430
+ #: app/cases/views/editGroup.html
431
+ msgid "Save Group"
432
+ msgstr "Salvar Grupo"
433
+
434
+ #: app/cases/views/addCommentSection.html
435
+ msgid "Saving draft..."
436
+ msgstr "Salvar Rascunho..."
437
+
438
+ #: app/search/views/search_form.html
439
+ msgid "Search"
440
+ msgstr "Buscar"
441
+
442
+ #: app/cases/views/search.html
443
+ msgid "Searching..."
444
+ msgstr "Buscando... "
445
+
446
+ #: app/log_viewer/views/navSideBar.html
447
+ msgid "Select File"
448
+ msgstr "Selecionar Arquivo"
449
+
450
+ #: app/cases/views/attachmentsSection.html
451
+ msgid "Server File(s) To Attach:"
452
+ msgstr "Arquivo(s) do Servidor para Anexar:"
453
+
454
+ #: app/cases/views/search.html
455
+ msgid "Severity"
456
+ msgstr "Gravidade"
457
+
458
+ #: app/cases/views/detailsSection.html
459
+ #: app/cases/views/new.html
460
+ #: app/cases/views/searchResult.html
461
+ msgid "Severity:"
462
+ msgstr "Gravidade:"
463
+
464
+ #: app/security/views/login_form.html
465
+ msgid "Sign in"
466
+ msgstr "Entrar"
467
+
468
+ #: app/security/views/login_form.html
469
+ msgid "Sign into the Red Hat Customer Portal"
470
+ msgstr "Entrar no Red Hat Portal do Cliente"
471
+
472
+ #: app/log_viewer/views/logsInstructionPane.html
473
+ msgid ""
474
+ "Simply navigate to and select a log file from the list on the left and click "
475
+ "the 'Select File' button."
476
+ msgstr ""
477
+ "Simplesmente navegue até lá e selecione um arquivo de log a partir da lista "
478
+ "à esquerda e clique no botão 'Selecionar Arquivo'."
479
+
480
+ #: app/cases/views/listAttachments.html
481
+ msgid "Size"
482
+ msgstr "Tamanho"
483
+
484
+ #: app/cases/views/search.html
485
+ msgid "Status"
486
+ msgstr "Estado"
487
+
488
+ #: app/cases/views/detailsSection.html
489
+ #: app/cases/views/searchResult.html
490
+ msgid "Status:"
491
+ msgstr "Estado:"
492
+
493
+ #: app/cases/views/new.html
494
+ msgid "Submit"
495
+ msgstr "Enviar"
496
+
497
+ #: app/cases/views/requestManagementEscalationModal.html
498
+ msgid "Submit Request"
499
+ msgstr "Enviar Solicitação"
500
+
501
+ #: app/cases/services/attachmentsService.js
502
+ msgid "Successfully deleted attachment:"
503
+ msgstr "Anexos removidos com sucesso:"
504
+
505
+ #: app/cases/services/attachmentsService.js
506
+ msgid "Successfully uploaded attachment"
507
+ msgstr "Anexo atualizado com sucesso"
508
+
509
+ #: app/cases/views/listBugzillas.html
510
+ msgid "Summary of Request"
511
+ msgstr "Sumário de Solicitações"
512
+
513
+ #: app/cases/views/new.html
514
+ msgid "Summary:"
515
+ msgstr "Sumário"
516
+
517
+ #: app/cases/views/detailsSection.html
518
+ msgid "Support Level:"
519
+ msgstr "Nível de Suporte"
520
+
521
+ #: app/log_viewer/views/logsInstructionPane.html
522
+ msgid ""
523
+ "The log file viewer gives the ability to diagnose application logs as well "
524
+ "as file a support case with Red Hat Global Support Services."
525
+ msgstr ""
526
+ "O visualizador de arquivo de log fornece a habilidade para diagnosticar logs "
527
+ "de aplicativo assim como arquivar caso de suporte com os Serviços da Red Hat "
528
+ "Global Support."
529
+
530
+ #: app/cases/views/new.html
531
+ msgid ""
532
+ "This release is now retired, please refer to the recommended FAQ prior to "
533
+ "filing a case"
534
+ msgstr ""
535
+ "Este lançamento está obsoleto, por favor consulte o FAQ recomendado antes de "
536
+ "arquivar um caso"
537
+
538
+ #: app/search/views/list_search_results.html
539
+ msgid "To view a recommendation, click on it."
540
+ msgstr "Para visualizar recomendação, clique nela;"
541
+
542
+ #: app/cases/views/search.html
543
+ msgid "Type"
544
+ msgstr "Tipo"
545
+
546
+ #: app/common/services/strataService.js
547
+ msgid "Unauthorized."
548
+ msgstr "Desautorizado."
549
+
550
+ #: app/cases/views/detailsSection.html
551
+ msgid "Update Details"
552
+ msgstr "Atualizar Detalhes"
553
+
554
+ #: app/cases/views/searchResult.html
555
+ msgid "Updated:"
556
+ msgstr "Atualizado:"
557
+
558
+ #: app/cases/views/attachmentsSection.html
559
+ msgid "Upload Attachments"
560
+ msgstr "Atualizar Anexos"
561
+
562
+ #: app/cases/views/editGroup.html
563
+ msgid "User Name"
564
+ msgstr "Nome de Usuário"
565
+
566
+ #: app/cases/views/recommendationsSection.html
567
+ msgid "View full article in new window"
568
+ msgstr "Visualizar artigo completo na nova janela"
569
+
570
+ #: app/cases/views/commentsSection.html
571
+ msgid ""
572
+ "Would you like a Red Hat support manager to contact you regarding this case?"
573
+ msgstr ""
574
+ "Você deseja que o gerente de suporte da Red Hat entre em contato para "
575
+ "discutir sobre este caso?"
576
+
577
+ #: app/cases/views/addCommentSection.html
578
+ msgid "You have used 0% of the 32KB maximum description size."
579
+ msgstr "Você já usou 0% do tamanho da descrição máximo de 32 KB."
580
+
581
+ #: app/cases/views/recommendationsSection.html
582
+ msgid "handpicked"
583
+ msgstr "escolhido manualmente"
584
+
585
+ #: app/cases/services/attachmentsService.js
586
+ msgid "to case"
587
+ msgstr "para o caso"
588
+
@@ -0,0 +1,34 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: version 0.0.1\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-10-30 12:15-0400\n"
12
+ "PO-Revision-Date: 2014-10-29 21:30-0400\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: \n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ msgid "Diagnose"
22
+ msgstr ""
23
+
24
+ msgid "My Cases"
25
+ msgstr ""
26
+
27
+ msgid "Open New Case"
28
+ msgstr ""
29
+
30
+ msgid "Red Hat Access"
31
+ msgstr ""
32
+
33
+ msgid "Support"
34
+ msgstr ""