Merge remote-tracking branch 'origin/pr/157'
Conflicts: isso/js/app/i18n.js
This commit is contained in:
commit
26b889d381
@ -41,6 +41,8 @@ In chronological order:
|
|||||||
* Baptiste Darthenay
|
* Baptiste Darthenay
|
||||||
* Esperanto translation
|
* Esperanto translation
|
||||||
|
|
||||||
|
* Matías Ducasa <https://github.com/matiasducasa>
|
||||||
|
* Spanish translation
|
||||||
|
|
||||||
* [Your name or handle] <[email or website]>
|
* [Your name or handle] <[email or website]>
|
||||||
* [Brief summary of your changes]
|
* [Brief summary of your changes]
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ data-isso-lang
|
|||||||
--------------
|
--------------
|
||||||
|
|
||||||
Override useragent's preferred language. Currently available: german (de),
|
Override useragent's preferred language. Currently available: german (de),
|
||||||
english (en), french (fr), italian (it), esperanto (eo) and russian (ru).
|
english (en), french (fr), italian (it), esperanto (eo), russian (ru) and spanish (es).
|
||||||
|
|
||||||
data-isso-reply-to-self
|
data-isso-reply-to-self
|
||||||
-----------------------
|
-----------------------
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
define(["app/config", "app/i18n/de", "app/i18n/en", "app/i18n/fr", "app/i18n/ru", "app/i18n/it", "app/i18n/eo", "app/i18n/sv", "app/i18n/nl", "app/i18n/el_GR"], function(config, de, en, fr, ru, it, eo, sv, nl, el) {
|
define(["app/config", "app/i18n/de", "app/i18n/en", "app/i18n/fr", "app/i18n/ru", "app/i18n/it", "app/i18n/eo", "app/i18n/sv", "app/i18n/nl", "app/i18n/el_GR", "app/i18n/es"], function(config, de, en, fr, ru, it, eo, sv, nl, el, es) {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@ -7,6 +7,7 @@ define(["app/config", "app/i18n/de", "app/i18n/en", "app/i18n/fr", "app/i18n/ru"
|
|||||||
case "de":
|
case "de":
|
||||||
case "el":
|
case "el":
|
||||||
case "en":
|
case "en":
|
||||||
|
case "es":
|
||||||
case "eo":
|
case "eo":
|
||||||
case "it":
|
case "it":
|
||||||
case "sv":
|
case "sv":
|
||||||
@ -50,7 +51,8 @@ define(["app/config", "app/i18n/de", "app/i18n/en", "app/i18n/fr", "app/i18n/ru"
|
|||||||
it: it,
|
it: it,
|
||||||
ru: ru,
|
ru: ru,
|
||||||
sv: sv,
|
sv: sv,
|
||||||
nl: nl
|
nl: nl,
|
||||||
|
es: es
|
||||||
};
|
};
|
||||||
|
|
||||||
var plural = pluralforms(lang);
|
var plural = pluralforms(lang);
|
||||||
|
30
isso/js/app/i18n/es.js
Normal file
30
isso/js/app/i18n/es.js
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
define({
|
||||||
|
"postbox-text": "Escriba su comentario aquí (al menos 3 caracteres)",
|
||||||
|
"postbox-author": "Nombre (opcional)",
|
||||||
|
"postbox-email": "E-mail (opcional)",
|
||||||
|
"postbox-website": "Sitio web (opcional)",
|
||||||
|
"postbox-submit": "Enviar",
|
||||||
|
|
||||||
|
"num-comments": "Un Comentario\n{{ n }} Comentarios",
|
||||||
|
"no-comments": "Sin Comentarios Todavía",
|
||||||
|
|
||||||
|
"comment-reply": "Responder",
|
||||||
|
"comment-edit": "Editar",
|
||||||
|
"comment-save": "Guardar",
|
||||||
|
"comment-delete": "Eliminar",
|
||||||
|
"comment-confirm": "Confirmar",
|
||||||
|
"comment-close": "Cerrar",
|
||||||
|
"comment-cancel": "Cancelar",
|
||||||
|
"comment-deleted": "Comentario eliminado.",
|
||||||
|
"comment-queued": "Comentario en espera para moderación.",
|
||||||
|
"comment-anonymous": "Anónimo",
|
||||||
|
"comment-hidden": "{{ n }} Oculto(s)",
|
||||||
|
|
||||||
|
"date-now": "ahora",
|
||||||
|
"date-minute": "hace un minuto\nhace {{ n }} minutos",
|
||||||
|
"date-hour": "hace una hora\nhace {{ n }} horas",
|
||||||
|
"date-day": "ayer\nHace {{ n }} días",
|
||||||
|
"date-week": "la semana pasada\nhace {{ n }} semanas",
|
||||||
|
"date-month": "el mes pasado\nhace {{ n }} meses",
|
||||||
|
"date-year": "el año pasado\nhace {{ n }} años"
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user