Version polyglotte pour la version version 1.5.0, avec une nouvelle prise en charge des builds échelonnés par processeur logique.
Constructions échelonnées plus rapides
This release modifies polyglot to start builds only after it confirms there is a cpu core ready to receive the build thread. This makes jekyll site builds run much faster on machines building more languages than with logical cpus ready to process the builds, preventing machine thrash and streamlining builds for large sites.
Mises à jour diverses
Added Links to the github source code on every page on the site from the sidebar.
Updated repo readme with new details about logical cpu usage.
Polyglot continuous integration now provided by CircleCI.
Polyglot a-t-il aidé votre site Web à se développer sur de nouveaux territoires et marchés ?
Avez-vous une suggestion, une contribution ou une correction de bogue que vous aimeriez fournir ?
Vous voulez voir ce site Web traduit dans votre langue maternelle ?
Bonus patch release of Polyglot version 1.4.1 is out!
small fix for i18n_headers
Fallout from cleanup led to a small fix and some tests
say Привет to our russian friends
Russian language site pages have been added!
Want to see your language featured?
I am looking for any volunteers that would like to see the Jekyll-Polyglot homepage represented in your language of origin! If you find this software helpful and want to see your language represented, just reach out on the github issues.
Cette version fournit un nouveau liquid block tag {% static_href %}href=”…”{% endstatic_href %} qui peut être utilisé pour créer href attributes in anchor tags qui ne sont pas relativisés par Polyglot.
Jekyll-Polyglot est assez gourmand et naïf dans sa relativisation, et donc si vous voulez une url implicitement statique (comme pour faire un sélecteur de langue, au fait), ce liquid tag will vous aider à construire ce démêlé href=”…” tag in anchor elements.
Génération exclusive de langage de site
Polyglot 1.4.0 ajoute le support pour lang-exclusive: [ ] frontmatter dans les documents. S’il est ajouté à un document, ce frontmatter limitera la génération du document à cette langue spécifique.
---lang-exclusive:['fr']---
C’est un moyen de contrôler quelles langues peuvent voir un document, même si ce document n’a pas d’équivalent dans le site de langue par défaut.
Renommer quelques-uns 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 %}
Vous voulez voir votre langue en vedette?
Je recherche des volontaires qui aimeraient voir le Jekyll-Polyglot homepage représenté dans votre langue d’origine! Si vous trouvez ce logiciel utile et que vous souhaitez voir votre langue représentée, contactez simplement le github issues.
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.