From f1f89d29d79d6d6b655c7a1d8ba7e8a872f3b662 Mon Sep 17 00:00:00 2001 From: Alejandro Gaspar Date: Sun, 16 Jul 2023 03:01:31 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Add=20Spanish=20translation=20to?= =?UTF-8?q?=20exampleSite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 Add language and menu configuration for spanish language 🌐 Add spanish translations for the homepage and menu --- exampleSite/config/_default/languages.es.toml | 28 +++++++ exampleSite/config/_default/menus.es.toml | 50 +++++++++++++ exampleSite/content/_index.es.md | 29 ++++++++ exampleSite/content/samples/_index.es.md | 18 +++++ exampleSite/content/tags/_index.es.md | 9 +++ .../content/tags/advanced/_index.es.md | 7 ++ exampleSite/content/users/index.es.md | 73 +++++++++++++++++++ 7 files changed, 214 insertions(+) create mode 100644 exampleSite/config/_default/languages.es.toml create mode 100644 exampleSite/config/_default/menus.es.toml create mode 100755 exampleSite/content/_index.es.md create mode 100755 exampleSite/content/samples/_index.es.md create mode 100644 exampleSite/content/tags/_index.es.md create mode 100644 exampleSite/content/tags/advanced/_index.es.md create mode 100644 exampleSite/content/users/index.es.md diff --git a/exampleSite/config/_default/languages.es.toml b/exampleSite/config/_default/languages.es.toml new file mode 100644 index 00000000..7e2f60eb --- /dev/null +++ b/exampleSite/config/_default/languages.es.toml @@ -0,0 +1,28 @@ +languageCode = "es-mx" +languageName = "Español (México)" +weight = 2 + +title = "Congo" +copyright = "© 2023 Congo contributors" + +[params] + isoCode = "es-MX" + displayName = ":flag-mx:" + rtl = false + + dateFormat = "2 January 2006" + + mainSections = ["Ejemplos"] + description = "Un tema poderoso y liviano para Hugo creado con Tailwind CSS." + +[author] + name = "Congo" + image = "img/author.jpg" + headline = "¡No es tu tema ordinario!" + bio = "Esta es una biografía de autor de ejemplo, y aunque aquí hay una foto de archivo de un perro, este artículo en realidad fue creado por un ser humano. :dog:" + links = [ + { twitter = "https://twitter.com/" }, + { facebook = "https://facebook.com/" }, + { linkedin = "https://linkedin.com/" }, + { youtube = "https://youtube.com/" }, + ] diff --git a/exampleSite/config/_default/menus.es.toml b/exampleSite/config/_default/menus.es.toml new file mode 100644 index 00000000..beeed91a --- /dev/null +++ b/exampleSite/config/_default/menus.es.toml @@ -0,0 +1,50 @@ +# -- Main Menu -- +# The main menu is displayed in the header at the top of the page. +# Acceptable parameters are name, pageRef, page, url, title, weight. +# +# The simplest menu configuration is to provide: +# name = The name to be displayed for this menu link +# pageRef = The identifier of the page or section to link to +# +# By default the menu is ordered alphabetically. This can be +# overridden by providing a weight value. The menu will then be +# ordered by weight from lowest to highest. + +[[main]] + name = "Docs" + url = "/docs" + weight = 10 + +[[main]] + name = "Ejemplos" + pageRef = "samples" + weight = 20 + +[[main]] + name = "Usuarios" + pageRef = "users" + weight = 30 + +[[main]] + name = "GitHub" + url = "https://github.com/jpanther/congo" + weight = 40 + [main.params] + icon = "github" + showName = false + target = "_blank" + +[[main]] + identifier = "search" + weight = 99 + [main.params] + action = "search" + +# -- Footer Menu -- +# The footer menu is displayed at the bottom of the page, just before +# the copyright notice. Configure as per the main menu above. + +# [[footer]] +# name = "Tags" +# pageRef = "tags" +# weight = 10 diff --git a/exampleSite/content/_index.es.md b/exampleSite/content/_index.es.md new file mode 100755 index 00000000..4d4584c6 --- /dev/null +++ b/exampleSite/content/_index.es.md @@ -0,0 +1,29 @@ +--- +title: "¡Bienvenido a Congo! :tada:" +description: "Esta es una demostración del tema Congo para Hugo." +--- + +{{< lead >}} +Un tema poderoso y liviano para Hugo creado con Tailwind CSS. +{{< /lead >}} + +Este es un sitio de demostración creado completamente con Congo. También contiene un conjunto completo de artículos con [documentación del tema]({{< ref path="docs" lang="en" >}}). Congo es flexible y es excelente tanto para contenido estático basado en páginas (como es el caso de esta demostración) como para un blog tradicional con un feed de publicaciones recientes. + +
+ + {{< icon "triangle-exclamation" >}} + + + Esta es la demostración en formato page + + +
+ +{{< figure src="festivities.svg" class="m-auto mt-6 max-w-prose" >}} + +Explora las [páginas de ejemplo]({{< ref "samples" >}}) para tener una idea de lo que Congo puede hacer. Si te gusta lo que ves, consulta el proyecto en [Github](https://github.com/jpanther/congo) o lee la [Guía de instalación]({{< ref path="docs/installation" lang="en" >}}) para comenzar. diff --git a/exampleSite/content/samples/_index.es.md b/exampleSite/content/samples/_index.es.md new file mode 100755 index 00000000..a4b7ebdb --- /dev/null +++ b/exampleSite/content/samples/_index.es.md @@ -0,0 +1,18 @@ +--- +title: "Páginas de ejemplo" +description: "Vea lo que es posible con Congo." + +cascade: + showEdit: false + showSummary: true +--- + +{{< lead >}} +Congo da vida a su contenido. :heart_eyes: +{{< /lead >}} + +Esta sección contiene ejemplos que muestran cómo Congo representa diferentes tipos de contenido. También puedes ver una página con una [lista de taxonomía]({{< ref "tags" >}}) de ejemplo. + +_**Nota al margen:** Esta página es solo una lista estándar de artículos de Congo, y Hugo se ha configurado para generar un tipo de contenido de `ejemplos` y mostrar resúmenes de artículos._ + +--- diff --git a/exampleSite/content/tags/_index.es.md b/exampleSite/content/tags/_index.es.md new file mode 100644 index 00000000..c8af4155 --- /dev/null +++ b/exampleSite/content/tags/_index.es.md @@ -0,0 +1,9 @@ +--- +title: Etiquetas +--- + +Congo tiene soporte total para las taxonomías de Hugo y se adaptará a cualquier configuración de taxonomía. Las listas de taxonomías como esta también admiten contenido personalizado que se muestra encima de la lista de términos. + +Esta área podría usarse para agregar texto descriptivo adicional a cada taxonomía. Consulte el ejemplo de [etiquetas avanzadas]({{< ref path="advanced" >}}) a continuación para ver cómo llevar este concepto aún más lejos. + +--- diff --git a/exampleSite/content/tags/advanced/_index.es.md b/exampleSite/content/tags/advanced/_index.es.md new file mode 100644 index 00000000..a572a3a6 --- /dev/null +++ b/exampleSite/content/tags/advanced/_index.es.md @@ -0,0 +1,7 @@ +--- +title: Avanzada +--- + +Esta es la etiqueta avanzada. Al igual que otras páginas de listas en Congo, puede agregar contenido personalizado a los términos taxonómicos individuales y se mostrará en la parte superior de la lista de términos. :rocket: + +También puedes usar estas páginas de contenido para definir metadatos de Hugo como títulos y descripciones que se usarán para SEO y otros fines. diff --git a/exampleSite/content/users/index.es.md b/exampleSite/content/users/index.es.md new file mode 100644 index 00000000..1fc9ea46 --- /dev/null +++ b/exampleSite/content/users/index.es.md @@ -0,0 +1,73 @@ +--- +title: "Usuarios" +date: 2020-08-14 +draft: false +description: "Algunos ejemplos reales de Congo." +slug: "users" +tags: ["users", "sample"] +showDate: false +showAuthor: false +showReadingTime: false +showEdit: false +--- + +{{< lead >}} +Sitios web reales que se han creado con Congo. +{{< /lead >}} + +La lista a continuación es solo un puñado de sitios web creados con el tema Congo. Échales un vistazo para descubrir algunos excelentes ejemplos de lo que el tema puede hacer. + +| Website | Detalles | +| ---------------------------------------------------------------------- | ------------------------------- | +| [jamespanther.com](https://jamespanther.com) | Personal site - Theme author | +| [antoinesoetewey.com](https://antoinesoetewey.com/) | Personal site | +| [leif.io](https://leif.io/) | Personal site and Tech blog | +| [dr460nf1r3.org](https://dr460nf1r3.org/) | Personal site and Blog | +| [OCram85.com](https://ocram85.com) | Personal site and Blog | +| [mackiser.github.io](https://mackiser.github.io) | Personal site and Blog | +| [jamesmillner.dev](https://jamesmillner.dev) | Personal site and Blog | +| [jeremic.ca](https://jeremic.ca) | Personal site and Blog | +| [rohn.tech](https://rohn.tech) | Personal site | +| [klimafreundlicher-kochen.de](https://www.klimafreundlicher-kochen.de) | Food blog (in German) | +| [seyslee.github.io](https://seyslee.github.io) | Tech blog (in Korean) | +| [datanalyze.be](https://datanalyze.be/) | Professional site | +| [sneaky-potato.github.io](https://sneaky-potato.github.io/) | Professional site and Blog | +| [kelset.dev](https://kelset.dev) | Personal site | +| [docteurelsavancaster.com](https://docteurelsavancaster.com/) | Professional site | +| [ruihao-li.github.io](https://ruihao-li.github.io/) | Personal site and Blog | +| [phalanxhead.dev](https://phalanxhead.dev) | Personal site and Blog | +| [Bible Multi Apps](https://hotlittlewhitedog.gitlab.io/biblemulti) | Personal site and Blog | +| [Jh123x](https://jh123x.com/) | Personal site and Blog | +| [sforzando LLC. and Inc.](https://sfz.dev/) | Corporate site and Blog | +| [aidansmith.me](https://aidansmith.me/) | Personal Site | +| [nunocoracao.com](https://nunocoracao.com) | Personal site and Blog | +| [szegedkungfu.hu](https://balance-se.github.io/) | Sports association site | +| [jcransom.com](https://www.jcransom.com/) | Personal Site and Blog | +| [cbrincoveanu.com](https://www.cbrincoveanu.com/) | Personal site and Blog | +| [medical-humanities](https://medical-humanities.org) | Academic site | +| [boyersnet.com](https://boyersnet.com) | Personal site and Blog | +| [major.io](https://major.io) | Personal site and Blog | +| [bayas.dev](https://bayas.dev) | Personal site and Blog | +| [顾宇的博客](https://www.guyu.me/) | Personal Blog (in Chinese) | +| [cgutierr-zgz.github.io](https://cgutierr-zgz.github.io/) | Personal site and Tech blog | +| [adam.sr](https://adam.sr) | Personal site and Blog | +| [datadi.murgi.org](https://datadi.murgi.org) | Personal site and Blog | +| [shim.web.id](https://shim.web.id) | Personal Blog (in Indonesian) | +| [kpavlov.me](https://kpavlov.me) | Personal site and Blog | +| [pfisterer.dev](https://pfisterer.dev) | Personal site and Blog | +| [davidrothera.me](https://davidrothera.me) | Personal site and Blog | +| [ethantroy.com](https://ethantroy.com) | Personal Site and Blog | +| [sug.bitprism.net](https://sug.bitprism.net) | Personal Site and Blog | +| [arjuns.me](https://arjuns.me) | Personal Site and Blog | +| [statistix.be](https://statistix.be/) | Professional site | +| [sathyabh.at](https://sathyabh.at) | Personal Site and Blog | +| [leonidasv.com](https://leonidasv.com/) | Personal site and Blog | +| [andrew-jones.com](https://andrew-jones.com/) | Personal site and tech blog | +| [nikita.computer](https://nikita.computer/) | Personal site and tech blog | +| [blog.dejavu.moe](https://blog.dejavu.moe/) | Personal blog and weekly issues | +| [spiffyeight77.com](https://spiffyeight77.com/) | Personal blog | +| [Tomy's Blog](https://blog.tomy.me) | Personal site and Blog | +| [Beerjoa Blog](https://blog.beerjoa.dev) | Personal site and Blog | + + +**¿Usuaria de congo?** Para agregar tu sitio a esta lista, [haz un pull request](https://github.com/jpanther/congo/blob/dev/exampleSite/content/users/index.md).