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
+ # fvalen <fvalen@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-08 01:51-0400\n"
8
+ "Last-Translator: fvalen <fvalen@redhat.com>\n"
9
+ "Language-Team: Italian\n"
10
+ "Language: it\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 "Contatto 24x7:"
18
+
19
+ #: app/cases/views/detailsSection.html
20
+ #: app/cases/views/new.html
21
+ msgid "24x7 Support:"
22
+ msgstr "Supporto 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;Apri un nuovo caso con "
30
+ "il supporto tecnico"
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;Seleziona il log"
36
+
37
+ #: app/cases/views/detailsSection.html
38
+ msgid "Account Name:"
39
+ msgstr "Nome account:"
40
+
41
+ #: app/cases/views/detailsSection.html
42
+ msgid "Account Number:"
43
+ msgstr "Numero account:"
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 "Aggiungi"
53
+
54
+ #: app/cases/views/addCommentSection.html
55
+ msgid "Add Comment"
56
+ msgstr "Aggiungi commento"
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 "ID alternativo del caso:"
65
+
66
+ #: app/cases/views/attachProductLogs.html
67
+ msgid "Attach Foreman logs:"
68
+ msgstr "Allega log di Foreman:"
69
+
70
+ #: app/cases/views/attachLocalFile.html
71
+ msgid "Attach local file"
72
+ msgstr "Allega un file locale"
73
+
74
+ #: app/cases/views/listAttachments.html
75
+ msgid "Attached"
76
+ msgstr "Allegato"
77
+
78
+ #: app/cases/views/listAttachments.html
79
+ msgid "Attached By"
80
+ msgstr "Allegato da"
81
+
82
+ #: app/cases/views/listAttachments.html
83
+ msgid "Attached Files"
84
+ msgstr "File allegati"
85
+
86
+ #: app/cases/views/attachmentsSection.html
87
+ msgid "Attachments"
88
+ msgstr "Allegati"
89
+
90
+ #: app/cases/views/new.html
91
+ msgid "Attachments:"
92
+ msgstr "Allegati:"
93
+
94
+ #: app/log_viewer/views/navSideBar.html
95
+ msgid "Available Log Files"
96
+ msgstr "File di log disponibili"
97
+
98
+ #: app/cases/views/listBugzillas.html
99
+ msgid "Bugzilla Number"
100
+ msgstr "Numero bugzilla "
101
+
102
+ #: app/cases/views/listBugzillas.html
103
+ msgid "Bugzilla Tickets"
104
+ msgstr "Ticket di 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 "Cancella"
111
+
112
+ #: app/cases/views/commentsSection.html
113
+ msgid "Case Discussion"
114
+ msgstr "Discussione del caso"
115
+
116
+ #: app/cases/views/createGroupModal.html
117
+ #: app/cases/views/new.html
118
+ msgid "Case Group:"
119
+ msgstr "Gruppo casi:"
120
+
121
+ #: app/cases/views/detailsSection.html
122
+ msgid "Case Type:"
123
+ msgstr "Tipo di caso:"
124
+
125
+ #: app/cases/views/chatButton.html
126
+ msgid "Chat offline"
127
+ msgstr "Avvia una chat offline"
128
+
129
+ #: app/cases/views/chatButton.html
130
+ msgid "Chat with support"
131
+ msgstr "Avvia una chat con il supporto"
132
+
133
+ #: app/common/views/treeview-selector.html
134
+ msgid "Choose File(s) To Attach:"
135
+ msgstr "Seleziona i fila da allegare:"
136
+
137
+ #: app/common/views/alert.html
138
+ msgid "Close messages"
139
+ msgstr "Chiudi i messaggi"
140
+
141
+ #: app/cases/views/requestManagementEscalationModal.html
142
+ msgid "Comment:"
143
+ msgstr "Commento:"
144
+
145
+ #: app/cases/views/createGroupModal.html
146
+ msgid "Create Case Group"
147
+ msgstr "Crea un gruppo casi"
148
+
149
+ #: app/cases/views/createGroupButton.html
150
+ msgid "Create New Case Group"
151
+ msgstr "Crea un nuovo gruppo casi"
152
+
153
+ #: app/cases/views/listAttachments.html
154
+ msgid "Delete"
155
+ msgstr "Cancella"
156
+
157
+ #: app/cases/views/deleteGroupButton.html
158
+ msgid "Delete Group"
159
+ msgstr "Elimina gruppo"
160
+
161
+ #: app/cases/services/attachmentsService.js
162
+ msgid "Deleting attachment:"
163
+ msgstr "Elimina allegato:"
164
+
165
+ #: app/cases/views/descriptionSection.html
166
+ #: app/cases/views/listAttachments.html
167
+ msgid "Description"
168
+ msgstr "Descrizione"
169
+
170
+ #: app/cases/views/new.html
171
+ msgid "Description:"
172
+ msgstr "Descrizione:"
173
+
174
+ #: app/cases/views/detailsSection.html
175
+ msgid "Details"
176
+ msgstr "Dettagli"
177
+
178
+ #: app/log_viewer/views/logsInstructionPane.html
179
+ msgid "Diagnose"
180
+ msgstr "Diagnosi"
181
+
182
+ #: app/cases/views/addCommentSection.html
183
+ msgid "Draft saved"
184
+ msgstr "Bozza salvata"
185
+
186
+ #: app/cases/views/emailNotifySelect.html
187
+ msgid "Email Notification Recipients"
188
+ msgstr "Destinatari delle notifiche email"
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 "Esporta tutti come CSV"
197
+
198
+ #: app/cases/views/exportCSVButton.html
199
+ msgid "Exporting CSV..."
200
+ msgstr "Esportazione CSV in corso..."
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
+ "I nomi dei file sono limitati a 80 caratteri. La dimensione massima del file "
209
+ "come allegato è di 250MB. Per file più grandi usare FTP per dropbox.redhat."
210
+ "com. "
211
+
212
+ #: app/cases/views/listAttachments.html
213
+ msgid "Filename"
214
+ msgstr "Nome del file"
215
+
216
+ #: app/cases/views/listNewAttachments.html
217
+ msgid "Files to Attach"
218
+ msgstr "File da allegare"
219
+
220
+ #: app/cases/views/editGroup.html
221
+ msgid "First Name"
222
+ msgstr "Nome"
223
+
224
+ #: app/cases/views/search.html
225
+ msgid "Group"
226
+ msgstr "Gruppo"
227
+
228
+ #: app/cases/views/detailsSection.html
229
+ msgid "Group:"
230
+ msgstr "Gruppo:"
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
+ "Se ritieni che il problema si sia aggravato o che il caso debba essere "
239
+ "classificato con una priorità più elevata, fornisci un commento dettagliato, "
240
+ "e il caso in questione verrà esaminato da un responsabile del supporto."
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
+ "Se desideri ancora aprire un nuovo caso con il supporto, seleziona ' Apri un "
249
+ "nuovo caso con il supporto'. Così facendo il nuovo caso verrà popolato con "
250
+ "la sezione del log precedentemente selezionato."
251
+
252
+ #: app/cases/views/addCommentSection.html
253
+ msgid "Is Public:"
254
+ msgstr "È pubblico:"
255
+
256
+ #: app/cases/views/editGroup.html
257
+ msgid "Last Name"
258
+ msgstr "Cognome"
259
+
260
+ #: app/cases/views/detailsSection.html
261
+ msgid "Last Updated:"
262
+ msgstr "Ultimo aggiornamento:"
263
+
264
+ #: app/cases/views/requestManagementEscalationModal.html
265
+ msgid "Learn more"
266
+ msgstr "Maggiori informazioni"
267
+
268
+ #: app/log_viewer/views/logsInstructionPane.html
269
+ msgid "Log File Viewer"
270
+ msgstr "Visualizzatore file di log"
271
+
272
+ #: app/security/views/login_status.html
273
+ msgid "Log In"
274
+ msgstr "Accedi"
275
+
276
+ #: app/security/views/login_status.html
277
+ msgid "Log Out"
278
+ msgstr "Esci"
279
+
280
+ #: app/security/views/login_status.html
281
+ msgid "Logged into the Red Hat Customer Portal as"
282
+ msgstr "Accesso eseguito nel Portale clienti di Red Hat come"
283
+
284
+ #: app/cases/views/accountSelect.html
285
+ msgid "My Account"
286
+ msgstr "Account"
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 "Successivo"
295
+
296
+ #: app/cases/views/listAttachments.html
297
+ msgid "No attachments added"
298
+ msgstr "Nessun allegato aggiunto"
299
+
300
+ #: app/cases/views/compactCaseList.html
301
+ #: app/cases/views/list.html
302
+ msgid "No cases found with given filters."
303
+ msgstr "Nessun caso trovato con il filtro usato."
304
+
305
+ #: app/cases/views/search.html
306
+ msgid "No cases found with given search criteria."
307
+ msgstr "Nessun caso trovato con i criteri di ricerca specificati."
308
+
309
+ #: app/cases/views/groupList.html
310
+ msgid "No groups found."
311
+ msgstr "Nessun gruppo trovato."
312
+
313
+ #: app/cases/views/listBugzillas.html
314
+ msgid "No linked bugzillas"
315
+ msgstr "Nessun bugzilla collegato"
316
+
317
+ #: app/security/views/login_status.html
318
+ msgid "Not Logged into the Red Hat Customer Portal"
319
+ msgstr "Accesso non eseguito nel Portale clienti di Red Hat come"
320
+
321
+ #: app/security/views/login_form.html
322
+ msgid "Note:"
323
+ msgstr "Nota Bene:"
324
+
325
+ #: app/cases/views/detailsSection.html
326
+ msgid "Notes:"
327
+ msgstr "Nota Bene:"
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
+ "Dopo aver selezionato il file di log sarà possibile eseguire la diagnosi di "
336
+ "qualsiasi parte del file selezionando il pulsante 'Diagnostica Red Hat'. "
337
+ "Così facendo potrai visualizzare le soluzioni e gli articoli rilevanti del "
338
+ "Red Hat Knowledge base."
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 "Apri un nuovo caso con il supporto tecnico"
345
+
346
+ #: app/cases/views/detailsSection.html
347
+ msgid "Opened:"
348
+ msgstr "Aperto: "
349
+
350
+ #: app/cases/views/search.html
351
+ msgid "Owner"
352
+ msgstr "Proprietario"
353
+
354
+ #: app/cases/views/detailsSection.html
355
+ #: app/cases/views/new.html
356
+ msgid "Owner:"
357
+ msgstr "Proprietario:"
358
+
359
+ #: app/security/views/login_form.html
360
+ msgid "Password"
361
+ msgstr "Password"
362
+
363
+ #: app/cases/views/new.html
364
+ msgid "Previous"
365
+ msgstr "Precedente"
366
+
367
+ #: app/cases/views/search.html
368
+ msgid "Product"
369
+ msgstr "Prodotto"
370
+
371
+ #: app/cases/views/detailsSection.html
372
+ #: app/cases/views/new.html
373
+ msgid "Product Version:"
374
+ msgstr "Versione del prodotto:"
375
+
376
+ #: app/cases/views/detailsSection.html
377
+ #: app/cases/views/new.html
378
+ msgid "Product:"
379
+ msgstr "Prodotto:"
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 "Consigli"
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 facilita la soluzione dei problemi, il processo di diagnosi e "
394
+ "l'interazione con Red Hat tramite il Portale clienti. Per accedere alle "
395
+ "risorse del Portale clienti è necessario inserire le credenziali valide."
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
+ "Le credenziali del Portale clienti di Red Hat differiscono da quelle usate "
403
+ "per l'accesso a questo prodotto."
404
+
405
+ #: app/log_viewer/views/logTabs.html
406
+ msgid "Red Hat Diagnose"
407
+ msgstr "Diagnostica Red Hat"
408
+
409
+ #: app/security/views/login_form.html
410
+ msgid "Red Hat Login"
411
+ msgstr "Login di Red Hat"
412
+
413
+ #: app/cases/views/detailsSection.html
414
+ msgid "Red Hat Owner:"
415
+ msgstr "Proprietario Red Hat:"
416
+
417
+ #: app/cases/views/commentsSection.html
418
+ #: app/cases/views/requestManagementEscalationModal.html
419
+ msgid "Request Management Escalation"
420
+ msgstr "Richiesta aumento prioritá livello Manager"
421
+
422
+ #: app/search/views/resultDetail.html
423
+ msgid "Resolution"
424
+ msgstr "Risoluzione"
425
+
426
+ #: app/cases/views/createGroupModal.html
427
+ msgid "Save"
428
+ msgstr "Salva"
429
+
430
+ #: app/cases/views/editGroup.html
431
+ msgid "Save Group"
432
+ msgstr "Salva gruppo"
433
+
434
+ #: app/cases/views/addCommentSection.html
435
+ msgid "Saving draft..."
436
+ msgstr "Salvataggio bozza..."
437
+
438
+ #: app/search/views/search_form.html
439
+ msgid "Search"
440
+ msgstr "Cerca"
441
+
442
+ #: app/cases/views/search.html
443
+ msgid "Searching..."
444
+ msgstr "Ricerca in corso..."
445
+
446
+ #: app/log_viewer/views/navSideBar.html
447
+ msgid "Select File"
448
+ msgstr "Seleziona un file"
449
+
450
+ #: app/cases/views/attachmentsSection.html
451
+ msgid "Server File(s) To Attach:"
452
+ msgstr "File del server da allegare:"
453
+
454
+ #: app/cases/views/search.html
455
+ msgid "Severity"
456
+ msgstr "Severity"
457
+
458
+ #: app/cases/views/detailsSection.html
459
+ #: app/cases/views/new.html
460
+ #: app/cases/views/searchResult.html
461
+ msgid "Severity:"
462
+ msgstr "Severity:"
463
+
464
+ #: app/security/views/login_form.html
465
+ msgid "Sign in"
466
+ msgstr "Accedi"
467
+
468
+ #: app/security/views/login_form.html
469
+ msgid "Sign into the Red Hat Customer Portal"
470
+ msgstr "Accedi al Portale clienti di Red Hat"
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
+ "Vai alla ricerca e seleziona un file di log dall'elenco sulla sinistra e "
478
+ "fare clic sul pulsante 'Seleziona file'."
479
+
480
+ #: app/cases/views/listAttachments.html
481
+ msgid "Size"
482
+ msgstr "Dimensione"
483
+
484
+ #: app/cases/views/search.html
485
+ msgid "Status"
486
+ msgstr "Stato"
487
+
488
+ #: app/cases/views/detailsSection.html
489
+ #: app/cases/views/searchResult.html
490
+ msgid "Status:"
491
+ msgstr "Stato:"
492
+
493
+ #: app/cases/views/new.html
494
+ msgid "Submit"
495
+ msgstr "Invia"
496
+
497
+ #: app/cases/views/requestManagementEscalationModal.html
498
+ msgid "Submit Request"
499
+ msgstr "Invia una richiesta"
500
+
501
+ #: app/cases/services/attachmentsService.js
502
+ msgid "Successfully deleted attachment:"
503
+ msgstr "Allegato rimosso con successo:"
504
+
505
+ #: app/cases/services/attachmentsService.js
506
+ msgid "Successfully uploaded attachment"
507
+ msgstr "Allegato caricato con successo"
508
+
509
+ #: app/cases/views/listBugzillas.html
510
+ msgid "Summary of Request"
511
+ msgstr "Sommario della richiesta"
512
+
513
+ #: app/cases/views/new.html
514
+ msgid "Summary:"
515
+ msgstr "Sommario:"
516
+
517
+ #: app/cases/views/detailsSection.html
518
+ msgid "Support Level:"
519
+ msgstr "Livello di supporto:"
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
+ "Il visualizzatore del file di log permette di eseguire una diagnosi dei log "
527
+ "dell'applicazione, e di aprire un caso per il supporto con il Red Hat Global "
528
+ "Support Services."
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
+ "Questa versione è stata rimossa, consultare le FAQ prima di completare una "
536
+ "richiesta di supporto"
537
+
538
+ #: app/search/views/list_search_results.html
539
+ msgid "To view a recommendation, click on it."
540
+ msgstr "Selezionare il consiglio desiderato per poterlo visualizzare."
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 "Non autorizzato."
549
+
550
+ #: app/cases/views/detailsSection.html
551
+ msgid "Update Details"
552
+ msgstr "Aggiorna le informazioni"
553
+
554
+ #: app/cases/views/searchResult.html
555
+ msgid "Updated:"
556
+ msgstr "Aggiornato:"
557
+
558
+ #: app/cases/views/attachmentsSection.html
559
+ msgid "Upload Attachments"
560
+ msgstr "Carica allegati"
561
+
562
+ #: app/cases/views/editGroup.html
563
+ msgid "User Name"
564
+ msgstr "Nome utente"
565
+
566
+ #: app/cases/views/recommendationsSection.html
567
+ msgid "View full article in new window"
568
+ msgstr "Visualizza tutto l'articolo in una nuova finestra"
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
+ "Desideri che un responsabile per il supporto di Red Hat ti contatti con "
575
+ "riferimento a questo caso?"
576
+
577
+ #: app/cases/views/addCommentSection.html
578
+ msgid "You have used 0% of the 32KB maximum description size."
579
+ msgstr ""
580
+ "Hai usato 0% dei 32 KB stabiliti come dimensione massima per le descrizioni."
581
+
582
+ #: app/cases/views/recommendationsSection.html
583
+ msgid "handpicked"
584
+ msgstr "scelto"
585
+
586
+ #: app/cases/services/attachmentsService.js
587
+ msgid "to case"
588
+ msgstr "per il caso"
589
+