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.
- checksums.yaml +7 -0
- data/Gemfile +24 -0
- data/LICENSE.txt +620 -0
- data/README.rdoc +7 -0
- data/Rakefile +131 -0
- data/app/assets/javascripts/insights/app.module.js +64 -0
- data/app/assets/javascripts/insights/application.js +18 -0
- data/app/assets/javascripts/insights/configuration.controller.js +66 -0
- data/app/assets/javascripts/insights/configuration.service.js +28 -0
- data/app/assets/javascripts/insights/views/configuration.html +85 -0
- data/app/assets/javascripts/insights/views/error.html +13 -0
- data/app/assets/javascripts/insights/views/help.html +16 -0
- data/app/assets/javascripts/redhat_access/analytics_dashboard.js +2 -0
- data/app/assets/javascripts/redhat_access/application.js +15 -0
- data/app/assets/javascripts/redhat_access/redhat_access.module.js +126 -0
- data/app/assets/stylesheets/insights/application.css +14 -0
- data/app/assets/stylesheets/insights/insights.css +21 -0
- data/app/assets/stylesheets/redhat_access/application.css +14 -0
- data/app/assets/stylesheets/redhat_access/telemetry_configuration.css +4 -0
- data/app/controllers/redhat_access/analytics_dashboard_controller.rb +12 -0
- data/app/controllers/redhat_access/api/api_controller.rb +24 -0
- data/app/controllers/redhat_access/api/attachments_controller.rb +40 -0
- data/app/controllers/redhat_access/api/logs_controller.rb +49 -0
- data/app/controllers/redhat_access/api/machine_telemetry_api_controller.rb +112 -0
- data/app/controllers/redhat_access/api/strata_proxy_controller.rb +81 -0
- data/app/controllers/redhat_access/api/telemetry_api_controller.rb +179 -0
- data/app/controllers/redhat_access/application_controller.rb +2 -0
- data/app/controllers/redhat_access/cases_controller.rb +14 -0
- data/app/controllers/redhat_access/configuration_controller.rb +21 -0
- data/app/controllers/redhat_access/log_viewer_controller.rb +9 -0
- data/app/controllers/redhat_access/redhat_access_controller.rb +8 -0
- data/app/controllers/redhat_access/search_controller.rb +9 -0
- data/app/controllers/redhat_access/strata_credentials_controller.rb +48 -0
- data/app/controllers/redhat_access/telemetry_configurations_controller.rb +38 -0
- data/app/controllers/redhat_access/telemetry_controller.rb +6 -0
- data/app/helpers/redhat_access/analytics_dashboard_helper.rb +13 -0
- data/app/helpers/redhat_access/application_helper.rb +4 -0
- data/app/helpers/redhat_access/attachments_helper.rb +4 -0
- data/app/helpers/redhat_access/cases_helper.rb +4 -0
- data/app/helpers/redhat_access/log_viewer_helper.rb +4 -0
- data/app/helpers/redhat_access/logs_helper.rb +4 -0
- data/app/helpers/redhat_access/redhat_access_helper.rb +4 -0
- data/app/helpers/redhat_access/search_helper.rb +4 -0
- data/app/helpers/redhat_access/telemetry_configuration_helper.rb +4 -0
- data/app/models/redhat_access/concerns/organization_extensions.rb +10 -0
- data/app/models/redhat_access/telemetry_configuration.rb +11 -0
- data/app/models/redhat_access/telemetry_proxy_credentials.rb +10 -0
- data/app/services/redhat_access/authentication/client_authentication.rb +80 -0
- data/app/services/redhat_access/telemetry/look_ups.rb +233 -0
- data/app/services/redhat_access/telemetry/portal_client.rb +39 -0
- data/app/views/redhat_access/analytics_dashboard/configuration.html.erb +85 -0
- data/app/views/redhat_access/analytics_dashboard/error.html.erb +13 -0
- data/app/views/redhat_access/analytics_dashboard/help.html.erb +16 -0
- data/app/views/redhat_access/analytics_dashboard/index.html.erb +69 -0
- data/app/views/redhat_access/analytics_dashboard/welcome.html.erb +8 -0
- data/app/views/redhat_access/redhat_access/index.html.erb +34 -0
- data/ca/rh_cert-api_chain.pem +74 -0
- data/config/config.yml.example +15 -0
- data/config/environments/development.rb +5 -0
- data/config/initializers/load_config.rb +5 -0
- data/config/mount_engine.rb +3 -0
- data/config/routes.rb +36 -0
- data/db/migrate/20141204161152_create_redhat_access_telemetry_proxy_credentials.rb +11 -0
- data/db/migrate/20150319153744_create_redhat_access_telemetry_configurations.rb +13 -0
- data/db/migrate/20160425175501_add_email_to_telemetry_configurations.rb +5 -0
- data/db/seeds.d/200-update-insights-roles.rb +11 -0
- data/lib/redhat_access/configuration.rb +8 -0
- data/lib/redhat_access/engine.rb +225 -0
- data/lib/redhat_access/sos_reports/generator.rb +58 -0
- data/lib/redhat_access/strata/client.rb +39 -0
- data/lib/redhat_access/version.rb +3 -0
- data/lib/redhat_access.rb +5 -0
- data/lib/tasks/redhat_access_tasks.rake +41 -0
- data/locale/Makefile +62 -0
- data/locale/de/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/de/redhat_access.po +589 -0
- data/locale/es/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/es/redhat_access.po +589 -0
- data/locale/fr/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/fr/redhat_access.po +593 -0
- data/locale/gemspec.rb +2 -0
- data/locale/it/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/it/redhat_access.po +589 -0
- data/locale/ja/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/ja/redhat_access.po +569 -0
- data/locale/ko/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/ko/redhat_access.po +570 -0
- data/locale/pt/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/pt/redhat_access.po +588 -0
- data/locale/redhat_access.pot +34 -0
- data/locale/ru/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/ru/redhat_access.po +580 -0
- data/locale/zh/LC_MESSAGES/redhat_access.mo +0 -0
- data/locale/zh/redhat_access.po +561 -0
- data/redhat_access.gemspec +30 -0
- data/script/rails +8 -0
- data/script/sos_reports/foreman_sosreport.pam +9 -0
- data/script/sos_reports/foreman_sosreport_console.apps +3 -0
- data/script/sos_reports/foreman_sosreport_wrapper.py +65 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/fixtures/redhat_access/telemetry_configurations.yml +11 -0
- data/test/fixtures/redhat_access/telemetry_proxy_credentials.yml +11 -0
- data/test/functional/redhat_access/analytics_dashboard_controller_test.rb +11 -0
- data/test/functional/redhat_access/attachments_controller_test.rb +11 -0
- data/test/functional/redhat_access/cases_controller_test.rb +16 -0
- data/test/functional/redhat_access/configuration_controller_test.rb +11 -0
- data/test/functional/redhat_access/log_viewer_controller_test.rb +11 -0
- data/test/functional/redhat_access/logs_controller_test.rb +9 -0
- data/test/functional/redhat_access/redhat_access_controller_test.rb +11 -0
- data/test/functional/redhat_access/search_controller_test.rb +11 -0
- data/test/functional/redhat_access/telemetry_configuration_controller_test.rb +26 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/models/redhat_access/telemetry_proxy_credentials_test.rb +9 -0
- data/test/redhat_access_test.rb +7 -0
- data/test/sos-report-test.rb +32 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/helpers/redhat_access/analytics_dashboard_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/attachments_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/cases_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/log_viewer_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/logs_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/redhat_access_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/search_helper_test.rb +6 -0
- data/test/unit/helpers/redhat_access/telemetry_configuration_helper_test.rb +6 -0
- data/test/unit/redhat_access/telemetry_configuration_test.rb +9 -0
- data/vendor/assets/fonts/fonts/FontAwesome.otf +0 -0
- data/vendor/assets/fonts/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fonts/fontawesome-webfont.svg +655 -0
- data/vendor/assets/fonts/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/fonts/fonts/icomoon.eot +0 -0
- data/vendor/assets/fonts/fonts/icomoon.svg +22 -0
- data/vendor/assets/fonts/fonts/icomoon.ttf +0 -0
- data/vendor/assets/fonts/fonts/icomoon.woff +0 -0
- data/vendor/assets/fonts/fonts/overpass_bold-web.eot +0 -0
- data/vendor/assets/fonts/fonts/overpass_bold-web.svg +454 -0
- data/vendor/assets/fonts/fonts/overpass_bold-web.ttf +0 -0
- data/vendor/assets/fonts/fonts/overpass_bold-web.woff +0 -0
- data/vendor/assets/fonts/fonts/overpass_light-webfont.eot +0 -0
- data/vendor/assets/fonts/fonts/overpass_light-webfont.svg +2105 -0
- data/vendor/assets/fonts/fonts/overpass_light-webfont.ttf +0 -0
- data/vendor/assets/fonts/fonts/overpass_light-webfont.woff +0 -0
- data/vendor/assets/fonts/fonts/overpass_regular-web.eot +0 -0
- data/vendor/assets/fonts/fonts/overpass_regular-web.svg +454 -0
- data/vendor/assets/fonts/fonts/overpass_regular-web.ttf +0 -0
- data/vendor/assets/fonts/fonts/overpass_regular-web.woff +0 -0
- data/vendor/assets/fonts/fonts/portalicons.eot +0 -0
- data/vendor/assets/fonts/fonts/portalicons.svg +145 -0
- data/vendor/assets/fonts/fonts/portalicons.ttf +0 -0
- data/vendor/assets/fonts/fonts/portalicons.woff +0 -0
- data/vendor/assets/images/images/Icon_RH_Document_Blueprint_RGB_Button.png +0 -0
- data/vendor/assets/images/images/Icon_RH_Misc_Lifestyle_RGB_Button.png +0 -0
- data/vendor/assets/images/images/Icon_RH_Software_Data_CMYK_Button.png +0 -0
- data/vendor/assets/images/images/Icon_RH_Software_Transfer-Upload_CMYK_Button.png +0 -0
- data/vendor/assets/images/images/bg1.jpg +0 -0
- data/vendor/assets/images/images/bg_body.jpg +0 -0
- data/vendor/assets/images/images/bg_chart-shadow.png +0 -0
- data/vendor/assets/images/images/bg_dount-hole-na.png +0 -0
- data/vendor/assets/images/images/bg_glow.jpg +0 -0
- data/vendor/assets/images/images/bg_pattern.png +0 -0
- data/vendor/assets/images/images/i_chart.png +0 -0
- data/vendor/assets/images/images/img-insights-connection-sat.png +0 -0
- data/vendor/assets/images/images/img-insights-connection.png +0 -0
- data/vendor/assets/images/images/img-sat5-step2-admin.png +0 -0
- data/vendor/assets/images/images/img-sat5-step3-completed.png +0 -0
- data/vendor/assets/images/images/img-sat5-step3-pending.png +0 -0
- data/vendor/assets/images/images/img-sat5-step3-setup.png +0 -0
- data/vendor/assets/images/images/img-sat5-step5-overview.png +0 -0
- data/vendor/assets/images/images/img-sat5-step5-reports.png +0 -0
- data/vendor/assets/images/images/img-sat5-step5-systems.png +0 -0
- data/vendor/assets/images/images/img-sat6-step2.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step3.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step3.png +0 -0
- data/vendor/assets/images/images/img-sat6-step4.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step5a.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step5b.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step5c.jpg +0 -0
- data/vendor/assets/images/images/img-sat6-step5d.jpg +0 -0
- data/vendor/assets/images/images/keynote-snap.jpg +0 -0
- data/vendor/assets/images/images/keynote-snap.png +0 -0
- data/vendor/assets/images/images/splash-gettingstarted.jpg +0 -0
- data/vendor/assets/images/images/splash-learnmore.jpg +0 -0
- data/vendor/assets/images/images/splash-security.jpg +0 -0
- data/vendor/assets/javascripts/angular/angular.js +20131 -0
- data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui-deps.js +14103 -0
- data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui.js +7854 -0
- data/vendor/assets/javascripts/telemetry/insights.js +39 -0
- data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui-deps.css +11 -0
- data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui.css +1 -0
- data/vendor/assets/stylesheets/telemetry/sat6.css +18 -0
- metadata +341 -0
|
@@ -0,0 +1,589 @@
|
|
|
1
|
+
# gguerrer <gguerrer@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 07:28-0400\n"
|
|
8
|
+
"Last-Translator: gguerrer <gguerrer@redhat.com>\n"
|
|
9
|
+
"Language-Team: Spanish\n"
|
|
10
|
+
"Language: es\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 "Contacto 24x7: "
|
|
18
|
+
|
|
19
|
+
#: app/cases/views/detailsSection.html
|
|
20
|
+
#: app/cases/views/new.html
|
|
21
|
+
msgid "24x7 Support:"
|
|
22
|
+
msgstr "Soporte 24x7::"
|
|
23
|
+
|
|
24
|
+
#: app/log_viewer/views/logsInstructionPane.html
|
|
25
|
+
msgid ""
|
|
26
|
+
"<span class=\"glyphicon glyphicon-plus\"></span> Open a New Support "
|
|
27
|
+
"Case"
|
|
28
|
+
msgstr ""
|
|
29
|
+
"<span class=\"glyphicon glyphicon-plus\"></span> Abrir un nuevo caso de "
|
|
30
|
+
"soporte"
|
|
31
|
+
|
|
32
|
+
#: app/log_viewer/views/logsInstructionPane.html
|
|
33
|
+
msgid "<span class=\"glyphicon glyphicon-refresh\"></span> Select Log"
|
|
34
|
+
msgstr ""
|
|
35
|
+
"<span class=\"glyphicon glyphicon-refresh\"></span> Seleccionar "
|
|
36
|
+
"registro"
|
|
37
|
+
|
|
38
|
+
#: app/cases/views/detailsSection.html
|
|
39
|
+
msgid "Account Name:"
|
|
40
|
+
msgstr "Nombre de cuenta"
|
|
41
|
+
|
|
42
|
+
#: app/cases/views/detailsSection.html
|
|
43
|
+
msgid "Account Number:"
|
|
44
|
+
msgstr "Número de cuenta"
|
|
45
|
+
|
|
46
|
+
#: app/cases/views/new.html
|
|
47
|
+
msgid "Account:"
|
|
48
|
+
msgstr "Cuenta:"
|
|
49
|
+
|
|
50
|
+
#: app/cases/views/attachLocalFile.html
|
|
51
|
+
#: app/cases/views/attachProductLogs.html
|
|
52
|
+
msgid "Add"
|
|
53
|
+
msgstr "Añadir "
|
|
54
|
+
|
|
55
|
+
#: app/cases/views/addCommentSection.html
|
|
56
|
+
msgid "Add Comment"
|
|
57
|
+
msgstr "Agregar un comentario"
|
|
58
|
+
|
|
59
|
+
#: app/cases/views/detailsSection.html
|
|
60
|
+
msgid "Advanced Mission Critical"
|
|
61
|
+
msgstr "Misión crítica avanzada"
|
|
62
|
+
|
|
63
|
+
#: app/cases/views/detailsSection.html
|
|
64
|
+
msgid "Alternate Case ID:"
|
|
65
|
+
msgstr "ID de caso alternativo: "
|
|
66
|
+
|
|
67
|
+
#: app/cases/views/attachProductLogs.html
|
|
68
|
+
msgid "Attach Foreman logs:"
|
|
69
|
+
msgstr "Adjuntar registros Foreman:"
|
|
70
|
+
|
|
71
|
+
#: app/cases/views/attachLocalFile.html
|
|
72
|
+
msgid "Attach local file"
|
|
73
|
+
msgstr "Adjuntar archivos locales"
|
|
74
|
+
|
|
75
|
+
#: app/cases/views/listAttachments.html
|
|
76
|
+
msgid "Attached"
|
|
77
|
+
msgstr "Adjuntado"
|
|
78
|
+
|
|
79
|
+
#: app/cases/views/listAttachments.html
|
|
80
|
+
msgid "Attached By"
|
|
81
|
+
msgstr "Adjuntado por"
|
|
82
|
+
|
|
83
|
+
#: app/cases/views/listAttachments.html
|
|
84
|
+
msgid "Attached Files"
|
|
85
|
+
msgstr "Archivos adjuntos"
|
|
86
|
+
|
|
87
|
+
#: app/cases/views/attachmentsSection.html
|
|
88
|
+
msgid "Attachments"
|
|
89
|
+
msgstr "Adjuntos"
|
|
90
|
+
|
|
91
|
+
#: app/cases/views/new.html
|
|
92
|
+
msgid "Attachments:"
|
|
93
|
+
msgstr "Adjuntos: "
|
|
94
|
+
|
|
95
|
+
#: app/log_viewer/views/navSideBar.html
|
|
96
|
+
msgid "Available Log Files"
|
|
97
|
+
msgstr "Archivos de registro disponibles"
|
|
98
|
+
|
|
99
|
+
#: app/cases/views/listBugzillas.html
|
|
100
|
+
msgid "Bugzilla Number"
|
|
101
|
+
msgstr "Número de Bugzilla"
|
|
102
|
+
|
|
103
|
+
#: app/cases/views/listBugzillas.html
|
|
104
|
+
msgid "Bugzilla Tickets"
|
|
105
|
+
msgstr "Tiquetes de 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 "Cancelar"
|
|
112
|
+
|
|
113
|
+
#: app/cases/views/commentsSection.html
|
|
114
|
+
msgid "Case Discussion"
|
|
115
|
+
msgstr "Discusión del caso"
|
|
116
|
+
|
|
117
|
+
#: app/cases/views/createGroupModal.html
|
|
118
|
+
#: app/cases/views/new.html
|
|
119
|
+
msgid "Case Group:"
|
|
120
|
+
msgstr "Grupo de caso:"
|
|
121
|
+
|
|
122
|
+
#: app/cases/views/detailsSection.html
|
|
123
|
+
msgid "Case Type:"
|
|
124
|
+
msgstr "Tipo de caso"
|
|
125
|
+
|
|
126
|
+
#: app/cases/views/chatButton.html
|
|
127
|
+
msgid "Chat offline"
|
|
128
|
+
msgstr "Chat desconectado"
|
|
129
|
+
|
|
130
|
+
#: app/cases/views/chatButton.html
|
|
131
|
+
msgid "Chat with support"
|
|
132
|
+
msgstr "Chat sin soporte"
|
|
133
|
+
|
|
134
|
+
#: app/common/views/treeview-selector.html
|
|
135
|
+
msgid "Choose File(s) To Attach:"
|
|
136
|
+
msgstr "Elegir archivo(s) a adjuntar:"
|
|
137
|
+
|
|
138
|
+
#: app/common/views/alert.html
|
|
139
|
+
msgid "Close messages"
|
|
140
|
+
msgstr "Cerrar mensajes"
|
|
141
|
+
|
|
142
|
+
#: app/cases/views/requestManagementEscalationModal.html
|
|
143
|
+
msgid "Comment:"
|
|
144
|
+
msgstr "Comentario:"
|
|
145
|
+
|
|
146
|
+
#: app/cases/views/createGroupModal.html
|
|
147
|
+
msgid "Create Case Group"
|
|
148
|
+
msgstr "Crear un grupo de casos"
|
|
149
|
+
|
|
150
|
+
#: app/cases/views/createGroupButton.html
|
|
151
|
+
msgid "Create New Case Group"
|
|
152
|
+
msgstr "Crear un nuevo grupo de casos"
|
|
153
|
+
|
|
154
|
+
#: app/cases/views/listAttachments.html
|
|
155
|
+
msgid "Delete"
|
|
156
|
+
msgstr "Borrar"
|
|
157
|
+
|
|
158
|
+
#: app/cases/views/deleteGroupButton.html
|
|
159
|
+
msgid "Delete Group"
|
|
160
|
+
msgstr "Borrar grupo"
|
|
161
|
+
|
|
162
|
+
#: app/cases/services/attachmentsService.js
|
|
163
|
+
msgid "Deleting attachment:"
|
|
164
|
+
msgstr "Borrar adjunto: "
|
|
165
|
+
|
|
166
|
+
#: app/cases/views/descriptionSection.html
|
|
167
|
+
#: app/cases/views/listAttachments.html
|
|
168
|
+
msgid "Description"
|
|
169
|
+
msgstr "Descripción"
|
|
170
|
+
|
|
171
|
+
#: app/cases/views/new.html
|
|
172
|
+
msgid "Description:"
|
|
173
|
+
msgstr "Descripción"
|
|
174
|
+
|
|
175
|
+
#: app/cases/views/detailsSection.html
|
|
176
|
+
msgid "Details"
|
|
177
|
+
msgstr "Información"
|
|
178
|
+
|
|
179
|
+
#: app/log_viewer/views/logsInstructionPane.html
|
|
180
|
+
msgid "Diagnose"
|
|
181
|
+
msgstr "Diagnóstico"
|
|
182
|
+
|
|
183
|
+
#: app/cases/views/addCommentSection.html
|
|
184
|
+
msgid "Draft saved"
|
|
185
|
+
msgstr "Borrar guardado"
|
|
186
|
+
|
|
187
|
+
#: app/cases/views/emailNotifySelect.html
|
|
188
|
+
msgid "Email Notification Recipients"
|
|
189
|
+
msgstr "Destinatarios de notificación por correo-e"
|
|
190
|
+
|
|
191
|
+
#: app/search/views/resultDetail.html
|
|
192
|
+
msgid "Environment"
|
|
193
|
+
msgstr "Entorno"
|
|
194
|
+
|
|
195
|
+
#: app/cases/views/exportCSVButton.html
|
|
196
|
+
msgid "Export All as CSV"
|
|
197
|
+
msgstr "Exportar todos como CSV"
|
|
198
|
+
|
|
199
|
+
#: app/cases/views/exportCSVButton.html
|
|
200
|
+
msgid "Exporting CSV..."
|
|
201
|
+
msgstr "Exportando CSV.."
|
|
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
|
+
"Los nombres de los archivos tienen un límite de 80 caracteres. El tamaño "
|
|
210
|
+
"máximo para adjuntos de archivos cargados a la red es de 250 MB. Para "
|
|
211
|
+
"archivos más grandes, por favor expórtelos en FTP a dropbox.redhat.com."
|
|
212
|
+
|
|
213
|
+
#: app/cases/views/listAttachments.html
|
|
214
|
+
msgid "Filename"
|
|
215
|
+
msgstr "Nombre de archivo"
|
|
216
|
+
|
|
217
|
+
#: app/cases/views/listNewAttachments.html
|
|
218
|
+
msgid "Files to Attach"
|
|
219
|
+
msgstr "Archivos a adjuntar"
|
|
220
|
+
|
|
221
|
+
#: app/cases/views/editGroup.html
|
|
222
|
+
msgid "First Name"
|
|
223
|
+
msgstr "Nombre"
|
|
224
|
+
|
|
225
|
+
#: app/cases/views/search.html
|
|
226
|
+
msgid "Group"
|
|
227
|
+
msgstr "Grupo"
|
|
228
|
+
|
|
229
|
+
#: app/cases/views/detailsSection.html
|
|
230
|
+
msgid "Group:"
|
|
231
|
+
msgstr "Grupo:"
|
|
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 siente que el problema se ha vuelto más grave o que su caso debiera tener "
|
|
240
|
+
"mayor prioridad, por favor, proporcione un comentario detallado y su caso "
|
|
241
|
+
"será revisado por un gerente de soporte."
|
|
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 usted aún considera que debe abrir un caso de soporte, seleccione 'Abrir "
|
|
250
|
+
"un nuevo caso de soporte'. El caso será prellenado con la porción del "
|
|
251
|
+
"registro anteriormente seleccionado."
|
|
252
|
+
|
|
253
|
+
#: app/cases/views/addCommentSection.html
|
|
254
|
+
msgid "Is Public:"
|
|
255
|
+
msgstr "Es público:"
|
|
256
|
+
|
|
257
|
+
#: app/cases/views/editGroup.html
|
|
258
|
+
msgid "Last Name"
|
|
259
|
+
msgstr "Apellido"
|
|
260
|
+
|
|
261
|
+
#: app/cases/views/detailsSection.html
|
|
262
|
+
msgid "Last Updated:"
|
|
263
|
+
msgstr "Última actualización"
|
|
264
|
+
|
|
265
|
+
#: app/cases/views/requestManagementEscalationModal.html
|
|
266
|
+
msgid "Learn more"
|
|
267
|
+
msgstr "Aprender más"
|
|
268
|
+
|
|
269
|
+
#: app/log_viewer/views/logsInstructionPane.html
|
|
270
|
+
msgid "Log File Viewer"
|
|
271
|
+
msgstr "Archivo de archivo de registro"
|
|
272
|
+
|
|
273
|
+
#: app/security/views/login_status.html
|
|
274
|
+
msgid "Log In"
|
|
275
|
+
msgstr "Ingresar"
|
|
276
|
+
|
|
277
|
+
#: app/security/views/login_status.html
|
|
278
|
+
msgid "Log Out"
|
|
279
|
+
msgstr "Salir "
|
|
280
|
+
|
|
281
|
+
#: app/security/views/login_status.html
|
|
282
|
+
msgid "Logged into the Red Hat Customer Portal as"
|
|
283
|
+
msgstr "Ingresó al Portal del cliente de Red Hat como"
|
|
284
|
+
|
|
285
|
+
#: app/cases/views/accountSelect.html
|
|
286
|
+
msgid "My Account"
|
|
287
|
+
msgstr "Mi cuenta"
|
|
288
|
+
|
|
289
|
+
#: app/cases/views/groupList.html
|
|
290
|
+
msgid "Name"
|
|
291
|
+
msgstr "Nombre"
|
|
292
|
+
|
|
293
|
+
#: app/cases/views/new.html
|
|
294
|
+
msgid "Next"
|
|
295
|
+
msgstr "Siguiente"
|
|
296
|
+
|
|
297
|
+
#: app/cases/views/listAttachments.html
|
|
298
|
+
msgid "No attachments added"
|
|
299
|
+
msgstr "No se han agregado adjuntos"
|
|
300
|
+
|
|
301
|
+
#: app/cases/views/compactCaseList.html
|
|
302
|
+
#: app/cases/views/list.html
|
|
303
|
+
msgid "No cases found with given filters."
|
|
304
|
+
msgstr "No se encontraron casos con los filtros proporcionados. "
|
|
305
|
+
|
|
306
|
+
#: app/cases/views/search.html
|
|
307
|
+
msgid "No cases found with given search criteria."
|
|
308
|
+
msgstr "No se encontraron casos con dichos criterios."
|
|
309
|
+
|
|
310
|
+
#: app/cases/views/groupList.html
|
|
311
|
+
msgid "No groups found."
|
|
312
|
+
msgstr "No se encontraron grupos."
|
|
313
|
+
|
|
314
|
+
#: app/cases/views/listBugzillas.html
|
|
315
|
+
msgid "No linked bugzillas"
|
|
316
|
+
msgstr "No hay Buzillas vinculados"
|
|
317
|
+
|
|
318
|
+
#: app/security/views/login_status.html
|
|
319
|
+
msgid "Not Logged into the Red Hat Customer Portal"
|
|
320
|
+
msgstr "No ha ingresado al Portal del cliente de Red Hat"
|
|
321
|
+
|
|
322
|
+
#: app/security/views/login_form.html
|
|
323
|
+
msgid "Note:"
|
|
324
|
+
msgstr "Nota:"
|
|
325
|
+
|
|
326
|
+
#: app/cases/views/detailsSection.html
|
|
327
|
+
msgid "Notes:"
|
|
328
|
+
msgstr "Notas:"
|
|
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
|
+
"Una vez que haya seleccionado su archivo de registro puede diagnosticar "
|
|
337
|
+
"cualquier parte del archivo de registro y hacer clic en el botón "
|
|
338
|
+
"'Diagnóstico Red Hat'. Esto ayudará a desplegar los artículos importantes y "
|
|
339
|
+
"soluciones de nuestra base de conocimientos."
|
|
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 "Abrir un nuevo caso de soporte"
|
|
346
|
+
|
|
347
|
+
#: app/cases/views/detailsSection.html
|
|
348
|
+
msgid "Opened:"
|
|
349
|
+
msgstr "Abierto: "
|
|
350
|
+
|
|
351
|
+
#: app/cases/views/search.html
|
|
352
|
+
msgid "Owner"
|
|
353
|
+
msgstr "Propietario"
|
|
354
|
+
|
|
355
|
+
#: app/cases/views/detailsSection.html
|
|
356
|
+
#: app/cases/views/new.html
|
|
357
|
+
msgid "Owner:"
|
|
358
|
+
msgstr "Propietario:"
|
|
359
|
+
|
|
360
|
+
#: app/security/views/login_form.html
|
|
361
|
+
msgid "Password"
|
|
362
|
+
msgstr "Contraseña"
|
|
363
|
+
|
|
364
|
+
#: app/cases/views/new.html
|
|
365
|
+
msgid "Previous"
|
|
366
|
+
msgstr "Anterior"
|
|
367
|
+
|
|
368
|
+
#: app/cases/views/search.html
|
|
369
|
+
msgid "Product"
|
|
370
|
+
msgstr "Producto"
|
|
371
|
+
|
|
372
|
+
#: app/cases/views/detailsSection.html
|
|
373
|
+
#: app/cases/views/new.html
|
|
374
|
+
msgid "Product Version:"
|
|
375
|
+
msgstr "Versión del producto"
|
|
376
|
+
|
|
377
|
+
#: app/cases/views/detailsSection.html
|
|
378
|
+
#: app/cases/views/new.html
|
|
379
|
+
msgid "Product:"
|
|
380
|
+
msgstr "Producto:"
|
|
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 "Recomendaciones"
|
|
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
|
+
"El acceso de Red Hat le facilita la resolución de problemas, diagnostica "
|
|
395
|
+
"problemas y se encarga con nosotros a través del Portal del cliente de Red "
|
|
396
|
+
"Hat. Para acceder a los recursos de Portal del cliente de Red Hat, deberá "
|
|
397
|
+
"validar las credenciales del portal. "
|
|
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
|
+
"Las credenciales del Portal del cliente de Red Hat difieren de las "
|
|
405
|
+
"credenciales utilizadas para ingresar dentro de este producto."
|
|
406
|
+
|
|
407
|
+
#: app/log_viewer/views/logTabs.html
|
|
408
|
+
msgid "Red Hat Diagnose"
|
|
409
|
+
msgstr "Diagnosis de Red Hat"
|
|
410
|
+
|
|
411
|
+
#: app/security/views/login_form.html
|
|
412
|
+
msgid "Red Hat Login"
|
|
413
|
+
msgstr "Nombre de usuario de Red Hat"
|
|
414
|
+
|
|
415
|
+
#: app/cases/views/detailsSection.html
|
|
416
|
+
msgid "Red Hat Owner:"
|
|
417
|
+
msgstr "Propietario Red Hat: "
|
|
418
|
+
|
|
419
|
+
#: app/cases/views/commentsSection.html
|
|
420
|
+
#: app/cases/views/requestManagementEscalationModal.html
|
|
421
|
+
msgid "Request Management Escalation"
|
|
422
|
+
msgstr "Solicitar escalamiento administrativo"
|
|
423
|
+
|
|
424
|
+
#: app/search/views/resultDetail.html
|
|
425
|
+
msgid "Resolution"
|
|
426
|
+
msgstr "Resolución"
|
|
427
|
+
|
|
428
|
+
#: app/cases/views/createGroupModal.html
|
|
429
|
+
msgid "Save"
|
|
430
|
+
msgstr "Guardar"
|
|
431
|
+
|
|
432
|
+
#: app/cases/views/editGroup.html
|
|
433
|
+
msgid "Save Group"
|
|
434
|
+
msgstr "Guardar grupo"
|
|
435
|
+
|
|
436
|
+
#: app/cases/views/addCommentSection.html
|
|
437
|
+
msgid "Saving draft..."
|
|
438
|
+
msgstr "Guardando borrador..."
|
|
439
|
+
|
|
440
|
+
#: app/search/views/search_form.html
|
|
441
|
+
msgid "Search"
|
|
442
|
+
msgstr "Búsqueda"
|
|
443
|
+
|
|
444
|
+
#: app/cases/views/search.html
|
|
445
|
+
msgid "Searching..."
|
|
446
|
+
msgstr "Buscando..."
|
|
447
|
+
|
|
448
|
+
#: app/log_viewer/views/navSideBar.html
|
|
449
|
+
msgid "Select File"
|
|
450
|
+
msgstr "Seleccionar archivo"
|
|
451
|
+
|
|
452
|
+
#: app/cases/views/attachmentsSection.html
|
|
453
|
+
msgid "Server File(s) To Attach:"
|
|
454
|
+
msgstr "Archivo(s) de servidor a adjuntar: "
|
|
455
|
+
|
|
456
|
+
#: app/cases/views/search.html
|
|
457
|
+
msgid "Severity"
|
|
458
|
+
msgstr "Gravedad"
|
|
459
|
+
|
|
460
|
+
#: app/cases/views/detailsSection.html
|
|
461
|
+
#: app/cases/views/new.html
|
|
462
|
+
#: app/cases/views/searchResult.html
|
|
463
|
+
msgid "Severity:"
|
|
464
|
+
msgstr "Gravedad: "
|
|
465
|
+
|
|
466
|
+
#: app/security/views/login_form.html
|
|
467
|
+
msgid "Sign in"
|
|
468
|
+
msgstr "Iniciar sesión"
|
|
469
|
+
|
|
470
|
+
#: app/security/views/login_form.html
|
|
471
|
+
msgid "Sign into the Red Hat Customer Portal"
|
|
472
|
+
msgstr "Ingresar al Portal del cliente 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
|
+
"Navegue y seleccione un archivo de registro de la lista a la izquierda y "
|
|
480
|
+
"haga clic en el botón 'Seleccionar archivo'."
|
|
481
|
+
|
|
482
|
+
#: app/cases/views/listAttachments.html
|
|
483
|
+
msgid "Size"
|
|
484
|
+
msgstr "Tamaño"
|
|
485
|
+
|
|
486
|
+
#: app/cases/views/search.html
|
|
487
|
+
msgid "Status"
|
|
488
|
+
msgstr "Estatus"
|
|
489
|
+
|
|
490
|
+
#: app/cases/views/detailsSection.html
|
|
491
|
+
#: app/cases/views/searchResult.html
|
|
492
|
+
msgid "Status:"
|
|
493
|
+
msgstr "Estatus:"
|
|
494
|
+
|
|
495
|
+
#: app/cases/views/new.html
|
|
496
|
+
msgid "Submit"
|
|
497
|
+
msgstr "Enviar"
|
|
498
|
+
|
|
499
|
+
#: app/cases/views/requestManagementEscalationModal.html
|
|
500
|
+
msgid "Submit Request"
|
|
501
|
+
msgstr "Enviar solicitud"
|
|
502
|
+
|
|
503
|
+
#: app/cases/services/attachmentsService.js
|
|
504
|
+
msgid "Successfully deleted attachment:"
|
|
505
|
+
msgstr "Ha borrado los adjuntos con éxito."
|
|
506
|
+
|
|
507
|
+
#: app/cases/services/attachmentsService.js
|
|
508
|
+
msgid "Successfully uploaded attachment"
|
|
509
|
+
msgstr "Ha cargado el adjunto con éxito"
|
|
510
|
+
|
|
511
|
+
#: app/cases/views/listBugzillas.html
|
|
512
|
+
msgid "Summary of Request"
|
|
513
|
+
msgstr "Resumen de solicitud"
|
|
514
|
+
|
|
515
|
+
#: app/cases/views/new.html
|
|
516
|
+
msgid "Summary:"
|
|
517
|
+
msgstr "Resumen:"
|
|
518
|
+
|
|
519
|
+
#: app/cases/views/detailsSection.html
|
|
520
|
+
msgid "Support Level:"
|
|
521
|
+
msgstr "Nivel de soporte:"
|
|
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
|
+
"El visor del archivo de registro ofrece la capacidad de diagnosticar "
|
|
529
|
+
"registros como también radicar un caso de soporte en Red Hat Global Support "
|
|
530
|
+
"Services."
|
|
531
|
+
|
|
532
|
+
#: app/cases/views/new.html
|
|
533
|
+
msgid ""
|
|
534
|
+
"This release is now retired, please refer to the recommended FAQ prior to "
|
|
535
|
+
"filing a case"
|
|
536
|
+
msgstr ""
|
|
537
|
+
"Este lanzamiento ha sido retirado, por favor consulte las preguntas "
|
|
538
|
+
"frecuentes antes de llenar el caso."
|
|
539
|
+
|
|
540
|
+
#: app/search/views/list_search_results.html
|
|
541
|
+
msgid "To view a recommendation, click on it."
|
|
542
|
+
msgstr "Para ver una recomendación, haga clic en ella."
|
|
543
|
+
|
|
544
|
+
#: app/cases/views/search.html
|
|
545
|
+
msgid "Type"
|
|
546
|
+
msgstr "Tipo"
|
|
547
|
+
|
|
548
|
+
#: app/common/services/strataService.js
|
|
549
|
+
msgid "Unauthorized."
|
|
550
|
+
msgstr "No autorizado."
|
|
551
|
+
|
|
552
|
+
#: app/cases/views/detailsSection.html
|
|
553
|
+
msgid "Update Details"
|
|
554
|
+
msgstr "Actualizar información"
|
|
555
|
+
|
|
556
|
+
#: app/cases/views/searchResult.html
|
|
557
|
+
msgid "Updated:"
|
|
558
|
+
msgstr "Actualizada:"
|
|
559
|
+
|
|
560
|
+
#: app/cases/views/attachmentsSection.html
|
|
561
|
+
msgid "Upload Attachments"
|
|
562
|
+
msgstr "Cargar adjuntos"
|
|
563
|
+
|
|
564
|
+
#: app/cases/views/editGroup.html
|
|
565
|
+
msgid "User Name"
|
|
566
|
+
msgstr "Nombre de usuario"
|
|
567
|
+
|
|
568
|
+
#: app/cases/views/recommendationsSection.html
|
|
569
|
+
msgid "View full article in new window"
|
|
570
|
+
msgstr "Ver artículo completo en una nueva ventana"
|
|
571
|
+
|
|
572
|
+
#: app/cases/views/commentsSection.html
|
|
573
|
+
msgid ""
|
|
574
|
+
"Would you like a Red Hat support manager to contact you regarding this case?"
|
|
575
|
+
msgstr ""
|
|
576
|
+
"¿Desearía que un gerente de soporte de Red Hat lo contacte para este caso? "
|
|
577
|
+
|
|
578
|
+
#: app/cases/views/addCommentSection.html
|
|
579
|
+
msgid "You have used 0% of the 32KB maximum description size."
|
|
580
|
+
msgstr "Ha utilizado 0% del tamaño de máximo de descripción 32KB."
|
|
581
|
+
|
|
582
|
+
#: app/cases/views/recommendationsSection.html
|
|
583
|
+
msgid "handpicked"
|
|
584
|
+
msgstr "Seleccionado a mano"
|
|
585
|
+
|
|
586
|
+
#: app/cases/services/attachmentsService.js
|
|
587
|
+
msgid "to case"
|
|
588
|
+
msgstr "para caso"
|
|
589
|
+
|
|
Binary file
|