forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e66747
commit 1cebbbc
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# encoding: utf-8 | ||
# This file contains content for the client portion of Discourse, sent out | ||
# to the Javascript app. | ||
# | ||
# To validate this YAML file after you change it, please paste it into | ||
# http://yamllint.com/ | ||
|
||
es: | ||
js: | ||
poll: | ||
voteCount: | ||
one: "1 voto" | ||
other: "%{count} votos" | ||
|
||
results: | ||
show: "Mostrar resultados" | ||
hide: "Ocultar resultados" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# encoding: utf-8 | ||
# This file contains content for the server portion of Discourse used by Ruby | ||
# | ||
# To validate this YAML file after you change it, please paste it into | ||
# http://yamllint.com/ | ||
|
||
es: | ||
activerecord: | ||
attributes: | ||
post: | ||
poll_options: "Opciones de la encuesta" | ||
poll: | ||
must_contain_poll_options: "debe que contener una lista con las respuestas de la encuesta" | ||
cannot_have_modified_options: "no se pueden modificar las respuestas de la encuesta pasados 5 minutos" | ||
cannot_add_or_remove_options: "solo se puede modificar, no se pueden añadir o quitar. Si necesitas añadir o quitar respuestas debes bloquear este tema y crear una encuesta nueva." | ||
prefix: "Encuesta:" |