Плагин поддержки i18n для Jekyll что делает поддержку нескольких языков быстрой и интуитивно понятной, для больших и маленьких блогов. Сделано в @untra.
Полиглот Релиз для версии version 1.5.0, с новой поддержкой поэтапной сборки по логическому процессору..
Более быстрые сборки в шахматном порядке
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.
Разные обновления
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 расширить ваш веб-сайт на новые территории и рынки?
У вас есть предложения, предложения или исправления, которые вы хотели бы внести?
Хотите, чтобы этот веб-сайт был переведен на ваш родной язык?
Я ищу добровольцев, которые хотели бы увидеть Jekyll-Polyglot homepage представлены на вашем родном языке! Если вы найдете это программное обеспечение полезным и хотите, чтобы ваш язык был представлен на нем, просто свяжитесь с github issues.
This release provides a new liquid block tag {% static_href %}href=”…”{% endstatic_href %} which can be used to create href attributes in anchor tags that are not relativized by Polyglot.
Jekyll-Polyglot is fairly greedy and naive in it’s relativization, and so if you want a url that is explicitly static (such as for making a language switcher, hint hint), this liquid tag will help you construct that unmangled href=”…” tag in anchor elements.
Exclusive site language generation
Polyglot 1.4.0 adds support for lang-exclusive: [ ] frontmatter in documents. If added to a document, this frontmatter will limit generation of the document to that specific language.
---lang-exclusive:['ru']---
This is a way to control which languages may see a document, even if that document may not have an equivalent in the default language site.
Renaming a few 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 %}
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.
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.