mumuki-laboratory 8.5.0 → 8.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +31 -8
- data/app/controllers/application_controller.rb +1 -1
- data/app/controllers/exam_authorization_requests_controller.rb +26 -0
- data/app/controllers/exam_registrations_controller.rb +6 -0
- data/app/helpers/application_helper.rb +4 -0
- data/app/helpers/icons_helper.rb +3 -11
- data/app/helpers/menu_bar_helper.rb +2 -2
- data/app/helpers/progress_bar_helper.rb +2 -2
- data/app/views/chapters/show.html.erb +2 -2
- data/app/views/discussions/_message.html.erb +7 -7
- data/app/views/exam_authorization_requests/show.html.erb +17 -0
- data/app/views/exam_registrations/show.html.erb +37 -0
- data/app/views/exercises/show.html.erb +1 -1
- data/app/views/layouts/_guide.html.erb +3 -3
- data/app/views/layouts/_progress_bar.html.erb +9 -7
- data/app/views/layouts/_progress_listing.html.erb +5 -5
- data/app/views/layouts/application.html.erb +1 -6
- data/app/views/notifications/_discussion.html.erb +1 -0
- data/app/views/notifications/_dropdown.html.erb +13 -0
- data/app/views/notifications/_exam_authorization_request.html.erb +1 -0
- data/app/views/notifications/_exam_registration.html.erb +1 -0
- data/app/views/notifications/_message.html.erb +1 -0
- data/config/routes.rb +3 -0
- data/lib/mumuki/laboratory/controllers/notifications.rb +3 -22
- data/lib/mumuki/laboratory/locales/en.yml +28 -14
- data/lib/mumuki/laboratory/locales/es-CL.yml +20 -6
- data/lib/mumuki/laboratory/locales/es.yml +25 -12
- data/lib/mumuki/laboratory/locales/pt.yml +22 -8
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/exam_authorization_requests_controller_spec.rb +40 -0
- data/spec/controllers/exam_registrations_controller_spec.rb +19 -0
- data/spec/features/notifications_flow_spec.rb +46 -0
- metadata +113 -98
@@ -1,32 +1,13 @@
|
|
1
1
|
module Mumuki::Laboratory::Controllers::Notifications
|
2
|
-
|
3
|
-
def user_notifications_path
|
4
|
-
user_path(anchor: current_notifications_tab)
|
5
|
-
end
|
6
|
-
|
7
2
|
def has_notifications?
|
8
3
|
notifications_count > 0
|
9
4
|
end
|
10
5
|
|
11
6
|
def notifications_count
|
12
|
-
|
13
|
-
end
|
14
|
-
|
15
|
-
private
|
16
|
-
|
17
|
-
def current_notifications_tab
|
18
|
-
has_messages? ? 'messages' : 'discussions'
|
19
|
-
end
|
20
|
-
|
21
|
-
def has_messages?
|
22
|
-
messages_count > 0
|
23
|
-
end
|
24
|
-
|
25
|
-
def messages_count
|
26
|
-
current_user.try(:unread_messages).try(:count) || 0
|
7
|
+
notifications.size
|
27
8
|
end
|
28
9
|
|
29
|
-
def
|
30
|
-
current_user.try(:
|
10
|
+
def notifications
|
11
|
+
current_user.try(:unread_notifications) || []
|
31
12
|
end
|
32
13
|
end
|
@@ -11,20 +11,20 @@ en:
|
|
11
11
|
actual_state: Obtained board
|
12
12
|
age: Age
|
13
13
|
all: All
|
14
|
-
appendix:
|
14
|
+
appendix: Appendix
|
15
15
|
appendix_teaser: Do you want to learn more? <a href="%{link}">Check this chapter's appendix</a>"
|
16
16
|
approved_message: Validated by mentor
|
17
|
-
are_you_sure:
|
17
|
+
are_you_sure: Are you sure you want to %{action}?
|
18
18
|
ask_a_question: Ask a question!
|
19
19
|
ask_community: Ask community for help
|
20
20
|
ask_redirect: Do you want to go there?
|
21
21
|
ask_the_first_question: Be the first one to ask!
|
22
22
|
attempts_left:
|
23
|
-
zero: "You've run out of attempts
|
23
|
+
zero: "You've run out of attempts"
|
24
24
|
one: "1 attempt remaining"
|
25
25
|
other: '%{count} attempts remaining'
|
26
26
|
author: Author
|
27
|
-
authoring:
|
27
|
+
authoring: Authoring
|
28
28
|
authoring_note_html: This guide's content was developed by %{authors} under the terms of <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons License Share-Alike, 4.0</a>
|
29
29
|
authoring_note_with_collaborators_html: This guide's content was developed by %{authors} and <a href="%{collaborators}" target="_blank">many others</a>, under the terms of <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons License Share-Alike, 4.0</a>
|
30
30
|
back_to_mumuki: Back to Mumuki!
|
@@ -51,7 +51,7 @@ en:
|
|
51
51
|
console: Console
|
52
52
|
contact_administrator: 'If you think this is not supposed to happen, please contact %{link}'
|
53
53
|
content: Content
|
54
|
-
continue_exercise:
|
54
|
+
continue_exercise: Continue
|
55
55
|
continue_lesson: Continue this lesson!
|
56
56
|
continue_practicing: Continue practicing!
|
57
57
|
corollary: To think about
|
@@ -60,11 +60,12 @@ en:
|
|
60
60
|
created_at: Created at
|
61
61
|
date: Date
|
62
62
|
description: Description
|
63
|
-
destroy_message: delete the message
|
64
63
|
destroy: Destroy
|
64
|
+
destroy_message: delete the message
|
65
65
|
disabled_explanation: You are trying to visit a permamently disabled or deleted resource
|
66
66
|
disabled_organization_explanation: This path has already finished.
|
67
67
|
discussion_description_placeholder: You can add more information regarding your doubt.
|
68
|
+
new_discussion_message: New message on %{title}
|
68
69
|
discussion_updated: Discussion updated
|
69
70
|
discussions: Discussions
|
70
71
|
dont_leave_us: Don't leave us! Learning is fun. You just have to keep at it.
|
@@ -73,19 +74,28 @@ en:
|
|
73
74
|
edit_profile: Edit profile
|
74
75
|
editor_placeholder: "write your solution here..."
|
75
76
|
email: Email
|
76
|
-
error_description: This is known as a <span class="error-link">%{error}</span>.
|
77
|
-
error_401: 401 error
|
78
|
-
error_403: 403 error
|
79
|
-
error_404: 404 error
|
80
|
-
error_410: 410 error
|
81
|
-
error_500: 500 error
|
82
|
-
errored: Oops, your solution didn't work
|
83
77
|
error:
|
84
78
|
title:
|
85
79
|
forbidden: You are not allowed to see this content
|
86
80
|
gone: Oops! Content has expired
|
87
81
|
internal_server_error: Oops! Something went wrong
|
88
82
|
not_found: Oops! Page was not found
|
83
|
+
error_401: 401 error
|
84
|
+
error_403: 403 error
|
85
|
+
error_404: 404 error
|
86
|
+
error_410: 410 error
|
87
|
+
error_500: 500 error
|
88
|
+
error_description: This is known as a <span class="error-link">%{error}</span>.
|
89
|
+
errored: Oops, your solution didn't work
|
90
|
+
exam_authorization_request_approved_html: Your request was approved, don't forget to log in at <strong>%{date}</strong>. Good luck!
|
91
|
+
exam_authorization_request_created: Your registration to the exam has been saved!
|
92
|
+
exam_authorization_request_rejected: Your request was rejected.
|
93
|
+
exam_authorization_request_saved: Your registration to the exam has been updated!
|
94
|
+
exam_authorization_request_updated: Your registration to %{description} has been updated
|
95
|
+
exam_registration_choose_exam: Choose date and time to attend to the exam
|
96
|
+
exam_registration_explanation_html: You have until <strong>%{date}</strong> to register. After that date, your request will be processed and you will receive a confirmation. <br> Don't forget to check the notifications!
|
97
|
+
exam_registration_open: Registrations open for %{description}!
|
98
|
+
exam_registration_to: Registration to %{description}
|
89
99
|
exams: Exams
|
90
100
|
exercise: Exercise
|
91
101
|
exercises: Exercises
|
@@ -121,6 +131,7 @@ en:
|
|
121
131
|
hidden_done: 'Good!'
|
122
132
|
history: History
|
123
133
|
home: Home
|
134
|
+
important_info: Important information
|
124
135
|
initial_state: Initial board
|
125
136
|
insert_file_name: Insert a file name
|
126
137
|
invitation: Invitation to course
|
@@ -155,8 +166,9 @@ en:
|
|
155
166
|
message: Message
|
156
167
|
messages: Messages
|
157
168
|
messages_error: Previous messages are unavailable. Please try again later.
|
158
|
-
|
169
|
+
moderation: Mentoring
|
159
170
|
moderator: Mentor
|
171
|
+
more_messages: More
|
160
172
|
my_doubts: My doubts
|
161
173
|
my_submissions: My Submissions
|
162
174
|
name: Name
|
@@ -168,6 +180,7 @@ en:
|
|
168
180
|
never: never
|
169
181
|
new: New
|
170
182
|
new_message_placeholder: Write a message for your teacher...
|
183
|
+
new_message_received: You have a new message from %{sender}
|
171
184
|
next_exercise: Next
|
172
185
|
next_lesson: 'Next Guide: %{name}'
|
173
186
|
no_discussions: No discussions matched your search.
|
@@ -180,6 +193,7 @@ en:
|
|
180
193
|
no_useful_result: Didn't find what you were looking for?
|
181
194
|
not_found_explanation: 'You may have mistyped the address or the page may have moved.'
|
182
195
|
not_in_any_organizations: It seems you aren't in any organizations yet!
|
196
|
+
notifications: Notifications
|
183
197
|
notify_problem_with_exercise: Report a bug
|
184
198
|
office: Office
|
185
199
|
only_landscape_support: Please, rotate your tablet or cellphone to continue practicing
|
@@ -9,7 +9,7 @@ es-CL:
|
|
9
9
|
actual_state: Tablero obtenido
|
10
10
|
all: Todos
|
11
11
|
and: y
|
12
|
-
appendix:
|
12
|
+
appendix: Apéndice
|
13
13
|
appendix_teaser: ¿Quieres saber más? <a href="%{link}">Consulta el apéndice de este capítulo</a>
|
14
14
|
are_you_sure: '¿Estás seguro que quieres %{action}?'
|
15
15
|
ask_a_question: ¡Haz una pregunta!
|
@@ -21,7 +21,7 @@ es-CL:
|
|
21
21
|
one: '1 intento restante'
|
22
22
|
other: '%{count} intentos restantes'
|
23
23
|
author: Autor
|
24
|
-
authoring:
|
24
|
+
authoring: Autores
|
25
25
|
authoring_note_html: Esta guía fue desarrollada por %{authors} bajo los términos de la <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Licencia Creative Commons Compartir-Igual, 4.0</a>.
|
26
26
|
authoring_note_with_collaborators_html: Esta guía fue desarrollada por %{authors} y <a href="%{collaborators}" target="_blank">muchas personas más</a>, bajo los términos de la <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Licencia Creative Commons Compartir-Igual, 4.0</a>.
|
27
27
|
back_to_mumuki: ¡Vuelve a Mumuki!
|
@@ -65,6 +65,7 @@ es-CL:
|
|
65
65
|
details: Detalles
|
66
66
|
disabled_explanation: Estás intentando acceder a un recurso que fue deshabilitado o eliminado de forma permanente
|
67
67
|
disabled_organization_explanation: ¡Este recorrido ha finalizado!
|
68
|
+
new_discussion_message: Mensaje nuevo en %{title}
|
68
69
|
discussion_updated: Consulta actualizada
|
69
70
|
discussions: Consultas
|
70
71
|
dont_leave_us: ¡No nos abandones! Aprender a programar es divertido. Sólo tienes que seguir practicando.
|
@@ -78,13 +79,22 @@ es-CL:
|
|
78
79
|
error_404: error 404
|
79
80
|
error_410: error 410
|
80
81
|
error_500: error 500
|
81
|
-
errored: ¡Ups! Tu solución no se puede ejecutar
|
82
82
|
error:
|
83
83
|
title:
|
84
84
|
forbidden: No tienes autorización para ver este contenido
|
85
85
|
gone: ¡Ups! El contenido expiró
|
86
86
|
internal_server_error: ¡Ups! Algo no anduvo bien
|
87
87
|
not_found: ¡Ups! La página no existe
|
88
|
+
errored: ¡Ups! Tu solución no se puede ejecutar
|
89
|
+
exam_authorization_request_approved_html: Tu solicitud fue aprobada, no olvides conectarte el <strong>%{date}</strong>. ¡Buena suerte!
|
90
|
+
exam_authorization_request_created: ¡Tu inscripción al exámen se registró exitosamente!
|
91
|
+
exam_authorization_request_rejected: Tu solicitud fue rechazada.
|
92
|
+
exam_authorization_request_saved: ¡Tu inscripción al exámen se modificó exitosamente!
|
93
|
+
exam_authorization_request_updated: Hay novedades sobre tu inscripción a %{description}
|
94
|
+
exam_registration_choose_exam: Seleccioná día y horario en el que te gustaría rendir el exámen
|
95
|
+
exam_registration_explanation_html: Tienes tiempo hasta el <strong>%{date}</strong> para inscribirte. Pasada esa fecha, tu solicitud será evaluada y recibirás una confirmación. <br> ¡No olvides revisar las notificaciones!
|
96
|
+
exam_registration_open: ¡Ya puedes inscribirte a %{description}!
|
97
|
+
exam_registration_to: Inscripción a %{description}
|
88
98
|
exams: Exámenes
|
89
99
|
exercise: Ejercicio
|
90
100
|
exercise_count: ejercicios
|
@@ -120,6 +130,7 @@ es-CL:
|
|
120
130
|
home: Inicio
|
121
131
|
hour: hora
|
122
132
|
hours: horas
|
133
|
+
important_info: Información importante
|
123
134
|
initial_state: Tablero inicial
|
124
135
|
insert_file_name: Ingresa un nombre de archivo
|
125
136
|
invitation: Invitación a curso
|
@@ -156,8 +167,9 @@ es-CL:
|
|
156
167
|
messages_error: Los mensajes anteriores no están disponibles en este momento. ¡Vuelve a intentar más tarde!
|
157
168
|
minute: minuto
|
158
169
|
minutes: minutos
|
170
|
+
moderation: Moderación
|
171
|
+
moderator: Mentor
|
159
172
|
more_messages: Ver mensajes anteriores
|
160
|
-
moderator: Moderador
|
161
173
|
my_doubts: Mis consultas
|
162
174
|
name: Nombre
|
163
175
|
navigation_continue: 'Siguiente %{kind}: %{sibling}'
|
@@ -167,22 +179,24 @@ es-CL:
|
|
167
179
|
need_help: No entiendo, ¡necesito ayuda!
|
168
180
|
never: nunca
|
169
181
|
new: Nuevo
|
170
|
-
new_message: ¿Tienes dudas? ¡Levanta la mano!
|
171
182
|
new_discussion: Nueva consulta
|
183
|
+
new_message: ¿Tienes dudas? ¡Levanta la mano!
|
172
184
|
new_message_placeholder: Escribe el mensaje para tu docente acá...
|
185
|
+
new_message_received: Tienes un nuevo mensaje de %{sender}
|
173
186
|
next_exercise: Siguiente
|
174
187
|
next_guide: 'Siguiente Lección: %{name}'
|
175
188
|
no_discussions: No encontramos consultas que coincidan con tu búsqueda.
|
176
189
|
no_exercises: No encontramos ejercicios que coincidan con tu búsqueda.
|
177
190
|
no_guides: No encontramos lecciones que coincidan con tu búsqueda.
|
178
191
|
no_messages: ¡Parece que no tienes ningún mensaje todavía!
|
179
|
-
no_need_hint:
|
192
|
+
no_need_hint: Este ejercicio no tiene pista
|
180
193
|
no_questions: Parece que aún no hay ninguna consulta.
|
181
194
|
no_submissions: ¡Parece que aún no intentaste resolver este ejercicio!
|
182
195
|
no_useful_result: ¿No encontraste lo que estabas buscando?
|
183
196
|
not_found: ¡La página que buscaste no existe!
|
184
197
|
not_found_explanation: Fíjate si escribiste bien la dirección.
|
185
198
|
not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
|
199
|
+
notifications: Notificaciones
|
186
200
|
notify_problem_with_exercise: Reporta un bug
|
187
201
|
office: Secretaría
|
188
202
|
only_landscape_support: Por favor, rota tu tablet o celular para realizar ejercicios
|
@@ -12,7 +12,7 @@ es:
|
|
12
12
|
age: Edad
|
13
13
|
all: Todos
|
14
14
|
and: y
|
15
|
-
appendix:
|
15
|
+
appendix: Apéndice
|
16
16
|
appendix_teaser: ¿Querés saber más? <a href="%{link}">Consultá el apéndice de este capítulo</a>
|
17
17
|
approved_message: Validado por mentor
|
18
18
|
are_you_sure: '¿Estás seguro que querés %{action}?'
|
@@ -25,7 +25,7 @@ es:
|
|
25
25
|
one: '1 intento restante'
|
26
26
|
other: '%{count} intentos restantes'
|
27
27
|
author: Autor
|
28
|
-
authoring:
|
28
|
+
authoring: Autores
|
29
29
|
authoring_note_html: Esta guía fue desarrollada por %{authors} bajo los términos de la <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Licencia Creative Commons Compartir-Igual, 4.0</a>.
|
30
30
|
authoring_note_with_collaborators_html: Esta guía fue desarrollada por %{authors} y <a href="%{collaborators}" target="_blank">muchas personas más</a>, bajo los términos de la <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Licencia Creative Commons Compartir-Igual, 4.0</a>.
|
31
31
|
back_to_mumuki: ¡Volvé a Mumuki!
|
@@ -45,8 +45,6 @@ es:
|
|
45
45
|
closed_count:
|
46
46
|
one: 1 cerrada
|
47
47
|
other: '%{count} cerradas'
|
48
|
-
created_at_asc: Antiguas
|
49
|
-
created_at_desc: Nuevas
|
50
48
|
comment: Comentar
|
51
49
|
confirm: Confirmar
|
52
50
|
confirm_reset: Estás por reiniciar tu ejercicio. ¿Querés continuar?
|
@@ -54,12 +52,14 @@ es:
|
|
54
52
|
console: Consola
|
55
53
|
contact_administrator: 'Si pensás que es un error, comunicate con %{link}'
|
56
54
|
content: Contenido
|
57
|
-
continue_exercise:
|
55
|
+
continue_exercise: Continuar
|
58
56
|
continue_lesson: ¡Continuá esta lección!
|
59
57
|
continue_practicing: ¡Seguí aprendiendo!
|
60
58
|
correct_answer: ¡La respuesta es correcta!
|
61
59
|
create_submission: Enviar
|
62
60
|
created_at: Creado
|
61
|
+
created_at_asc: Antiguas
|
62
|
+
created_at_desc: Nuevas
|
63
63
|
created_exercises: Ejercicios Creados
|
64
64
|
created_guides: Lecciones Creadas
|
65
65
|
date: Fecha
|
@@ -73,6 +73,7 @@ es:
|
|
73
73
|
disabled_organization_explanation: Este recorrido ha finalizado
|
74
74
|
discussion_description_placeholder: Podés agregar información para detallar más tu consulta
|
75
75
|
discussion_updated: Consulta actualizada
|
76
|
+
new_discussion_message: Mensaje nuevo en %{title}
|
76
77
|
discussions: Consultas
|
77
78
|
dont_leave_us: ¡No nos abandones! Aprender a programar es divertido. Sólo tenés que seguir practicando.
|
78
79
|
download: "Descargá lo que hiciste"
|
@@ -86,13 +87,22 @@ es:
|
|
86
87
|
error_404: error 404
|
87
88
|
error_410: error 410
|
88
89
|
error_500: error 500
|
89
|
-
errored: ¡Ups! Tu solución no se puede ejecutar
|
90
90
|
error:
|
91
91
|
title:
|
92
92
|
forbidden: No tenés autorización para ver este contenido
|
93
93
|
gone: ¡Ups! El contenido expiró
|
94
94
|
internal_server_error: ¡Ups! Algo no anduvo bien
|
95
95
|
not_found: ¡Ups! La página no existe
|
96
|
+
errored: ¡Ups! Tu solución no se puede ejecutar
|
97
|
+
exam_authorization_request_approved_html: Tu solicitud fue aprobada, no olvides conectarte el <strong>%{date}</strong>. ¡Buena suerte!
|
98
|
+
exam_authorization_request_created: ¡Tu inscripción al exámen se registró exitosamente!
|
99
|
+
exam_authorization_request_rejected: Tu solicitud fue rechazada.
|
100
|
+
exam_authorization_request_saved: ¡Tu inscripción al exámen se modificó exitosamente!
|
101
|
+
exam_authorization_request_updated: Hay novedades sobre tu inscripción a %{description}
|
102
|
+
exam_registration_choose_exam: Seleccioná día y horario en el que te gustaría rendir el exámen
|
103
|
+
exam_registration_explanation_html: Tenés tiempo hasta el <strong>%{date}</strong> para inscribirte. Pasada esa fecha, tu solicitud será evaluada y recibirás una confirmación. <br> ¡No te olvides de revisar las notificaciones!
|
104
|
+
exam_registration_open: ¡Ya podés inscribirte a %{description}!
|
105
|
+
exam_registration_to: Inscripción a %{description}
|
96
106
|
exams: Exámenes
|
97
107
|
exercise: Ejercicio
|
98
108
|
exercise_count: ejercicios
|
@@ -130,15 +140,16 @@ es:
|
|
130
140
|
home: Inicio
|
131
141
|
hour: hora
|
132
142
|
hours: horas
|
143
|
+
important_info: Información importante
|
133
144
|
initial_state: Tablero inicial
|
134
145
|
insert_file_name: Ingresa un nombre de archivo
|
135
146
|
invitation: Invitación a curso
|
136
147
|
invitation_for: 'Unirse a %{course}'
|
137
|
-
item_not_accessible:
|
148
|
+
item_not_accessible: No tenés permisos para acceder a este contenido
|
138
149
|
its_been_a_while: Hace un tiempo que no usás Mumuki.
|
139
150
|
joining_html: '¡Te damos la bienvenida al curso <strong>%{course}</strong>!'
|
140
151
|
keep_learning: ¡Seguí aprendiendo!
|
141
|
-
kids_default_success:
|
152
|
+
kids_default_success: ¡Lo hiciste muy bien!
|
142
153
|
language: Lenguaje
|
143
154
|
languages: Lenguajes
|
144
155
|
last_name: Apellido
|
@@ -167,8 +178,9 @@ es:
|
|
167
178
|
messages_error: Los mensajes anteriores no están disponibles en este momento. ¡Volvé a intentar mas tarde!
|
168
179
|
minute: minuto
|
169
180
|
minutes: minutos
|
170
|
-
|
181
|
+
moderation: Mentoría
|
171
182
|
moderator: Mentor
|
183
|
+
more_messages: Ver mensajes anteriores
|
172
184
|
my_doubts: Mis consultas
|
173
185
|
name: Nombre
|
174
186
|
navigation_continue: 'Siguiente %{kind}: %{sibling}'
|
@@ -178,9 +190,10 @@ es:
|
|
178
190
|
need_help: No entiendo, ¡necesito ayuda!
|
179
191
|
never: nunca
|
180
192
|
new: Nuevo
|
181
|
-
new_message: ¿Tenés dudas? ¡Levantá la mano!
|
182
193
|
new_discussion: Nueva consulta
|
194
|
+
new_message: ¿Tenés dudas? ¡Levantá la mano!
|
183
195
|
new_message_placeholder: Escribí el mensaje para tu docente acá...
|
196
|
+
new_message_received: Tenés un nuevo mensaje de %{sender}
|
184
197
|
next_exercise: Siguiente
|
185
198
|
next_guide: 'Siguiente Lección: %{name}'
|
186
199
|
no_discussions: No encontramos consultas que coincidan con tu búsqueda.
|
@@ -194,6 +207,7 @@ es:
|
|
194
207
|
not_found: ¡La página que buscaste no existe!
|
195
208
|
not_found_explanation: Fijate si escribiste bien la dirección.
|
196
209
|
not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
|
210
|
+
notifications: Notificaciones
|
197
211
|
notify_problem_with_exercise: Reportá un bug
|
198
212
|
office: Secretaría
|
199
213
|
only_landscape_support: Por favor, rotá tu tablet o celular para realizar ejercicios
|
@@ -266,13 +280,13 @@ es:
|
|
266
280
|
start_using_mumuki: ¡Empezá a usar Mumuki!
|
267
281
|
status: Estado
|
268
282
|
stop_emails?: ¿Querés dejar de recibir estos mails?
|
269
|
-
subscribe: Recibir notificaciones
|
270
283
|
submission: solución
|
271
284
|
submission_date: Fecha de envío
|
272
285
|
submission_for_exercise: Solucion para ejercicio
|
273
286
|
submissions: Soluciones
|
274
287
|
submissions_count: Soluciones
|
275
288
|
submissions_for: Soluciones para %{exercise}
|
289
|
+
subscribe: Recibir notificaciones
|
276
290
|
tag: Etiquetas
|
277
291
|
task: Consigna
|
278
292
|
teacher_info: Información para docentes
|
@@ -322,4 +336,3 @@ es:
|
|
322
336
|
you_must_sign_in_before_submitting: Tenés que iniciar sesión antes de empezar a enviar tus soluciones
|
323
337
|
you_never_submitted_solutions: Parece que nunca enviaste soluciones desde que creaste tu cuenta.
|
324
338
|
your_new_organization: tu nueva organización
|
325
|
-
|
@@ -69,6 +69,7 @@ pt:
|
|
69
69
|
disabled_explanation: Você está tentando acessar um recurso que foi desativado ou removido permanentemente
|
70
70
|
disabled_organization_explanation: Este curso terminou
|
71
71
|
discussion_description_placeholder: Você pode adicionar mais informações sobre sua dúvida
|
72
|
+
new_discussion_message: Nova mensagem em %{title}
|
72
73
|
discussion_updated: Consulta actualizada
|
73
74
|
discussions: Consultas
|
74
75
|
download: Faça o download do que você fez
|
@@ -76,19 +77,28 @@ pt:
|
|
76
77
|
edit_profile: Editar perfil
|
77
78
|
editor_placeholder: ... Escreva sua solução aqui ...
|
78
79
|
email: E-mail
|
79
|
-
error_description: Isto é o que é conhecido como <span class = "error-link"> %{error} </ span>.
|
80
|
-
error_401: erro 401
|
81
|
-
error_403: erro 403
|
82
|
-
error_404: erro 404
|
83
|
-
error_410: erro 410
|
84
|
-
error_500: erro 500
|
85
|
-
errored: Opa! Sua solução não pode ser executada
|
86
80
|
error:
|
87
81
|
title:
|
88
82
|
forbidden: Você não tem autorização para ver esse conteúdo
|
89
83
|
gone: Opa! O conteúdo expirou
|
90
84
|
internal_server_error: Opa! Algo não estava certo
|
91
85
|
not_found: Opa! A página que você pesquisou não existe
|
86
|
+
error_401: erro 401
|
87
|
+
error_403: erro 403
|
88
|
+
error_404: erro 404
|
89
|
+
error_410: erro 410
|
90
|
+
error_500: erro 500
|
91
|
+
error_description: Isto é o que é conhecido como <span class = "error-link"> %{error} </ span>.
|
92
|
+
errored: Opa! Sua solução não pode ser executada
|
93
|
+
exam_authorization_request_approved_html: Sua solicitação foi aprovada, não se esqueça de conectar em <strong>%{date}</strong>. Boa sorte!
|
94
|
+
exam_authorization_request_created: Seu registro de exame foi salvo com sucesso!
|
95
|
+
exam_authorization_request_rejected: Seu pedido foi rejeitado.
|
96
|
+
exam_authorization_request_saved: Seu registro de exame foi modificado com sucesso!
|
97
|
+
exam_authorization_request_updated: Há notícias sobre seu registro para %{description}
|
98
|
+
exam_registration_choose_exam: Selecione o dia e a hora em que gostaria de fazer o exame
|
99
|
+
exam_registration_explanation_html: Você tem tempo até <strong>%{date}</strong> para se inscrever. Após essa data, sua inscrição será avaliada e você receberá uma confirmação. <br> Não se esqueça de verificar as notificações!
|
100
|
+
exam_registration_open: "¡Inscrições abertas para %{description}!"
|
101
|
+
exam_registration_to: Inscrição a %{description}
|
92
102
|
exams: Examesca
|
93
103
|
exercise: Exercício
|
94
104
|
exercise_count: exercícios
|
@@ -126,6 +136,7 @@ pt:
|
|
126
136
|
home: Home
|
127
137
|
hour: hora
|
128
138
|
hours: horas
|
139
|
+
important_info: Informação importante
|
129
140
|
initial_state: Tabuleiro inicial
|
130
141
|
insert_file_name: Insira um nome de arquivo
|
131
142
|
invitation: Convite para o curso
|
@@ -161,8 +172,9 @@ pt:
|
|
161
172
|
messages_error: As mensagens acima não estão disponíveis no momento. Eu tentei novamente mais tarde!
|
162
173
|
minute: minuto
|
163
174
|
minutes: minutos
|
164
|
-
|
175
|
+
moderation: Mentoria
|
165
176
|
moderator: Mentor
|
177
|
+
more_messages: Ver as mensagens anteriores
|
166
178
|
my_doubts: Minhas duvidas
|
167
179
|
name: Nome
|
168
180
|
navigation_continue: "Próximo %{kind}: %{sibling}"
|
@@ -174,6 +186,7 @@ pt:
|
|
174
186
|
new: Novo
|
175
187
|
new_message: Você tem dúvidas? Levante a mão!
|
176
188
|
new_message_placeholder: Escreva sua mensagem para o seu professor aqui ...
|
189
|
+
new_message_received: Você tem uma nova mensagem de %{sender}
|
177
190
|
next_exercise: Em seguida
|
178
191
|
next_guide: Próxima Lição %{nome}
|
179
192
|
no_discussions: Não encontramos consultas que correspondam à sua pesquisa.
|
@@ -187,6 +200,7 @@ pt:
|
|
187
200
|
not_found: A página que você pesquisou não existe!
|
188
201
|
not_found_explanation: Olhe se você escreveu o endereço corretamente.
|
189
202
|
not_in_any_organizations: Parece que você ainda não está em nenhuma organização!
|
203
|
+
notifications: Notificações
|
190
204
|
notify_problem_with_exercise: Relatar um erro
|
191
205
|
office: Secretariado
|
192
206
|
only_landscape_support: Por favor, gire seu tablet ou celular para realizar exercícios
|