mumuki-laboratory 7.6.2 → 7.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +193 -2
- data/Rakefile +3 -0
- data/app/assets/javascripts/mumuki_laboratory/application.js +0 -1
- data/app/assets/javascripts/mumuki_laboratory/application/assets-loader.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/bridge.js +36 -10
- data/app/assets/javascripts/mumuki_laboratory/application/button.js +90 -1
- data/app/assets/javascripts/mumuki_laboratory/application/codemirror.js +1 -0
- data/app/assets/javascripts/mumuki_laboratory/application/custom-editor.js +46 -4
- data/app/assets/javascripts/mumuki_laboratory/application/discussions.js +14 -13
- data/app/assets/javascripts/mumuki_laboratory/application/kids.js +73 -36
- data/app/assets/javascripts/mumuki_laboratory/application/progress.js +3 -0
- data/app/assets/javascripts/mumuki_laboratory/application/results-renderer.js +51 -0
- data/app/assets/javascripts/mumuki_laboratory/application/submission.js +184 -35
- data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +43 -5
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids.scss +3 -3
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kindergarten.scss +55 -0
- data/app/controllers/assets_controller.rb +2 -0
- data/app/controllers/concerns/with_authorization.rb +4 -0
- data/app/controllers/concerns/with_user_discussion_validation.rb +14 -0
- data/app/controllers/discussions_controller.rb +6 -14
- data/app/controllers/discussions_messages_controller.rb +10 -1
- data/app/controllers/exercise_solutions_controller.rb +4 -2
- data/app/helpers/application_helper.rb +9 -5
- data/app/helpers/discussions_helper.rb +37 -23
- data/app/helpers/exercise_input_helper.rb +1 -1
- data/app/helpers/icons_helper.rb +3 -3
- data/app/views/book_discussions/index.html.erb +3 -3
- data/app/views/discussions/_message.html.erb +20 -8
- data/app/views/discussions/index.html.erb +0 -1
- data/app/views/discussions/new.html.erb +33 -0
- data/app/views/discussions/show.html.erb +18 -46
- data/app/views/exercise_solutions/_contextualization_results_container.html.erb +1 -1
- data/app/views/exercise_solutions/_results_title.html.erb +2 -2
- data/app/views/exercises/_read_only.html.erb +33 -6
- data/app/views/layouts/_copyright.html.erb +1 -1
- data/app/views/layouts/_discussions.html.erb +21 -3
- data/app/views/layouts/_test_results.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/editors/_custom.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_kids_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_bottom.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_kindergarten.html.erb +40 -0
- data/app/views/layouts/exercise_inputs/layouts/{_input_kids.html.erb → _input_primary.html.erb} +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_right.html.erb +1 -1
- data/app/views/layouts/modals/_kids_context.html.erb +1 -8
- data/app/views/user_mailer/1st_reminder.html.erb +1 -1
- data/app/views/user_mailer/1st_reminder.text.erb +1 -1
- data/app/views/user_mailer/2nd_reminder.html.erb +1 -1
- data/app/views/user_mailer/2nd_reminder.text.erb +1 -1
- data/app/views/user_mailer/3rd_reminder.html.erb +1 -1
- data/app/views/user_mailer/3rd_reminder.text.erb +1 -1
- data/app/views/user_mailer/no_submissions_reminder.html.erb +1 -1
- data/app/views/user_mailer/no_submissions_reminder.text.erb +1 -1
- data/config/routes.rb +2 -1
- data/lib/mumuki/laboratory/controllers/results_rendering.rb +1 -2
- data/lib/mumuki/laboratory/locales/en.yml +8 -2
- data/lib/mumuki/laboratory/locales/es-CL.yml +292 -0
- data/lib/mumuki/laboratory/locales/es.yml +7 -1
- data/lib/mumuki/laboratory/locales/pt.yml +8 -4
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/confirmations_controller_spec.rb +1 -1
- data/spec/controllers/discussions_messages_controller_spec.rb +73 -0
- data/spec/controllers/exercise_solutions_controller_spec.rb +41 -6
- data/spec/dummy/db/schema.rb +12 -1
- data/spec/features/discussion_flow_spec.rb +190 -0
- data/spec/features/exercise_flow_spec.rb +1 -1
- data/spec/features/menu_bar_spec.rb +88 -7
- data/spec/helpers/breadcrumbs_helper_spec.rb +1 -1
- data/spec/javascripts/bridge-spec.js +5 -0
- data/spec/javascripts/csrf-token-spec.js +7 -0
- data/spec/javascripts/elipsis-spec.js +25 -0
- data/spec/javascripts/results-renderers-spec.js +17 -0
- data/spec/javascripts/spec-helper.js +30 -0
- data/spec/javascripts/speech-bubble-renderer-spec.js +11 -0
- data/spec/javascripts/timeout-spec.js +5 -0
- data/spec/javascripts/timer-spec.js +5 -0
- data/spec/teaspoon_env.rb +187 -0
- metadata +34 -9
- data/app/views/layouts/modals/_new_discussion.html.erb +0 -27
- data/vendor/assets/javascripts/hotjar.js +0 -8
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="modal fade mu-kids-context" id="kids-context" tabindex="-1" role="dialog" aria-hidden="true">
|
1
|
+
<div class="modal fade mu-kids-context" id="mu-kids-context" tabindex="-1" role="dialog" aria-hidden="true">
|
2
2
|
<div class="modal-dialog">
|
3
3
|
<div class="modal-content">
|
4
4
|
<div class="modal-header">
|
@@ -24,10 +24,3 @@
|
|
24
24
|
</div>
|
25
25
|
</div>
|
26
26
|
</div>
|
27
|
-
|
28
|
-
<script>
|
29
|
-
$('#kids-context').modal({
|
30
|
-
backdrop: 'static',
|
31
|
-
keyboard: false
|
32
|
-
});
|
33
|
-
</script>
|
@@ -313,7 +313,7 @@
|
|
313
313
|
|
314
314
|
<td valign="top" class="muMailTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
315
315
|
|
316
|
-
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki
|
316
|
+
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki</a><em>.</em><br>
|
317
317
|
<br>
|
318
318
|
<%= t :stop_emails? %><br>
|
319
319
|
<%= link_to t(:cancel_subscription), @organization.url_for("/user/unsubscribe?id=#{@unsubscribe_code}"), target: :_blank %>
|
@@ -313,7 +313,7 @@
|
|
313
313
|
|
314
314
|
<td valign="top" class="muMailTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
315
315
|
|
316
|
-
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki
|
316
|
+
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki</a><em>.</em><br>
|
317
317
|
<br>
|
318
318
|
<%= t :stop_emails? %><br>
|
319
319
|
<%= link_to t(:cancel_subscription), @organization.url_for("/user/unsubscribe?id=#{@unsubscribe_code}"), target: :_blank %>
|
@@ -313,7 +313,7 @@
|
|
313
313
|
|
314
314
|
<td valign="top" class="muMailTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
315
315
|
|
316
|
-
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki
|
316
|
+
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki</a><em>.</em><br>
|
317
317
|
<br>
|
318
318
|
<%= t :stop_emails? %><br>
|
319
319
|
<%= link_to t(:cancel_subscription), @organization.url_for("/user/unsubscribe?id=#{@unsubscribe_code}"), target: :_blank %>
|
@@ -313,7 +313,7 @@
|
|
313
313
|
|
314
314
|
<td valign="top" class="muMailTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
315
315
|
|
316
|
-
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki
|
316
|
+
© Copyright 2015-<%= DateTime.now.year %> <a href="https://mumuki.org/home/">Mumuki</a><em>.</em><br>
|
317
317
|
<br>
|
318
318
|
<%= t :stop_emails? %><br>
|
319
319
|
<%= link_to t(:cancel_subscription), @organization.url_for("/user/unsubscribe?id=#{@unsubscribe_code}"), target: :_blank %>
|
data/config/routes.rb
CHANGED
@@ -6,7 +6,7 @@ Rails.application.routes.draw do
|
|
6
6
|
root to: 'book#show'
|
7
7
|
|
8
8
|
concern :debatable do |options|
|
9
|
-
resources :discussions, options.merge(only: [:index, :show, :create, :update, :destroy]) do
|
9
|
+
resources :discussions, options.merge(only: [:index, :new, :show, :create, :update, :destroy]) do
|
10
10
|
post :subscription, on: :member
|
11
11
|
post :upvote, on: :member
|
12
12
|
end
|
@@ -17,6 +17,7 @@ Rails.application.routes.draw do
|
|
17
17
|
resources :discussions, only: [] do
|
18
18
|
resources :messages, only: [:create, :destroy], controller: 'discussions_messages' do
|
19
19
|
post :approve, on: :member
|
20
|
+
post :question, on: :member
|
20
21
|
end
|
21
22
|
end
|
22
23
|
|
@@ -33,8 +33,7 @@ module Mumuki::Laboratory::Controllers::ResultsRendering
|
|
33
33
|
|
34
34
|
def progress_json
|
35
35
|
{
|
36
|
-
guide_finished_by_solution: guide_finished_by_solution
|
37
|
-
class_for_progress_list_item: class_for_progress_list_item(@exercise, true)
|
36
|
+
guide_finished_by_solution: guide_finished_by_solution?
|
38
37
|
}
|
39
38
|
end
|
40
39
|
|
@@ -10,6 +10,7 @@ en:
|
|
10
10
|
all: All
|
11
11
|
appendix: "Appendix"
|
12
12
|
appendix_teaser: Do you want to learn more? <a href="%{link}">Check this chapter's appendix</a>"
|
13
|
+
approved_message: Validated by mentor
|
13
14
|
are_you_sure: 'Are you sure you want to %{action}?'
|
14
15
|
ask_a_question: Ask a question!
|
15
16
|
ask_community: Ask community for help
|
@@ -58,6 +59,7 @@ en:
|
|
58
59
|
destroy: Destroy
|
59
60
|
disabled_explanation: You are trying to visit a permamently disabled or deleted resource
|
60
61
|
disabled_organization_explanation: This path has already finished.
|
62
|
+
discussion_description_placeholder: You can add more information regarding your doubt.
|
61
63
|
discussion_updated: Discussion updated
|
62
64
|
discussions: Discussions
|
63
65
|
dont_leave_us: Don't leave us! Learning is fun. You just have to keep at it.
|
@@ -113,6 +115,7 @@ en:
|
|
113
115
|
kids_default_success: You did it great!
|
114
116
|
language: Language
|
115
117
|
last_name: Last Name
|
118
|
+
last_seen: "Seen by %{name}"
|
116
119
|
last_submission_date: Last submission
|
117
120
|
latest_exercises: Latest exercises
|
118
121
|
learning: Learning
|
@@ -132,7 +135,7 @@ en:
|
|
132
135
|
messages: Messages
|
133
136
|
messages_error: Previous messages are unavailable. Please try again later.
|
134
137
|
more_messages: More
|
135
|
-
moderator:
|
138
|
+
moderator: Mentor
|
136
139
|
mumuki_catchphrase: Improve your programming skills
|
137
140
|
mumuki_short_description: Mumuki is a simple, open and collaborative platform for sharing and solving programming exercises. It is aimed to help people with learning and teaching programing languages and paradigms
|
138
141
|
my_doubts: My doubts
|
@@ -154,7 +157,7 @@ en:
|
|
154
157
|
no_messages: It seems you don't have any messages yet!
|
155
158
|
no_questions: It seems there isn't any question yet.
|
156
159
|
no_submissions: It seems like you haven't tried to solve this exercise
|
157
|
-
no_useful_result:
|
160
|
+
no_useful_result: Didn't find what you were looking for?
|
158
161
|
not_found_explanation: 'You may have mistyped the address or the page may have moved.'
|
159
162
|
not_in_any_organizations: It seems you aren't in any organizations yet!
|
160
163
|
notify_problem_with_exercise: Report a bug
|
@@ -184,7 +187,10 @@ en:
|
|
184
187
|
progress: Progresss
|
185
188
|
read: Read
|
186
189
|
refresh_or_wait: Please press F5 if results are not displayed after a few seconds
|
190
|
+
requires_attention: Requires attention
|
187
191
|
reset_query: Clear current search filters
|
192
|
+
responses_count_asc: By less validated replies
|
193
|
+
responses_count_desc: By more validated replies
|
188
194
|
restart: Restart
|
189
195
|
results: Results
|
190
196
|
results_hidden: Your solution was submitted successfully!
|
@@ -0,0 +1,292 @@
|
|
1
|
+
---
|
2
|
+
es-CL:
|
3
|
+
aborted: Ups, no pudimos evaluar tu solución
|
4
|
+
abort_explanation_html: <li>Revisa que tu programa no tenga recursión o algún bucle infinito</li><li>Revisa que tengas conexión a internet</li><li>Espera un rato e inténtalo nuevamente</li>
|
5
|
+
about: Detalles
|
6
|
+
accept_terms: Acepto los términos y condiciones
|
7
|
+
actions: Acciones
|
8
|
+
activity: Actividad
|
9
|
+
actual_state: Tablero obtenido
|
10
|
+
all: Todos
|
11
|
+
and: y
|
12
|
+
appendix: "Apéndice"
|
13
|
+
appendix_teaser: ¿Quieres saber más? <a href="%{link}">Consulta el apéndice de este capítulo</a>
|
14
|
+
are_you_sure: '¿Estás seguro que quieres %{action}?'
|
15
|
+
ask_a_question: ¡Haz una pregunta!
|
16
|
+
ask_community: Pregunta a la comunidad
|
17
|
+
ask_redirect: ¿Quieres que te llevemos ahí?
|
18
|
+
ask_the_first_question: ¡Haz la primera pregunta!
|
19
|
+
attempts_left:
|
20
|
+
zero: 'Te quedaste sin intentos'
|
21
|
+
one: '1 intento restante'
|
22
|
+
other: '%{count} intentos restantes'
|
23
|
+
author: Autor
|
24
|
+
authoring: "Autores"
|
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
|
+
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
|
+
back_to_mumuki: ¡Vuelve a Mumuki!
|
28
|
+
bibliotheca_ui: Biblioteca
|
29
|
+
birthdate: Fecha de nacimiento
|
30
|
+
blocked_forum_explanation: Es decir que no tienes autorización para ver este contenido. <br> ¿Puede que estés en medio de un examen?
|
31
|
+
cancel_subscription: Cancela tu subscripción.
|
32
|
+
chapter: Capítulo
|
33
|
+
chapters: Capítulos
|
34
|
+
chapter_finished_html: ¡Terminaste %{chapter}! ¡Felicitaciones!
|
35
|
+
chapter_number: 'Capítulo %{number}'
|
36
|
+
classroom_ui: Aula
|
37
|
+
clear_console: Reiniciar consola
|
38
|
+
closed: Cerrada
|
39
|
+
closed_count:
|
40
|
+
one: 1 cerrada
|
41
|
+
other: '%{count} cerradas'
|
42
|
+
created_at_asc: Antiguas
|
43
|
+
created_at_desc: Nuevas
|
44
|
+
comment: Comentar
|
45
|
+
confirm: Confirmar
|
46
|
+
confirm_reset: Estás por reiniciar tu ejercicio. ¿Quieres continuar?
|
47
|
+
confirm_restart: Estás por borrar tu progreso en esta guía. ¿Quieres continuar?
|
48
|
+
console: Consola
|
49
|
+
contact_administrator: 'Si piensas que es un error, comunícate con la persona que administra esta organización: %{link}'
|
50
|
+
content: Contenido
|
51
|
+
continue_exercise: "Continuar"
|
52
|
+
continue_lesson: ¡Continúa esta lección!
|
53
|
+
continue_practicing: ¡Sigue aprendiendo!
|
54
|
+
correct_answer: ¡La respuesta es correcta!
|
55
|
+
create_submission: Enviar
|
56
|
+
created_at: Creado
|
57
|
+
created_exercises: Ejercicios Creados
|
58
|
+
created_guides: Lecciones Creadas
|
59
|
+
date: Fecha
|
60
|
+
day: Día
|
61
|
+
days: Días
|
62
|
+
description: Descripción
|
63
|
+
destroy_message: eliminar el mensaje
|
64
|
+
destroy: Eliminar
|
65
|
+
details: Detalles
|
66
|
+
disabled_explanation: Estás intentando acceder a un recurso que fue deshabilitado o eliminado de forma permanente
|
67
|
+
disabled_organization_explanation: ¡Este recorrido ha finalizado!
|
68
|
+
discussion_updated: Consulta actualizada
|
69
|
+
discussions: Consultas
|
70
|
+
dont_leave_us: ¡No nos abandones! Aprender a programar es divertido. Sólo tienes que seguir practicando.
|
71
|
+
download: "Descarga lo que hiciste"
|
72
|
+
edit: Editar
|
73
|
+
editor_placeholder: "...escribe tu solución acá..."
|
74
|
+
email: Email
|
75
|
+
error_description: ¡Ups! <br> Esto es lo que se conoce como <span class="error-link">%{error}</span>.
|
76
|
+
error_401: error 401
|
77
|
+
error_403: error 403
|
78
|
+
error_404: error 404
|
79
|
+
error_410: error 410
|
80
|
+
error_500: error 500
|
81
|
+
errored: ¡Ups! Tu solución no se puede ejecutar
|
82
|
+
exam_number: 'Examen %{number}:'
|
83
|
+
exams: Exámenes
|
84
|
+
exercise: Ejercicio
|
85
|
+
exercise_count: ejercicios
|
86
|
+
exercise_number: Ejercicio %{number}
|
87
|
+
exercise_success_rate: Tasa de éxito en ejercicios
|
88
|
+
exercises: Ejercicios
|
89
|
+
exit: Salir
|
90
|
+
expectations: Objetivos
|
91
|
+
expected_state: Tablero esperado
|
92
|
+
explain_redirect: Notamos que te registraste en otra organización.
|
93
|
+
failed: Tu solución no pasó las pruebas
|
94
|
+
feedback: Problemas que encontramos
|
95
|
+
female: Mujer
|
96
|
+
finish: Terminar
|
97
|
+
first_name: Nombre
|
98
|
+
forbidden_explanation: Es decir que no tienes autorización para ver este contenido. <br> ¿Puede que hayas ingresado con una cuenta incorrecta?
|
99
|
+
format: Dar formato
|
100
|
+
fullscreen: "Pantalla completa"
|
101
|
+
gender: Género
|
102
|
+
get_messages: "Ver mensajes"
|
103
|
+
go_to: 'Ir a %{organization}'
|
104
|
+
gone_explanation: Este contenido ya no está disponible.
|
105
|
+
guide: Lección
|
106
|
+
guide_created: Guía creada exitosamente
|
107
|
+
guide_finished: ¡Terminaste %{guide}!
|
108
|
+
guide_internal: guia
|
109
|
+
guides_index_title: ¿Qué guía quieres hacer hoy?
|
110
|
+
here: acá
|
111
|
+
hidden_done: '¡Muy bien!'
|
112
|
+
history: Historial
|
113
|
+
home: Inicio
|
114
|
+
hour: hora
|
115
|
+
hours: horas
|
116
|
+
initial_state: Tablero inicial
|
117
|
+
insert_file_name: Ingresa un nombre de archivo
|
118
|
+
invitation: Invitación a curso
|
119
|
+
invitation_for: 'Unirse a %{course}'
|
120
|
+
item_not_accessible: "No tienes permisos para acceder a este contenido"
|
121
|
+
its_been_a_while: Hace un tiempo que no usas Mumuki.
|
122
|
+
joining_html: '¡Te damos la bienvenida al curso <strong>%{course}</strong>!'
|
123
|
+
keep_learning: ¡Sigue aprendiendo!
|
124
|
+
kids_default_success: ¡Lo hiciste muy bien!
|
125
|
+
language: Lenguaje
|
126
|
+
languages: Lenguajes
|
127
|
+
last_name: Apellido
|
128
|
+
last_submission_date: Última solución
|
129
|
+
latest_exercises: Últimos ejercicios
|
130
|
+
learning: Aprendizaje
|
131
|
+
lesson: Lección
|
132
|
+
lessons: Lecciones
|
133
|
+
lesson_number: Lección %{number}
|
134
|
+
let_us_know: ¡Por favor avísanos!
|
135
|
+
loading: Cargando
|
136
|
+
load_solution_into_console: Cargar la solución en la consola
|
137
|
+
locked_content: 'Éste contenido se desbloqueará cuando termines los capítulos anteriores'
|
138
|
+
male: Hombre
|
139
|
+
manual_evaluation_pending: ¡Gracias por enviar tu solución! Tus docentes la corregirán pronto
|
140
|
+
message_count:
|
141
|
+
one: 1 mensaje
|
142
|
+
other: '%{count} mensajes'
|
143
|
+
message: Mensaje
|
144
|
+
messages: Mensajes
|
145
|
+
messages_error: Los mensajes anteriores no están disponibles en este momento. ¡Vuelve a intentar más tarde!
|
146
|
+
minute: minuto
|
147
|
+
minutes: minutos
|
148
|
+
more_messages: Ver mensajes anteriores
|
149
|
+
moderator: Moderador
|
150
|
+
mumuki_catchphrase: Aprende a programar
|
151
|
+
mumuki_short_description: Mumuki es la plataforma libre y gratuita para aprender a programar, de la práctica a la teoría y en tu idioma
|
152
|
+
my_doubts: Mis consultas
|
153
|
+
name: Nombre
|
154
|
+
navigation_continue: 'Siguiente %{kind}: %{sibling}'
|
155
|
+
navigation_next: Siguiente %{kind}
|
156
|
+
navigation_revisit: 'Siguiente pendiente: %{sibling}'
|
157
|
+
need_a_hint: ¡Dame una pista!
|
158
|
+
need_help: No entiendo, ¡necesito ayuda!
|
159
|
+
never: nunca
|
160
|
+
new: Nuevo
|
161
|
+
new_message: ¿Tienes dudas? ¡Levanta la mano!
|
162
|
+
new_discussion: Nueva consulta
|
163
|
+
new_message_placeholder: Escribe el mensaje para tu docente acá...
|
164
|
+
next_exercise: Siguiente
|
165
|
+
next_guide: 'Siguiente Lección: %{name}'
|
166
|
+
no_discussions: No encontramos consultas que coincidan con tu búsqueda.
|
167
|
+
no_exercises: No encontramos ejercicios que coincidan con tu búsqueda.
|
168
|
+
no_guides: No encontramos lecciones que coincidan con tu búsqueda.
|
169
|
+
no_messages: ¡Parece que no tienes ningún mensaje todavía!
|
170
|
+
no_questions: Parece que aún no hay ninguna consulta.
|
171
|
+
no_submissions: ¡Parece que aún no intentaste resolver este ejercicio!
|
172
|
+
no_useful_result: ¿No encontraste lo que estabas buscando?
|
173
|
+
not_found: ¡La página que buscaste no existe!
|
174
|
+
not_found_explanation: Fíjate si escribiste bien la dirección. Peeeeero...
|
175
|
+
not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
|
176
|
+
notify_problem_with_exercise: Reporta un bug
|
177
|
+
office: Secretaría
|
178
|
+
only_landscape_support: Por favor, rota tu tablet o celular para realizar ejercicios
|
179
|
+
opened: Abierta
|
180
|
+
opened_count:
|
181
|
+
one: '1 abierta'
|
182
|
+
other: '%{count} abiertas'
|
183
|
+
organizations: Organizaciones
|
184
|
+
other: Otro
|
185
|
+
out_of_attempts: Te quedaste sin intentos. ¡Sigue al próximo ejercicio!
|
186
|
+
output: Salida
|
187
|
+
overview: Vista general
|
188
|
+
passed: ¡Muy bien! Tu solución pasó todas las pruebas
|
189
|
+
passed_with_warnings: Tu solución funcionó, pero hay cosas que mejorar
|
190
|
+
pending: pendiente
|
191
|
+
pending_review: En revisión
|
192
|
+
pending_review_count: '%{count} en revisión'
|
193
|
+
pending_messages: Tienes mensajes sin leer
|
194
|
+
pending_messages_explanation: "¡Tu docente te dejó un mensaje! Revísalo antes de seguir enviando soluciones."
|
195
|
+
permissions: Permisos
|
196
|
+
please_fill_profile_data: ¡Completa tus datos personales para continuar!
|
197
|
+
please_validate: 'Estás a punto de ingresar al curso. Para poder ofrecerte una mejor experiencia, por favor valida que tus datos a continuación sean reales y correctos.'
|
198
|
+
powered_by_mumuki_html: "por <span class=\"da da-mumuki-circle\"></span> mumuki"
|
199
|
+
previous_exercise: Anterior
|
200
|
+
problem_with_exercise: '[Mumuki] Error con el ejercicio: %{title}'
|
201
|
+
processing_your_solution: Estamos procesando tu solución
|
202
|
+
profile: Perfil
|
203
|
+
profile_of: Perfil de %{username}
|
204
|
+
progress: Progreso
|
205
|
+
read: Leído
|
206
|
+
read_messages: Ver mensajes
|
207
|
+
refresh_or_wait: Si no se muestra automáticamente en unos segundos, presiona F5
|
208
|
+
reset_query: Borrar los filtros de búsqueda actuales
|
209
|
+
restart: Reiniciar
|
210
|
+
results_hidden: ¡Tu solución fue enviada con éxito!
|
211
|
+
results: Resultados
|
212
|
+
retry_exercise: Reintentar
|
213
|
+
running: procesando
|
214
|
+
save: Guardar
|
215
|
+
send: Enviar
|
216
|
+
sending_solution: Enviando solución
|
217
|
+
show: Mostrar
|
218
|
+
sign_in: Inicia sesión
|
219
|
+
sign_in_action: iniciar sesión
|
220
|
+
sign_out: Cerrar Sesión
|
221
|
+
sign_up_date: Usuario desde
|
222
|
+
skipped: Vienes aprendiendo muy bien, por lo que aprobaste este ejercicio.
|
223
|
+
skipped_congratulations: ¡Bien hecho!
|
224
|
+
skipped_description: Vienes aprendiendo muy bien, por lo que aprobaste este ejercicio.
|
225
|
+
skipped_solve_anyway: Resolver de todos modos
|
226
|
+
solution: Solución
|
227
|
+
solved: Resuelta
|
228
|
+
solved_count:
|
229
|
+
one: 1 resuelta
|
230
|
+
other: '%{count} resueltas'
|
231
|
+
solved_exercises: Ejercicios Resueltos
|
232
|
+
solve_doubts: Resuelve consultas
|
233
|
+
solve_your_doubts: Consulta tus dudas
|
234
|
+
solve_your_doubts_teaser: ¿Tienes alguna consulta?
|
235
|
+
something_went_wrong: ¡Ups!, algo no anduvo bien...
|
236
|
+
something_went_wrong_explanation: Algo no anduvo como se esperaba.
|
237
|
+
sort: Ordenar
|
238
|
+
sources: Bibliografía
|
239
|
+
start_lesson: ¡Comienza esta lección!
|
240
|
+
start_practicing: ¡Empieza ahora!
|
241
|
+
start_using_mumuki: ¡Empieza a usar Mumuki!
|
242
|
+
status: Estado
|
243
|
+
stay_here: No, quiero quedarme acá
|
244
|
+
stop_emails?: ¿Quieres dejar de recibir estos mails?
|
245
|
+
subscribe: Recibir notificaciones
|
246
|
+
submission: solución
|
247
|
+
submission_date: Fecha de envío
|
248
|
+
submission_for_exercise: Solución para ejercicio
|
249
|
+
submissions: Soluciones
|
250
|
+
submissions_count: Soluciones
|
251
|
+
submissions_for: Soluciones para %{exercise}
|
252
|
+
tag: Etiquetas
|
253
|
+
task: Consigna
|
254
|
+
teacher_info: Información para docentes
|
255
|
+
tell_us_how: ¡Cuéntanos cómo te pasó esto!
|
256
|
+
tell_us_if_our_error: Si piensas que es un error nuestro, %{issues}
|
257
|
+
terms_and_conditions: Términos y condiciones
|
258
|
+
test_results: Resultados de las pruebas
|
259
|
+
time_since: "hace %{time}"
|
260
|
+
time_left: Te quedan
|
261
|
+
title: Título
|
262
|
+
to_closed: Cerrar
|
263
|
+
to_opened: Reabrir
|
264
|
+
to_pending_review: Resolver
|
265
|
+
to_solved: Resolver
|
266
|
+
unauthorized_explanation: ¡Ups! Esto es lo que se conoce como %{error}, es decir que no iniciaste sesión.
|
267
|
+
uncategorized: No categorizado
|
268
|
+
undo_upvote: No es útil
|
269
|
+
unspecified: Prefiero no decirlo
|
270
|
+
unmeet_expectations: Objetivos que no se cumplieron
|
271
|
+
unprepared_organization_explanation: ¡Este recorrido aún no ha comenzado!
|
272
|
+
unsubscribe: Dejar de recibir notificaciones
|
273
|
+
unsubscribed_successfully: Te desuscribiste exitosamente de los recordatorios.
|
274
|
+
upload_solution: "Subir solución"
|
275
|
+
uploading_solution: "Subiendo solución"
|
276
|
+
upvote: Es útil
|
277
|
+
upvotes_count_desc: Más útiles
|
278
|
+
upvotes_count_asc: Menos útiles
|
279
|
+
user_data_updated: Tus datos se actualizaron correctamente
|
280
|
+
user: Usuario
|
281
|
+
username: Nombre de usuario
|
282
|
+
view_details: Ver detalles
|
283
|
+
want_permissions: El siguiente usuario requiere permisos
|
284
|
+
we_miss_you: ¡Te extrañamos!
|
285
|
+
will_paginate:
|
286
|
+
previous_label: "← Anterior"
|
287
|
+
next_label: "Siguiente →"
|
288
|
+
page_gap: "…"
|
289
|
+
working: "Procesando"
|
290
|
+
wrong_answer: La respuesta no es correcta
|
291
|
+
you_must_sign_in_before_submitting: Tienes que iniciar sesión antes de empezar a enviar tus soluciones
|
292
|
+
you_never_submitted_solutions: Parece que nunca enviaste soluciones desde que creaste tu cuenta.
|