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,593 @@
1
+ # Sam Friedmann <sfriedma@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 08:53-0400\n"
8
+ "Last-Translator: Sam Friedmann <sfriedma@redhat.com>\n"
9
+ "Language-Team: French\n"
10
+ "Language: fr\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 "Contact 24h/24 et 7j/7 :"
18
+
19
+ #: app/cases/views/detailsSection.html
20
+ #: app/cases/views/new.html
21
+ msgid "24x7 Support:"
22
+ msgstr "Assistance 24h/24 et 7j/7 :"
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;Ouvrir un nouveau "
30
+ "dossier d'assistance"
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;Sélectionner un "
36
+ "journal"
37
+
38
+ #: app/cases/views/detailsSection.html
39
+ msgid "Account Name:"
40
+ msgstr "Nom du compte :"
41
+
42
+ #: app/cases/views/detailsSection.html
43
+ msgid "Account Number:"
44
+ msgstr "Numéro de compte :"
45
+
46
+ #: app/cases/views/new.html
47
+ msgid "Account:"
48
+ msgstr "Compte :"
49
+
50
+ #: app/cases/views/attachLocalFile.html
51
+ #: app/cases/views/attachProductLogs.html
52
+ msgid "Add"
53
+ msgstr "Ajouter"
54
+
55
+ #: app/cases/views/addCommentSection.html
56
+ msgid "Add Comment"
57
+ msgstr "Ajouter un commentaire"
58
+
59
+ #: app/cases/views/detailsSection.html
60
+ msgid "Advanced Mission Critical"
61
+ msgstr "Fonctions avancées essentielles"
62
+
63
+ #: app/cases/views/detailsSection.html
64
+ msgid "Alternate Case ID:"
65
+ msgstr "ID alternative du dossier :"
66
+
67
+ #: app/cases/views/attachProductLogs.html
68
+ msgid "Attach Foreman logs:"
69
+ msgstr "Joindre des journaux Foreman :"
70
+
71
+ #: app/cases/views/attachLocalFile.html
72
+ msgid "Attach local file"
73
+ msgstr "Joindre un fichier local"
74
+
75
+ #: app/cases/views/listAttachments.html
76
+ msgid "Attached"
77
+ msgstr "Joint"
78
+
79
+ #: app/cases/views/listAttachments.html
80
+ msgid "Attached By"
81
+ msgstr "Pièce jointe par :"
82
+
83
+ #: app/cases/views/listAttachments.html
84
+ msgid "Attached Files"
85
+ msgstr "Fichiers joints"
86
+
87
+ #: app/cases/views/attachmentsSection.html
88
+ msgid "Attachments"
89
+ msgstr "Pièces jointes"
90
+
91
+ #: app/cases/views/new.html
92
+ msgid "Attachments:"
93
+ msgstr "Pièces jointes :"
94
+
95
+ #: app/log_viewer/views/navSideBar.html
96
+ msgid "Available Log Files"
97
+ msgstr "Fichiers journaux disponibles"
98
+
99
+ #: app/cases/views/listBugzillas.html
100
+ msgid "Bugzilla Number"
101
+ msgstr "Numéro sur Bugzilla"
102
+
103
+ #: app/cases/views/listBugzillas.html
104
+ msgid "Bugzilla Tickets"
105
+ msgstr "Tickets sur Bugzilla"
106
+
107
+ #: app/security/views/login_form.html
108
+ #: app/cases/views/createGroupModal.html
109
+ #: app/cases/views/editGroup.html
110
+ msgid "Cancel"
111
+ msgstr "Annuler"
112
+
113
+ #: app/cases/views/commentsSection.html
114
+ msgid "Case Discussion"
115
+ msgstr "Discussion du dossier"
116
+
117
+ #: app/cases/views/createGroupModal.html
118
+ #: app/cases/views/new.html
119
+ msgid "Case Group:"
120
+ msgstr "Groupe du dossier :"
121
+
122
+ #: app/cases/views/detailsSection.html
123
+ msgid "Case Type:"
124
+ msgstr "Type de dossier :"
125
+
126
+ #: app/cases/views/chatButton.html
127
+ msgid "Chat offline"
128
+ msgstr "Discuter hors-ligne"
129
+
130
+ #: app/cases/views/chatButton.html
131
+ msgid "Chat with support"
132
+ msgstr "Discuter avec le support technique"
133
+
134
+ #: app/common/views/treeview-selector.html
135
+ msgid "Choose File(s) To Attach:"
136
+ msgstr "Choisir le(s) fichier(s) à joindre :"
137
+
138
+ #: app/common/views/alert.html
139
+ msgid "Close messages"
140
+ msgstr "Fermer les messages"
141
+
142
+ #: app/cases/views/requestManagementEscalationModal.html
143
+ msgid "Comment:"
144
+ msgstr "Commentaire :"
145
+
146
+ #: app/cases/views/createGroupModal.html
147
+ msgid "Create Case Group"
148
+ msgstr "Créer un groupe de dossiers"
149
+
150
+ #: app/cases/views/createGroupButton.html
151
+ msgid "Create New Case Group"
152
+ msgstr "Créer un nouveau groupe de dossiers"
153
+
154
+ #: app/cases/views/listAttachments.html
155
+ msgid "Delete"
156
+ msgstr "Supprimer"
157
+
158
+ #: app/cases/views/deleteGroupButton.html
159
+ msgid "Delete Group"
160
+ msgstr "Supprimer le groupe"
161
+
162
+ #: app/cases/services/attachmentsService.js
163
+ msgid "Deleting attachment:"
164
+ msgstr "Supprimer la pièce jointe :"
165
+
166
+ #: app/cases/views/descriptionSection.html
167
+ #: app/cases/views/listAttachments.html
168
+ msgid "Description"
169
+ msgstr "Description"
170
+
171
+ #: app/cases/views/new.html
172
+ msgid "Description:"
173
+ msgstr "Description :"
174
+
175
+ #: app/cases/views/detailsSection.html
176
+ msgid "Details"
177
+ msgstr "Détails"
178
+
179
+ #: app/log_viewer/views/logsInstructionPane.html
180
+ msgid "Diagnose"
181
+ msgstr "Diagnostiquer"
182
+
183
+ #: app/cases/views/addCommentSection.html
184
+ msgid "Draft saved"
185
+ msgstr "Brouillon enregistré"
186
+
187
+ #: app/cases/views/emailNotifySelect.html
188
+ msgid "Email Notification Recipients"
189
+ msgstr "Envoyer un courrier électronique aux destinataires des notifications"
190
+
191
+ #: app/search/views/resultDetail.html
192
+ msgid "Environment"
193
+ msgstr "Environnement"
194
+
195
+ #: app/cases/views/exportCSVButton.html
196
+ msgid "Export All as CSV"
197
+ msgstr "Tout exporter en CSV"
198
+
199
+ #: app/cases/views/exportCSVButton.html
200
+ msgid "Exporting CSV..."
201
+ msgstr "Export CRV en cours..."
202
+
203
+ #: app/cases/views/attachLocalFile.html
204
+ msgid ""
205
+ "File names must be less than 80 characters. Maximum file size for web-"
206
+ "uploaded attachments is 250 MB. Please FTP larger files to dropbox.redhat."
207
+ "com."
208
+ msgstr ""
209
+ "Les noms de fichiers sont limités à 80 caractères. La taille de fichier "
210
+ "maximale pour les pièces jointes téléversées par le web est de 250 Mo. Pour "
211
+ "les fichiers plus importants, veuillez utiliser FTP (dropbox.redhat.com)."
212
+
213
+ #: app/cases/views/listAttachments.html
214
+ msgid "Filename"
215
+ msgstr "Nom du fichier"
216
+
217
+ #: app/cases/views/listNewAttachments.html
218
+ msgid "Files to Attach"
219
+ msgstr "Fichiers à joindre"
220
+
221
+ #: app/cases/views/editGroup.html
222
+ msgid "First Name"
223
+ msgstr "Prénom"
224
+
225
+ #: app/cases/views/search.html
226
+ msgid "Group"
227
+ msgstr "Groupe"
228
+
229
+ #: app/cases/views/detailsSection.html
230
+ msgid "Group:"
231
+ msgstr "Groupe :"
232
+
233
+ #: app/cases/views/requestManagementEscalationModal.html
234
+ msgid ""
235
+ "If you feel the issue has become more severe or the case should be a higher "
236
+ "priority, please provide a detailed comment, and the case will be reviewed "
237
+ "by a support manager."
238
+ msgstr ""
239
+ "Si vous estimez que votre problème s'est aggravé ou qu'il devrait bénéficier "
240
+ "d'un niveau de priorité plus élevé, saisissez un commentaire détaillé afin "
241
+ "qu'un responsable d'assistance se charge de votre dossier."
242
+
243
+ #: app/log_viewer/views/logsInstructionPane.html
244
+ msgid ""
245
+ "In the event that you would still like to open a support case, select 'Open "
246
+ "a New Support Case'. The case will be pre-populated with the portion of the "
247
+ "log previously selected."
248
+ msgstr ""
249
+ "Si vous souhaitez tout de même ouvrir un nouveau dossier d'assistance, "
250
+ "veuillez sélectionner « Ouvrir un nouveau dossier d'assistance ». Le dossier "
251
+ "sera pré-rempli avec la portion du journal précédemment sélectionnée."
252
+
253
+ #: app/cases/views/addCommentSection.html
254
+ msgid "Is Public:"
255
+ msgstr "Publique :"
256
+
257
+ #: app/cases/views/editGroup.html
258
+ msgid "Last Name"
259
+ msgstr "Nom de famille"
260
+
261
+ #: app/cases/views/detailsSection.html
262
+ msgid "Last Updated:"
263
+ msgstr "Dernière mise à jour :"
264
+
265
+ #: app/cases/views/requestManagementEscalationModal.html
266
+ msgid "Learn more"
267
+ msgstr "En savoir plus"
268
+
269
+ #: app/log_viewer/views/logsInstructionPane.html
270
+ msgid "Log File Viewer"
271
+ msgstr "Visionneur de fichiers journaux"
272
+
273
+ #: app/security/views/login_status.html
274
+ msgid "Log In"
275
+ msgstr "Connexion"
276
+
277
+ #: app/security/views/login_status.html
278
+ msgid "Log Out"
279
+ msgstr "Déconnexion"
280
+
281
+ #: app/security/views/login_status.html
282
+ msgid "Logged into the Red Hat Customer Portal as"
283
+ msgstr "Connecté sur le Portail Client Red Hat en tant que"
284
+
285
+ #: app/cases/views/accountSelect.html
286
+ msgid "My Account"
287
+ msgstr "Mon compte"
288
+
289
+ #: app/cases/views/groupList.html
290
+ msgid "Name"
291
+ msgstr "Nom"
292
+
293
+ #: app/cases/views/new.html
294
+ msgid "Next"
295
+ msgstr "Suivant"
296
+
297
+ #: app/cases/views/listAttachments.html
298
+ msgid "No attachments added"
299
+ msgstr "Aucune pièce jointe nécessaire"
300
+
301
+ #: app/cases/views/compactCaseList.html
302
+ #: app/cases/views/list.html
303
+ msgid "No cases found with given filters."
304
+ msgstr "Aucun dossier trouvé avec les filtres donnés."
305
+
306
+ #: app/cases/views/search.html
307
+ msgid "No cases found with given search criteria."
308
+ msgstr "Aucun dossier trouvé avec les critères de recherche donnés."
309
+
310
+ #: app/cases/views/groupList.html
311
+ msgid "No groups found."
312
+ msgstr "Aucun groupe trouvé."
313
+
314
+ #: app/cases/views/listBugzillas.html
315
+ msgid "No linked bugzillas"
316
+ msgstr "Aucun bugzilla lié"
317
+
318
+ #: app/security/views/login_status.html
319
+ msgid "Not Logged into the Red Hat Customer Portal"
320
+ msgstr "Non connecté sur le Portail Client Red Hat"
321
+
322
+ #: app/security/views/login_form.html
323
+ msgid "Note:"
324
+ msgstr "Remarque :"
325
+
326
+ #: app/cases/views/detailsSection.html
327
+ msgid "Notes:"
328
+ msgstr "Remarques :"
329
+
330
+ #: app/log_viewer/views/logsInstructionPane.html
331
+ msgid ""
332
+ "Once you have selected your log file then you may diagnose any part of the "
333
+ "log file and clicking the 'Red Hat Diagnose' button. This will then display "
334
+ "relevant articles and solutons from our Red Hat Knowledge base."
335
+ msgstr ""
336
+ "Une fois le fichier journal sélectionné, vous pourrez diagnostiquer "
337
+ "n'importe quelle partie de celui-ci et cliquer sur le bouton « Diagnostique "
338
+ "Red Hat ». Ceci affichera les articles et les solutions correspondants de la "
339
+ "base de connaissances Red Hat."
340
+
341
+ #: app/search/views/accordion_search_results.html
342
+ #: app/cases/views/list.html
343
+ #: app/cases/views/search.html
344
+ msgid "Open a New Support Case"
345
+ msgstr "Ouvrir un nouveau dossier d'assistance"
346
+
347
+ #: app/cases/views/detailsSection.html
348
+ msgid "Opened:"
349
+ msgstr "Ouvert  :"
350
+
351
+ #: app/cases/views/search.html
352
+ msgid "Owner"
353
+ msgstr "Propriétaire"
354
+
355
+ #: app/cases/views/detailsSection.html
356
+ #: app/cases/views/new.html
357
+ msgid "Owner:"
358
+ msgstr "Propriétaire :"
359
+
360
+ #: app/security/views/login_form.html
361
+ msgid "Password"
362
+ msgstr "Mot de passe"
363
+
364
+ #: app/cases/views/new.html
365
+ msgid "Previous"
366
+ msgstr "Précédent"
367
+
368
+ #: app/cases/views/search.html
369
+ msgid "Product"
370
+ msgstr "Produit"
371
+
372
+ #: app/cases/views/detailsSection.html
373
+ #: app/cases/views/new.html
374
+ msgid "Product Version:"
375
+ msgstr "Version du produit :"
376
+
377
+ #: app/cases/views/detailsSection.html
378
+ #: app/cases/views/new.html
379
+ msgid "Product:"
380
+ msgstr "Produit :"
381
+
382
+ #: app/search/views/accordion_search_results.html
383
+ #: app/search/views/list_search_results.html
384
+ #: app/cases/views/recommendationsSection.html
385
+ msgid "Recommendations"
386
+ msgstr "Recommandations"
387
+
388
+ #: app/security/views/login_form.html
389
+ msgid ""
390
+ "Red Hat Access makes it easy for you to self-solve issues, diagnose "
391
+ "problems, and engage with us via the Red Hat Customer Portal. To access Red "
392
+ "Hat Customer Portal resources, you must enter valid portal credentials."
393
+ msgstr ""
394
+ "Red Hat Access vous permet de résoudre vos problèmes vous-même, de "
395
+ "diagnostiquer les problèmes, et de nous contacter plus facilement, le tout "
396
+ "via le Portail Client. Pour accéder aux ressources du Portail Client, vous "
397
+ "devrez saisir des informations d'identification valides sur le portail."
398
+
399
+ #: app/security/views/login_form.html
400
+ msgid ""
401
+ "Red Hat Customer Portal credentials differ from the credentials used to log "
402
+ "into this product."
403
+ msgstr ""
404
+ "Les informations d'identification du Portail Client Red Hat diffèrent des "
405
+ "informations d'identifications utilisées pour se connecter à ce produit."
406
+
407
+ #: app/log_viewer/views/logTabs.html
408
+ msgid "Red Hat Diagnose"
409
+ msgstr "Diagnostique Red Hat"
410
+
411
+ #: app/security/views/login_form.html
412
+ msgid "Red Hat Login"
413
+ msgstr "Connexion Red Hat"
414
+
415
+ #: app/cases/views/detailsSection.html
416
+ msgid "Red Hat Owner:"
417
+ msgstr "Propriéraire Red Hat :"
418
+
419
+ #: app/cases/views/commentsSection.html
420
+ #: app/cases/views/requestManagementEscalationModal.html
421
+ msgid "Request Management Escalation"
422
+ msgstr "Demander la remontée d'un problème"
423
+
424
+ #: app/search/views/resultDetail.html
425
+ msgid "Resolution"
426
+ msgstr "Résolution"
427
+
428
+ #: app/cases/views/createGroupModal.html
429
+ msgid "Save"
430
+ msgstr "Enregistrer"
431
+
432
+ #: app/cases/views/editGroup.html
433
+ msgid "Save Group"
434
+ msgstr "Enregistrer le groupe"
435
+
436
+ #: app/cases/views/addCommentSection.html
437
+ msgid "Saving draft..."
438
+ msgstr "Enregistrement du brouillon..."
439
+
440
+ #: app/search/views/search_form.html
441
+ msgid "Search"
442
+ msgstr "Rechercher"
443
+
444
+ #: app/cases/views/search.html
445
+ msgid "Searching..."
446
+ msgstr "Recherche en cours..."
447
+
448
+ #: app/log_viewer/views/navSideBar.html
449
+ msgid "Select File"
450
+ msgstr "Sélectionner le fichier"
451
+
452
+ #: app/cases/views/attachmentsSection.html
453
+ msgid "Server File(s) To Attach:"
454
+ msgstr "Fichier(s) du serveur à joindre :"
455
+
456
+ #: app/cases/views/search.html
457
+ msgid "Severity"
458
+ msgstr "Sévérité"
459
+
460
+ #: app/cases/views/detailsSection.html
461
+ #: app/cases/views/new.html
462
+ #: app/cases/views/searchResult.html
463
+ msgid "Severity:"
464
+ msgstr "Sévérité :"
465
+
466
+ #: app/security/views/login_form.html
467
+ msgid "Sign in"
468
+ msgstr "Connexion"
469
+
470
+ #: app/security/views/login_form.html
471
+ msgid "Sign into the Red Hat Customer Portal"
472
+ msgstr "Connexion au Portail Client Red Hat"
473
+
474
+ #: app/log_viewer/views/logsInstructionPane.html
475
+ msgid ""
476
+ "Simply navigate to and select a log file from the list on the left and click "
477
+ "the 'Select File' button."
478
+ msgstr ""
479
+ "Veuillez simplement vous rendre sur la liste à gauche, puis sélectionnez un "
480
+ "fichier journal et cliquez sur le bouton « Sélectionner le fichier »."
481
+
482
+ #: app/cases/views/listAttachments.html
483
+ msgid "Size"
484
+ msgstr "Taille"
485
+
486
+ #: app/cases/views/search.html
487
+ msgid "Status"
488
+ msgstr "Statut"
489
+
490
+ #: app/cases/views/detailsSection.html
491
+ #: app/cases/views/searchResult.html
492
+ msgid "Status:"
493
+ msgstr "Statut :"
494
+
495
+ #: app/cases/views/new.html
496
+ msgid "Submit"
497
+ msgstr "Valider"
498
+
499
+ #: app/cases/views/requestManagementEscalationModal.html
500
+ msgid "Submit Request"
501
+ msgstr "Valider la requête"
502
+
503
+ #: app/cases/services/attachmentsService.js
504
+ msgid "Successfully deleted attachment:"
505
+ msgstr "Suppression de la pièce jointe réussie :"
506
+
507
+ #: app/cases/services/attachmentsService.js
508
+ msgid "Successfully uploaded attachment"
509
+ msgstr "Pièce jointe attachée"
510
+
511
+ #: app/cases/views/listBugzillas.html
512
+ msgid "Summary of Request"
513
+ msgstr "Résumé de la requête"
514
+
515
+ #: app/cases/views/new.html
516
+ msgid "Summary:"
517
+ msgstr "Résumé :"
518
+
519
+ #: app/cases/views/detailsSection.html
520
+ msgid "Support Level:"
521
+ msgstr "Niveau d'assistance :"
522
+
523
+ #: app/log_viewer/views/logsInstructionPane.html
524
+ msgid ""
525
+ "The log file viewer gives the ability to diagnose application logs as well "
526
+ "as file a support case with Red Hat Global Support Services."
527
+ msgstr ""
528
+ "Le visionneur de fichiers journaux offre la possibilité de diagnostiquer "
529
+ "les journaux d'applications ainsi que d'ouvrir un dossier d'assistance avec "
530
+ "le service de support technique de Red Hat, « Red Hat Global Support "
531
+ "Services » (Red Hat GSS)."
532
+
533
+ #: app/cases/views/new.html
534
+ msgid ""
535
+ "This release is now retired, please refer to the recommended FAQ prior to "
536
+ "filing a case"
537
+ msgstr ""
538
+ "Cette version est désormais obsolète, veuillez consulter la FAQ recommandée "
539
+ "avant d'ouvrir un dossier."
540
+
541
+ #: app/search/views/list_search_results.html
542
+ msgid "To view a recommendation, click on it."
543
+ msgstr "Pour afficher une recommandation, veuillez cliquer dessus."
544
+
545
+ #: app/cases/views/search.html
546
+ msgid "Type"
547
+ msgstr "Type"
548
+
549
+ #: app/common/services/strataService.js
550
+ msgid "Unauthorized."
551
+ msgstr "Non autorisé."
552
+
553
+ #: app/cases/views/detailsSection.html
554
+ msgid "Update Details"
555
+ msgstr "Mise à jour des détails"
556
+
557
+ #: app/cases/views/searchResult.html
558
+ msgid "Updated:"
559
+ msgstr "Mis à jour :"
560
+
561
+ #: app/cases/views/attachmentsSection.html
562
+ msgid "Upload Attachments"
563
+ msgstr "Téléverser les pièces jointes"
564
+
565
+ #: app/cases/views/editGroup.html
566
+ msgid "User Name"
567
+ msgstr "Nom d'utilisateur"
568
+
569
+ #: app/cases/views/recommendationsSection.html
570
+ msgid "View full article in new window"
571
+ msgstr "Afficher l'article complet dans une nouvelle fenêtre"
572
+
573
+ #: app/cases/views/commentsSection.html
574
+ msgid ""
575
+ "Would you like a Red Hat support manager to contact you regarding this case?"
576
+ msgstr ""
577
+ "Souhaitez-vous qu'un responsable d'assistance Red Hat vous contacte au sujet "
578
+ "de votre dossier ?"
579
+
580
+ #: app/cases/views/addCommentSection.html
581
+ msgid "You have used 0% of the 32KB maximum description size."
582
+ msgstr ""
583
+ "Vous avez utilisé 0% des 32 Ko correspondants à la taille maximale de la "
584
+ "description."
585
+
586
+ #: app/cases/views/recommendationsSection.html
587
+ msgid "handpicked"
588
+ msgstr "sélection personnelle"
589
+
590
+ #: app/cases/services/attachmentsService.js
591
+ msgid "to case"
592
+ msgstr "pour le dossier"
593
+
data/locale/gemspec.rb ADDED
@@ -0,0 +1,2 @@
1
+ #duplicates gemspec s.description
2
+ _("This plugin adds Red Hat Access knowledge base search, case management and diagnostics to Foreman")