Polyglot 1.4.0

Polyglot version 1.4.0 is out!

gem install jekyll-polyglot

href estático no relativizado

Esta versión proporciona una nueva liquid block tag {% static_href %}href=”…”{% endstatic_href %} que se puede utilizar para crear href attributes in anchor tags que no están relativizados por Polyglot.

Jekyll-Polyglot es bastante codicioso e ingenuo en su relativización, por lo que si desea una URL que sea implícitamente estática (como para hacer un cambiador de idioma, por cierto), esta liquid tag will Ayudarte a construir ese desenredado href=”…” tag in anchor elements.

Generación de idioma de sitio exclusivo

Polyglot 1.4.0 agrega soporte para lang-exclusive: [ ] frontmatter en documentos. Si se agrega a un documento, este frontmatter limitará la generación del documento a ese idioma específico.

---
lang-exclusive: ['es']
---

Esta es una forma de controlar qué idiomas pueden ver un documento, incluso si ese documento puede no tener un equivalente en el sitio de idioma predeterminado.

Cambiar el nombre de algunos liquid tags

The {% static_href %} tag is also available as {% Static_Href %} , and the existing {% I18n_Headers %} tag now can be called as {% i18n_headers %}

¿Quieres ver tu idioma destacado?

Je recherche des volontaires qui aimeraient voir le Jekyll-Polyglot homepage representado en su idioma de origen! Si encuentra útil este software y desea ver su idioma representado, simplemente comuníquese con el github issues.

Polyglot 1.3.3

Polyglot version 1.3.3 is out! It includes a minor fix for when running jekyll serve --incremental with polyglot installed on a fresh build.

gem install jekyll-polyglot

This release was made possible with the support of the following github user!

Polyglot 1.3.2

Polyglot version 1.3.2 has been released! Give it a try!

gem install jekyll-polyglot

This release was made possible with the support of the following github user

lang_from_path setting to derive document lang from relative path

This release adds a new boolean configuration setting lang_from_path. When set to true, this option tells polyglot to derive the base language from a matching subpath if the lang frontmatter is not set. This setting works well in conjunction with other translation maintenance tools such as po4a.

relative and absolute url relativization improved logic

excluded_from_localization files will have trailing slashes added to their paths if they are directories. In addition, these files will be matched differently in the relativize and absolute url regex matchers. This will improve the accuracy of url relativization based on user feedback.

Polyglot 1.3.0

¡Se ha lanzado una nueva versión de Polyglot! ¡Darle una oportunidad!

gem install jekyll-polyglot

Esta versión fue posible gracias al soporte de los siguientes usuarios de github:

Combinar recursivamente lenguaje específico site.data

El contenido específico del idioma definido en el directorio site.data ahora se fusionará recursivamente, de modo que active_lang contenido tiene prioridad sobre default_lang contenido, tiene prioridad sobre sin contenido de idioma. (#59)

Archivos sin asignar a la default_lang raíz del sitio

Si default_lang no está definido en languages, esto garantiza que los archivos de idioma sin asignar (como aquellos excluidos de la localización) se escriban todavía en la raíz del sitio. (#65)

Mejoras de rendimiento y correcciones para i18n_headers tag

El procesamiento de documentos es ahora más rápido y se realizaron correcciones en el i18n_headers cuando se define el site.url. (#67)

Teclas personalizadas para active_lang carga del sitio

Esto permite que las claves personalizadas se definan con el active_lang, dando interoperabilidad entre polyglot y otros plugins y themes (#68)

Polyglot 1.2.4

A new version of Polyglot has been released! Give it a try!

gem install jekyll-polyglot

This release was made possible due to the kind support of github user vlsi, who helped fix a few bugs and added new features:

Support translation of absolute URLs

Polyglot will now translate your site.url, so absolute urls will now get translated as well.

Translation of all Jekyll Collections

Jekyll collections are a fairly new feature. This update translates all registered collections, not just site posts and pages.

Use language-specific _data for site.data rich text when site.data[:lang] is present

Top level rich text organized by language will be assigned to the site.data when building. Before, when rendering rich text, you would have to use:

{{ site.data[site.active_lang].richTextString }}

Now rich text can be rendered with just:

{{ site.data.richTextString }}

The I18n_Headers tag now defaults to site.url when left blank

Users can now use

{% I18n_Headers %}

without specifying a url, defaulting it to your site.url