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

Polyglot 1.2.0

Una nueva versión de Políglota ha sido puesto en libertad! ¡Darle una oportunidad!

gem install jekyll-polyglot

y la lista de Jekyll-polyglot entre sus gemas que aparecen en su _config.yml

Se trata en su mayoría bases para prepararse para nuevas características y una mejor gestión de contenidos multilingües. Se tiene una nueva característica:

{% I18n_Headers %}

Ponga esta etiqueta con la URL de su sitio web en su head.html incluye archivos para obtener el máximo previsto por SEO tener un sitio web multilingüe. Es el mismo que el siguiente código de líquido:

<meta http-equiv="Content-Language" content="{{site.active_lang}}">
<link rel="alternate"
      hreflang="{{site.default_lang}}"
      href="http://yoursite.com{{page.permalink}}" />
{% for lang in site.languages %}
{% if lang == site.default_lang %}
  {% continue %}
{% endif %}
<link rel="alternate"
    hreflang="{{lang}}"
    href="http://yoursite.com/{{lang}}{{page.permalink}}" />
{% endfor %}

En su cabecera, pero más rápido y más limpio! Para obtener más información, ver la página