mumuki-laboratory 8.3.0 → 9.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/mumuki_laboratory/application/codemirror.js +1 -1
  3. data/app/assets/javascripts/mumuki_laboratory/application/upload.js +69 -14
  4. data/app/assets/stylesheets/mumuki_laboratory/application.scss +1 -0
  5. data/app/assets/stylesheets/mumuki_laboratory/application/_codemirror-themes.scss +1 -0
  6. data/app/assets/stylesheets/mumuki_laboratory/application/_layout.scss +3 -0
  7. data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
  8. data/app/assets/stylesheets/mumuki_laboratory/application/codemirror-themes/_mu-light.scss +3 -0
  9. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_content_show.scss +15 -2
  10. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +31 -8
  11. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_medal.scss +1 -1
  12. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_menu.scss +35 -0
  13. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_profile.scss +11 -0
  14. data/app/controllers/api/base_controller.rb +0 -1
  15. data/app/controllers/api/courses_controller.rb +1 -1
  16. data/app/controllers/api/organizations_controller.rb +5 -2
  17. data/app/controllers/api/roles_controller.rb +4 -0
  18. data/app/controllers/api/users_controller.rb +6 -1
  19. data/app/controllers/application_controller.rb +1 -1
  20. data/app/controllers/concerns/with_authorization.rb +1 -16
  21. data/app/controllers/concerns/with_user_params.rb +4 -0
  22. data/app/controllers/discussions_messages_controller.rb +0 -1
  23. data/app/controllers/exam_authorization_requests_controller.rb +26 -0
  24. data/app/controllers/exam_registrations_controller.rb +6 -0
  25. data/app/controllers/users_controller.rb +8 -5
  26. data/app/helpers/application_helper.rb +4 -0
  27. data/app/helpers/breadcrumbs_helper.rb +4 -0
  28. data/app/helpers/content_view_helper.rb +19 -0
  29. data/app/helpers/exercise_input_helper.rb +8 -17
  30. data/app/helpers/icons_helper.rb +3 -11
  31. data/app/helpers/links_helper.rb +2 -2
  32. data/app/helpers/menu_bar_helper.rb +3 -3
  33. data/app/helpers/overlapped_buttons_helper.rb +10 -6
  34. data/app/helpers/progress_bar_helper.rb +2 -2
  35. data/app/helpers/user_menu_helper.rb +18 -0
  36. data/app/views/chapters/show.html.erb +17 -16
  37. data/app/views/complements/show.html.erb +1 -1
  38. data/app/views/discussions/_message.html.erb +7 -7
  39. data/app/views/exam_authorization_requests/show.html.erb +17 -0
  40. data/app/views/exam_registrations/show.html.erb +37 -0
  41. data/app/views/exams/show.html.erb +1 -1
  42. data/app/views/{layouts → exercises}/_exercise_skipped.html.erb +0 -0
  43. data/app/views/exercises/_exercise_title_icons.html.erb +4 -0
  44. data/app/views/exercises/show.html.erb +5 -8
  45. data/app/views/{layouts → guides}/_guide.html.erb +3 -3
  46. data/app/views/guides/_guide_container.html.erb +24 -0
  47. data/app/views/{layouts → guides}/_guide_title_icons.html.erb +1 -3
  48. data/app/views/layouts/_progress_bar.html.erb +9 -7
  49. data/app/views/layouts/_progress_listing.html.erb +5 -5
  50. data/app/views/layouts/_user_menu.html.erb +21 -0
  51. data/app/views/layouts/application.html.erb +1 -6
  52. data/app/views/layouts/exercise_inputs/editors/_upload.html.erb +11 -2
  53. data/app/views/lessons/show.html.erb +1 -1
  54. data/app/views/notifications/_discussion.html.erb +1 -0
  55. data/app/views/notifications/_dropdown.html.erb +13 -0
  56. data/app/views/notifications/_exam_authorization_request.html.erb +1 -0
  57. data/app/views/notifications/_exam_registration.html.erb +1 -0
  58. data/app/views/notifications/_message.html.erb +1 -0
  59. data/app/views/users/_user_form.html.erb +10 -8
  60. data/app/views/users/discussions.html.erb +28 -0
  61. data/app/views/users/edit.html.erb +1 -1
  62. data/app/views/users/messages.html.erb +27 -0
  63. data/app/views/users/show.html.erb +4 -51
  64. data/app/views/users/terms.html.erb +2 -2
  65. data/config/routes.rb +6 -0
  66. data/lib/mumuki/laboratory/controllers/notifications.rb +3 -22
  67. data/lib/mumuki/laboratory/locales/en.yml +35 -18
  68. data/lib/mumuki/laboratory/locales/es-CL.yml +26 -9
  69. data/lib/mumuki/laboratory/locales/es.yml +31 -15
  70. data/lib/mumuki/laboratory/locales/pt.yml +28 -11
  71. data/lib/mumuki/laboratory/version.rb +1 -1
  72. data/spec/controllers/exam_authorization_requests_controller_spec.rb +40 -0
  73. data/spec/controllers/exam_registrations_controller_spec.rb +19 -0
  74. data/spec/controllers/organizations_api_controller_spec.rb +16 -9
  75. data/spec/dummy/db/schema.rb +24 -0
  76. data/spec/features/exercise_flow_spec.rb +3 -3
  77. data/spec/features/login_flow_spec.rb +1 -1
  78. data/spec/features/menu_bar_spec.rb +24 -24
  79. data/spec/features/notifications_flow_spec.rb +46 -0
  80. data/spec/features/profile_flow_spec.rb +6 -9
  81. data/spec/features/terms_flow_spec.rb +30 -0
  82. data/spec/javascripts/bridge-spec.js +2 -2
  83. data/spec/javascripts/csrf-token-spec.js +2 -2
  84. data/spec/javascripts/editors-spec.js +7 -9
  85. data/spec/javascripts/elipsis-spec.js +4 -4
  86. data/spec/javascripts/events-spec.js +7 -7
  87. data/spec/javascripts/exercise-spec.js +7 -8
  88. data/spec/javascripts/global-spec.js +3 -3
  89. data/spec/javascripts/i18n-spec.js +23 -20
  90. data/spec/javascripts/kids-button-spec.js +6 -8
  91. data/spec/javascripts/results-renderers-spec.js +5 -5
  92. data/spec/javascripts/speech-bubble-renderer-spec.js +2 -3
  93. data/spec/javascripts/submissions-store-spec.js +14 -14
  94. data/spec/javascripts/sync-mode-spec.js +3 -3
  95. data/spec/javascripts/timeout-spec.js +2 -2
  96. data/spec/javascripts/timer-spec.js +2 -2
  97. data/spec/javascripts/upload-spec.js +80 -0
  98. metadata +129 -103
  99. data/app/views/layouts/_guide_container.html.erb +0 -28
@@ -11,20 +11,20 @@ en:
11
11
  actual_state: Obtained board
12
12
  age: Age
13
13
  all: All
14
- appendix: "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: 'Are you sure you want to %{action}?'
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: "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: "Continue"
54
+ continue_exercise: Continue
55
55
  continue_lesson: Continue this lesson!
56
56
  continue_practicing: Continue practicing!
57
57
  corollary: To think about
@@ -60,32 +60,43 @@ 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
71
+ discussions_will_be_here: Your posts in the forum will appear here.
70
72
  dont_leave_us: Don't leave us! Learning is fun. You just have to keep at it.
71
73
  download: Download your solution
72
74
  edit: Edit
73
75
  edit_profile: Edit profile
74
76
  editor_placeholder: "write your solution here..."
75
77
  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
78
  error:
84
79
  title:
85
80
  forbidden: You are not allowed to see this content
86
81
  gone: Oops! Content has expired
87
82
  internal_server_error: Oops! Something went wrong
88
83
  not_found: Oops! Page was not found
84
+ error_401: 401 error
85
+ error_403: 403 error
86
+ error_404: 404 error
87
+ error_410: 410 error
88
+ error_500: 500 error
89
+ error_description: This is known as a <span class="error-link">%{error}</span>.
90
+ errored: Oops, your solution didn't work
91
+ exam_authorization_request_approved_html: Your request was approved, don't forget to log in at <strong>%{date}</strong>. Good luck!
92
+ exam_authorization_request_created: Your registration to the exam has been saved!
93
+ exam_authorization_request_rejected: Your request was rejected.
94
+ exam_authorization_request_saved: Your registration to the exam has been updated!
95
+ exam_authorization_request_updated: Your registration to %{description} has been updated
96
+ exam_registration_choose_exam: Choose date and time to attend to the exam
97
+ 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!
98
+ exam_registration_open: Registrations open for %{description}!
99
+ exam_registration_to: Registration to %{description}
89
100
  exams: Exams
90
101
  exercise: Exercise
91
102
  exercises: Exercises
@@ -101,6 +112,7 @@ en:
101
112
  failed: Oops, something went wrong
102
113
  feedback: Feedback
103
114
  female: Female
115
+ file_exceeds_max_size: "File size should not exceed %{size_kb}kb. Please select another file."
104
116
  finish: Finish
105
117
  first_name: First Name
106
118
  forbidden_explanation: Please verify you have logged in with the right account
@@ -108,7 +120,7 @@ en:
108
120
  forum: Forum
109
121
  forum_terms: Forum rules
110
122
  forum_terms_link: If you have any questions, please check %{terms_link}
111
- fullscreen: "Fullscreen"
123
+ fullscreen: "Fullscreen (F11)"
112
124
  gender: Gender
113
125
  get_messages: "View messages"
114
126
  go_to: 'Go to %{organization}'
@@ -121,6 +133,7 @@ en:
121
133
  hidden_done: 'Good!'
122
134
  history: History
123
135
  home: Home
136
+ important_info: Important information
124
137
  initial_state: Initial board
125
138
  insert_file_name: Insert a file name
126
139
  invitation: Invitation to course
@@ -155,9 +168,12 @@ en:
155
168
  message: Message
156
169
  messages: Messages
157
170
  messages_error: Previous messages are unavailable. Please try again later.
158
- more_messages: More
171
+ moderation: Mentoring
159
172
  moderator: Mentor
173
+ more_messages: More
174
+ my_account: My account
160
175
  my_doubts: My doubts
176
+ my_profile: My profile
161
177
  my_submissions: My Submissions
162
178
  name: Name
163
179
  navigation_continue: 'Next: %{sibling}'
@@ -168,6 +184,7 @@ en:
168
184
  never: never
169
185
  new: New
170
186
  new_message_placeholder: Write a message for your teacher...
187
+ new_message_received: You have a new message from %{sender}
171
188
  next_exercise: Next
172
189
  next_lesson: 'Next Guide: %{name}'
173
190
  no_discussions: No discussions matched your search.
@@ -180,6 +197,7 @@ en:
180
197
  no_useful_result: Didn't find what you were looking for?
181
198
  not_found_explanation: 'You may have mistyped the address or the page may have moved.'
182
199
  not_in_any_organizations: It seems you aren't in any organizations yet!
200
+ notifications: Notifications
183
201
  notify_problem_with_exercise: Report a bug
184
202
  office: Office
185
203
  only_landscape_support: Please, rotate your tablet or cellphone to continue practicing
@@ -202,7 +220,6 @@ en:
202
220
  previous_exercise: Previous
203
221
  problem_with_exercise: '[Mumuki] Problem with exercise: %{title}'
204
222
  processing_your_solution: We are processing you solution
205
- profile: Profile
206
223
  profile_of: Profile of %{username}
207
224
  programming_since: Started programming
208
225
  progress: Progresss
@@ -219,6 +236,7 @@ en:
219
236
  running: running
220
237
  save: Save
221
238
  see_context: Watch exercise introduction animation
239
+ select_file: Select file
222
240
  sending_solution: Sending solution
223
241
  show: Show
224
242
  sign_in: Sign in
@@ -275,13 +293,12 @@ en:
275
293
  unprepared_organization_explanation: This path hasn't started yet.
276
294
  unsubscribe: Unsubscribe
277
295
  unsubscribed_successfully: You have successfully unsubscribed from reminders.
278
- upload_solution: Upload Solution
279
296
  uploading_solution: "Uploading solution"
280
297
  upvote: Upvote
281
298
  upvotes_count_desc: Most voted
282
299
  upvotes_count_asc: Least voted
283
300
  user: User
284
- user_data_updated: Your data was updated successfuly
301
+ user_data_updated: Your data was updated successfully
285
302
  username: Username
286
303
  view_details: View details
287
304
  want_permissions: The next user requires permissions
@@ -9,7 +9,7 @@ es-CL:
9
9
  actual_state: Tablero obtenido
10
10
  all: Todos
11
11
  and: y
12
- appendix: "Apéndice"
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: "Autores"
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,8 +65,10 @@ 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
71
+ discussions_will_be_here: Las preguntas que realices en el espacio de consultas aparecerán aquí.
70
72
  dont_leave_us: ¡No nos abandones! Aprender a programar es divertido. Sólo tienes que seguir practicando.
71
73
  download: "Descarga lo que hiciste"
72
74
  edit: Editar
@@ -78,13 +80,22 @@ es-CL:
78
80
  error_404: error 404
79
81
  error_410: error 410
80
82
  error_500: error 500
81
- errored: ¡Ups! Tu solución no se puede ejecutar
82
83
  error:
83
84
  title:
84
85
  forbidden: No tienes autorización para ver este contenido
85
86
  gone: ¡Ups! El contenido expiró
86
87
  internal_server_error: ¡Ups! Algo no anduvo bien
87
88
  not_found: ¡Ups! La página no existe
89
+ errored: ¡Ups! Tu solución no se puede ejecutar
90
+ exam_authorization_request_approved_html: Tu solicitud fue aprobada, no olvides conectarte el <strong>%{date}</strong>. ¡Buena suerte!
91
+ exam_authorization_request_created: ¡Tu inscripción al exámen se registró exitosamente!
92
+ exam_authorization_request_rejected: Tu solicitud fue rechazada.
93
+ exam_authorization_request_saved: ¡Tu inscripción al exámen se modificó exitosamente!
94
+ exam_authorization_request_updated: Hay novedades sobre tu inscripción a %{description}
95
+ exam_registration_choose_exam: Seleccioná día y horario en el que te gustaría rendir el exámen
96
+ 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!
97
+ exam_registration_open: ¡Ya puedes inscribirte a %{description}!
98
+ exam_registration_to: Inscripción a %{description}
88
99
  exams: Exámenes
89
100
  exercise: Ejercicio
90
101
  exercise_count: ejercicios
@@ -99,12 +110,13 @@ es-CL:
99
110
  failed: Tu solución no pasó las pruebas
100
111
  feedback: Problemas que encontramos
101
112
  female: Mujer
113
+ file_exceeds_max_size: "El tamaño de archivo no debe exceder %{size_kb}kb. Por favor selecciona otro archivo."
102
114
  finish: Terminar
103
115
  first_name: Nombre
104
116
  forbidden_explanation: ¿Puede que hayas ingresado con una cuenta incorrecta?
105
117
  format: Dar formato
106
118
  forum_terms_link: No olvides que al participar debes cumplir las %{terms_link}
107
- fullscreen: "Pantalla completa"
119
+ fullscreen: "Pantalla completa (F11)"
108
120
  gender: Género
109
121
  get_messages: "Ver mensajes"
110
122
  go_to: 'Ir a %{organization}'
@@ -120,6 +132,7 @@ es-CL:
120
132
  home: Inicio
121
133
  hour: hora
122
134
  hours: horas
135
+ important_info: Información importante
123
136
  initial_state: Tablero inicial
124
137
  insert_file_name: Ingresa un nombre de archivo
125
138
  invitation: Invitación a curso
@@ -156,9 +169,12 @@ es-CL:
156
169
  messages_error: Los mensajes anteriores no están disponibles en este momento. ¡Vuelve a intentar más tarde!
157
170
  minute: minuto
158
171
  minutes: minutos
172
+ moderation: Mentoría
173
+ moderator: Mentor
159
174
  more_messages: Ver mensajes anteriores
160
- moderator: Moderador
175
+ my_account: Mi cuenta
161
176
  my_doubts: Mis consultas
177
+ my_profile: Mi perfil
162
178
  name: Nombre
163
179
  navigation_continue: 'Siguiente %{kind}: %{sibling}'
164
180
  navigation_next: Siguiente %{kind}
@@ -167,22 +183,24 @@ es-CL:
167
183
  need_help: No entiendo, ¡necesito ayuda!
168
184
  never: nunca
169
185
  new: Nuevo
170
- new_message: ¿Tienes dudas? ¡Levanta la mano!
171
186
  new_discussion: Nueva consulta
187
+ new_message: ¿Tienes dudas? ¡Levanta la mano!
172
188
  new_message_placeholder: Escribe el mensaje para tu docente acá...
189
+ new_message_received: Tienes un nuevo mensaje de %{sender}
173
190
  next_exercise: Siguiente
174
191
  next_guide: 'Siguiente Lección: %{name}'
175
192
  no_discussions: No encontramos consultas que coincidan con tu búsqueda.
176
193
  no_exercises: No encontramos ejercicios que coincidan con tu búsqueda.
177
194
  no_guides: No encontramos lecciones que coincidan con tu búsqueda.
178
195
  no_messages: ¡Parece que no tienes ningún mensaje todavía!
179
- no_need_hint: 'Este ejercicio no tiene pista'
196
+ no_need_hint: Este ejercicio no tiene pista
180
197
  no_questions: Parece que aún no hay ninguna consulta.
181
198
  no_submissions: ¡Parece que aún no intentaste resolver este ejercicio!
182
199
  no_useful_result: ¿No encontraste lo que estabas buscando?
183
200
  not_found: ¡La página que buscaste no existe!
184
201
  not_found_explanation: Fíjate si escribiste bien la dirección.
185
202
  not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
203
+ notifications: Notificaciones
186
204
  notify_problem_with_exercise: Reporta un bug
187
205
  office: Secretaría
188
206
  only_landscape_support: Por favor, rota tu tablet o celular para realizar ejercicios
@@ -208,7 +226,6 @@ es-CL:
208
226
  previous_exercise: Anterior
209
227
  problem_with_exercise: '[Mumuki] Error con el ejercicio: %{title}'
210
228
  processing_your_solution: Estamos procesando tu solución
211
- profile: Perfil
212
229
  profile_of: Perfil de %{username}
213
230
  progress: Progreso
214
231
  read: Leído
@@ -222,6 +239,7 @@ es-CL:
222
239
  running: procesando
223
240
  save: Guardar
224
241
  see_context: Mira la animación del principio
242
+ select_file: Seleccionar archivo
225
243
  send: Enviar
226
244
  sending_solution: Enviando solución
227
245
  show: Mostrar
@@ -283,7 +301,6 @@ es-CL:
283
301
  unprepared_organization_explanation: ¡Este recorrido aún no ha comenzado!
284
302
  unsubscribe: Dejar de recibir notificaciones
285
303
  unsubscribed_successfully: Te desuscribiste exitosamente de los recordatorios.
286
- upload_solution: "Subir solución"
287
304
  uploading_solution: "Subiendo solución"
288
305
  upvote: Es útil
289
306
  upvotes_count_desc: Más útiles
@@ -12,7 +12,7 @@ es:
12
12
  age: Edad
13
13
  all: Todos
14
14
  and: y
15
- appendix: "Apéndice"
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: "Autores"
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: "Continuar"
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,7 +73,9 @@ 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
78
+ discussions_will_be_here: Las preguntas que realices en el espacio de consultas aparecerán aquí.
77
79
  dont_leave_us: ¡No nos abandones! Aprender a programar es divertido. Sólo tenés que seguir practicando.
78
80
  download: "Descargá lo que hiciste"
79
81
  edit: Editar
@@ -86,13 +88,22 @@ es:
86
88
  error_404: error 404
87
89
  error_410: error 410
88
90
  error_500: error 500
89
- errored: ¡Ups! Tu solución no se puede ejecutar
90
91
  error:
91
92
  title:
92
93
  forbidden: No tenés autorización para ver este contenido
93
94
  gone: ¡Ups! El contenido expiró
94
95
  internal_server_error: ¡Ups! Algo no anduvo bien
95
96
  not_found: ¡Ups! La página no existe
97
+ errored: ¡Ups! Tu solución no se puede ejecutar
98
+ exam_authorization_request_approved_html: Tu solicitud fue aprobada, no olvides conectarte el <strong>%{date}</strong>. ¡Buena suerte!
99
+ exam_authorization_request_created: ¡Tu inscripción al exámen se registró exitosamente!
100
+ exam_authorization_request_rejected: Tu solicitud fue rechazada.
101
+ exam_authorization_request_saved: ¡Tu inscripción al exámen se modificó exitosamente!
102
+ exam_authorization_request_updated: Hay novedades sobre tu inscripción a %{description}
103
+ exam_registration_choose_exam: Seleccioná día y horario en el que te gustaría rendir el exámen
104
+ 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!
105
+ exam_registration_open: ¡Ya podés inscribirte a %{description}!
106
+ exam_registration_to: Inscripción a %{description}
96
107
  exams: Exámenes
97
108
  exercise: Ejercicio
98
109
  exercise_count: ejercicios
@@ -107,6 +118,7 @@ es:
107
118
  failed: Tu solución no pasó las pruebas
108
119
  feedback: Problemas que encontramos
109
120
  female: Mujer
121
+ file_exceeds_max_size: "El tamaño de archivo no debe exceder %{size_kb}kb. Por favor seleccioná otro archivo."
110
122
  finish: Terminar
111
123
  first_name: Nombre
112
124
  forbidden_explanation: ¿Puede que hayas ingresado con una cuenta incorrecta?
@@ -114,7 +126,7 @@ es:
114
126
  forum: Espacio de Consultas
115
127
  forum_terms: Reglas del Espacio de Consultas
116
128
  forum_terms_link: No olvides que al participar debés cumplir las %{terms_link}
117
- fullscreen: "Pantalla completa"
129
+ fullscreen: "Pantalla completa (F11)"
118
130
  gender: Género
119
131
  get_messages: "Ver mensajes"
120
132
  go_to: 'Ir a %{organization}'
@@ -130,15 +142,16 @@ es:
130
142
  home: Inicio
131
143
  hour: hora
132
144
  hours: horas
145
+ important_info: Información importante
133
146
  initial_state: Tablero inicial
134
147
  insert_file_name: Ingresa un nombre de archivo
135
148
  invitation: Invitación a curso
136
149
  invitation_for: 'Unirse a %{course}'
137
- item_not_accessible: "No tenés permisos para acceder a este contenido"
150
+ item_not_accessible: No tenés permisos para acceder a este contenido
138
151
  its_been_a_while: Hace un tiempo que no usás Mumuki.
139
152
  joining_html: '¡Te damos la bienvenida al curso <strong>%{course}</strong>!'
140
153
  keep_learning: ¡Seguí aprendiendo!
141
- kids_default_success: "¡Lo hiciste muy bien!"
154
+ kids_default_success: ¡Lo hiciste muy bien!
142
155
  language: Lenguaje
143
156
  languages: Lenguajes
144
157
  last_name: Apellido
@@ -167,9 +180,12 @@ es:
167
180
  messages_error: Los mensajes anteriores no están disponibles en este momento. ¡Volvé a intentar mas tarde!
168
181
  minute: minuto
169
182
  minutes: minutos
170
- more_messages: Ver mensajes anteriores
183
+ moderation: Mentoría
171
184
  moderator: Mentor
185
+ more_messages: Ver mensajes anteriores
186
+ my_account: Mi cuenta
172
187
  my_doubts: Mis consultas
188
+ my_profile: Mi perfil
173
189
  name: Nombre
174
190
  navigation_continue: 'Siguiente %{kind}: %{sibling}'
175
191
  navigation_next: Siguiente %{kind}
@@ -178,9 +194,10 @@ es:
178
194
  need_help: No entiendo, ¡necesito ayuda!
179
195
  never: nunca
180
196
  new: Nuevo
181
- new_message: ¿Tenés dudas? ¡Levantá la mano!
182
197
  new_discussion: Nueva consulta
198
+ new_message: ¿Tenés dudas? ¡Levantá la mano!
183
199
  new_message_placeholder: Escribí el mensaje para tu docente acá...
200
+ new_message_received: Tenés un nuevo mensaje de %{sender}
184
201
  next_exercise: Siguiente
185
202
  next_guide: 'Siguiente Lección: %{name}'
186
203
  no_discussions: No encontramos consultas que coincidan con tu búsqueda.
@@ -194,6 +211,7 @@ es:
194
211
  not_found: ¡La página que buscaste no existe!
195
212
  not_found_explanation: Fijate si escribiste bien la dirección.
196
213
  not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
214
+ notifications: Notificaciones
197
215
  notify_problem_with_exercise: Reportá un bug
198
216
  office: Secretaría
199
217
  only_landscape_support: Por favor, rotá tu tablet o celular para realizar ejercicios
@@ -219,7 +237,6 @@ es:
219
237
  previous_exercise: Anterior
220
238
  problem_with_exercise: '[Mumuki] Error con el ejercicio: %{title}'
221
239
  processing_your_solution: Estamos procesando tu solución
222
- profile: Perfil
223
240
  profile_of: Perfil de %{username}
224
241
  programming_since: Programando desde
225
242
  progress: Progreso
@@ -237,6 +254,7 @@ es:
237
254
  running: procesando
238
255
  save: Guardar
239
256
  see_context: Mirá la animación del principio
257
+ select_file: Seleccionar archivo
240
258
  send: Enviar
241
259
  sending_solution: Enviando solución
242
260
  show: Mostrar
@@ -266,13 +284,13 @@ es:
266
284
  start_using_mumuki: ¡Empezá a usar Mumuki!
267
285
  status: Estado
268
286
  stop_emails?: ¿Querés dejar de recibir estos mails?
269
- subscribe: Recibir notificaciones
270
287
  submission: solución
271
288
  submission_date: Fecha de envío
272
289
  submission_for_exercise: Solucion para ejercicio
273
290
  submissions: Soluciones
274
291
  submissions_count: Soluciones
275
292
  submissions_for: Soluciones para %{exercise}
293
+ subscribe: Recibir notificaciones
276
294
  tag: Etiquetas
277
295
  task: Consigna
278
296
  teacher_info: Información para docentes
@@ -299,7 +317,6 @@ es:
299
317
  unprepared_organization_explanation: Este recorrido aún no ha comenzado
300
318
  unsubscribe: Dejar de recibir notificaciones
301
319
  unsubscribed_successfully: Te desuscribiste exitosamente de los recordatorios.
302
- upload_solution: "Subir solución"
303
320
  uploading_solution: "Subiendo solución"
304
321
  upvote: Es útil
305
322
  upvotes_count_desc: Más útiles
@@ -322,4 +339,3 @@ es:
322
339
  you_must_sign_in_before_submitting: Tenés que iniciar sesión antes de empezar a enviar tus soluciones
323
340
  you_never_submitted_solutions: Parece que nunca enviaste soluciones desde que creaste tu cuenta.
324
341
  your_new_organization: tu nueva organización
325
-