From 96b488b992865242ea44f684d3fc3068de7d5dcf Mon Sep 17 00:00:00 2001 From: "Fernando G. Vilar" Date: Wed, 28 Nov 2018 15:02:48 +0700 Subject: [PATCH] Add translation to Spanish (#8) --- data/months_es.yaml | 12 ++++++++++++ i18n/es.toml | 17 +++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 data/months_es.yaml create mode 100644 i18n/es.toml diff --git a/data/months_es.yaml b/data/months_es.yaml new file mode 100644 index 00000000..e2fc147e --- /dev/null +++ b/data/months_es.yaml @@ -0,0 +1,12 @@ +1: "enero" +2: "febrero" +3: "marzo" +4: "abril" +5: "mayo" +6: "junio" +7: "julio" +8: "agosto" +9: "septiembre" +10: "octubre" +11: "noviembre" +12: "diciembre" diff --git a/i18n/es.toml b/i18n/es.toml new file mode 100644 index 00000000..13831182 --- /dev/null +++ b/i18n/es.toml @@ -0,0 +1,17 @@ +[posts] +other = "Artículos" + +[about] +other = "Acerca" + +[writtenBy] +other = "Escrito por" + +[on] +other = "el" + +[generator] +other = "Hecho con Hugo usando el tema Tale." + +[publishdate] +other = "{{ .PublishDate.Day }} de {{ index $.Site.Data.months_es (printf \"%d\" .PublishDate.Month) }} de {{ .PublishDate.Year }}" \ No newline at end of file