21 Aug 2026
Jekyll-Polyglot 1.14.0 è stato rilasciato! Questa versione estende il supporto alle lingue regionali, corregge casi limite nei redirect e aggiunge una nuova opzione di compatibilità con i plugin Jekyll che non supportano il parallelismo.
supporto per zh-TW e pt-PT
- PR #316: Il sito web di Polyglot ora supporta il cinese tradizionale (
zh-TW) e il portoghese europeo (pt-PT) come lingue del sito. Il sito di documentazione di Polyglot ora offre pagine tradotte per entrambe, accanto alle traduzioni esistenti zh-CN e pt-BR. Come sempre, queste traduzioni sono state realizzate con l’aiuto dell’IA; correzioni e miglioramenti sono benvenuti!
correzioni ai prefissi duplicati di redirect_from
- PR #317: Correzioni al modo in cui Polyglot gestisce il frontmatter
redirect_from con il plugin jekyll-redirect-from. I redirect definiti dall’utente ora vengono preservati invece di essere sovrascritti, correttamente limitati alla lingua corrispondente, e i redirect già dotati di prefisso di lingua non ricevono più un doppio prefisso — così un redirect come /fr/old-page non diventerà /fr/fr/old-page.
serial_default_lang per i plugin che non supportano il parallelismo
- PR #310: @rathboma ha contribuito con la nuova opzione
serial_default_lang. Quando parallel_localization è abilitato, Polyglot crea un processo per lingua tramite fork, il che può causare race condition con plugin come jekyll-assets che inizializzano cache condivise al primo utilizzo. Impostare serial_default_lang: true fa sì che Polyglot costruisca prima la lingua predefinita nel processo padre, prima di creare gli altri processi: in questo modo tali plugin si inizializzano esattamente una volta e i processi delle lingue ereditano lo stato già pronto. Se le build parallele di Polyglot sono mai entrate in conflitto con un altro plugin Jekyll, questa opzione può aiutare a evitare conflitti.
aggiornamenti delle dipendenze ruby
Questa versione mantiene inoltre aggiornate le dipendenze ruby.
13 May 2026
Jekyll-Polyglot 1.13.0 has been released! This release is made possible thanks to support and many contributions from @rathboma and Beekeeper Studio.
better hreflang generation
- PR #282: @rathboma merged improvements to hreflang tag generation, adding a fallback option for unconfigured languages. This improves SEO and correctness of the generated headers on multilingual sites.
warnings on mismatched language codes
-
PR #287: @rathboma added build-time warnings when a post’s lang: value does not match any configured site language. Language matching is now case-insensitive, so EN and en are treated the same.
-
PR #290: @rathboma filtering now properly excludes posts written in languages that are not in the languages: config, preventing unconfigured content from leaking into builds.
localize Netlify _redirects
- PR #285: @rathboma added a new
localize_redirects option. When enabled, Polyglot automatically generates language-prefixed copies of the Netlify _redirects rules, so a redirect like /github also works for /fr/github, /de/github, and so on. See the SEO recipes page for setup details.
new liquid variables for translation status
- PR #305: Two new liquid variables —
page.missing_languages and page.available_languages — let your templates see which languages a page has been translated into, and which are still missing. Useful for building richer language switchers and sidebars.
new language translations
- PR #303: The Polyglot documentation site now has Ukrainian (uk) and Hindi (hi) translations, with help from AI-assisted translation. Corrections are welcome!
- PR #297: @manabu-nakamura contributed corrections to the Japanese (ja) site translations. Thank you!
- PR #298: Polyglot now ships with first-class engineering support for GitHub Copilot, Claude Code, and the shared
AGENTS.md convention. AI is part of the workflow now, and contributions made with these tools are welcome.
- Additional CI quality checks were added, including htmlproofer and rubocop adjustments.
The documentation site sidebar now flags pages that do not yet have a translation in the active language, making gaps easier to spot for readers and contributors.
Thank you to @rathboma and everyone who contributed to this release!
31 Jan 2026
Jekyll-Polyglot 1.12.0 è stato rilasciato! Questa versione si concentra sul miglioramento della gestione dei reindirizzamenti e include diversi contributi della community.
miglioramenti dei reindirizzamenti
Questa versione include importanti miglioramenti su come funzionano i reindirizzamenti con Polyglot:
-
PR #275: Preservazione dei tag di ancoraggio nei reindirizzamenti - grazie a una soluzione di @GruberMarkus, gli URL di reindirizzamento ora preservano correttamente i tag di ancoraggio, garantendo che gli utenti arrivino esattamente dove intendevano.
-
PR #293: Supporto reindirizzamento sottolingue per il plugin jekyll-redirect-from - suggerito da @rathboma, Polyglot ora delimita correttamente il frontmatter redirect_from attraverso le sottolingue, prevenendo reindirizzamenti duplicati e garantendo un routing corretto per le pagine in lingue non predefinite.
- PR #283: Nuova variabile
page.rendered_lang - contribuita da @rathboma, questa nuova variabile liquid ti permette di rilevare quando una pagina viene renderizzata come fallback. Quando page.rendered_lang != site.active_lang, sai che il contenuto della pagina non è ancora stato tradotto.
La pagina /about è stata aggiornata con istruzioni su come utilizzare al meglio questa variabile liquid di convenienza page.rendered_lang.
nuovo supporto linguistico
- PR #280: Il supporto per italiano e turco è stato aggiunto al sito di documentazione di Polyglot, espandendo la nostra portata multilingue.
Diversi membri della community hanno contribuito miglioramenti al progetto:
-
PR #277: Definizioni di rich text della sidebar aggiornate, migliorando la presentazione multilingue del sito.
-
PR #288: Stringhe di rich text giapponesi contribuite da @manabu-nakamura, migliorando l’esperienza della lingua giapponese.
Un ringraziamento speciale a @PanderMusubi per la demo jekyll-minimal-mistakes-polyglot, che mostra come integrare Polyglot con il popolare tema Minimal Mistakes.
Grazie a tutti i contributori che hanno reso possibile questa versione!
20 Sep 2025
Jekyll Polyglot 1.11.0 has been released. It has fixes for tricky bugs that have been challenging to solve until recently. This release is possible thanks to fellow contributors and users like you.
fixed conflicts with jekyll themes
Other jekyll themes such as miminal-mistakes or chirpy use glob patterns in exclude: configurations which would previously conflict with polyglot processing websites with url relativization. @mattions contributed a fix to regex.escape these values before being applied to the relativization regexes.
This adjustment should help with using polyglot out-of-the-box with other common jekyll themes.
other miscellaneous fixes
support for japanese and arabic
The polyglot website now has translated support versions in arabic and japanese. These site translations were made with the help of AI ; if anything is mistranslated please contribute better corrections!
07 Jul 2025
Jekyll-Polyglot 1.10 is now available. It has vast improvements and changes to the i18n_headers liquid plugin for SEO improvements, and minor adjustments for parallel build idempotency. Community Contributions and Vibe Coding helped with a large portion of these release features, testing and blog post.
This version of polyglot now requires ruby >= 3.1 , which may break in build systems.
the i18n_headers plugin now has extended capabilities as part of this release:
- it will add
<link rel="canonical" ...> for each page language, so indexing is unique across sites.
- it will add
<link rel="alternate" hreflang="x-default" ...> to point to default language version of a site, when no matching language is requested by the browser.
- it will correctly define
<link rel="alternate" hreflang="..." > for pages and posts in collections with custom permalinks.
- the default url will now include the
site.baseUrl if defined
this additionally fixes a bug noticed that caused absolute url relativization to mangle these tags unintentionally.
vibe-coded contributions
Using certain vibe coding tools have helped find, measure and verify bug fixes and features for this release.
This is a new approach for software development, and it created advanced ruby tests against jekyll plugin code running against many built site languages.
The tests written with vibe coding helped ensure the code coverage remained high, and complex features could be added with confidence. Ensuring the test automation was in place ensured tricky features could be built correctly.
Additionally vibe coding tools helped translate this blog post into many languages.
Jekyll-Polyglot has been supported by humans. Human language documentation is contributed by humans who want to see this plugin documented in their native tongue. Humans contributing bug fixes and documentation are what have helped this plugin reach thousands of downloads a release. AI assisted programming, in my hands or yours, will shape the software we use, and in the many languages we write and speak.
ruby >= 3.1 required
Ongoing security updates to jekyll-polyglot build-time dependencies required a major version upgrade to ruby 3.1 . This may affect build systems that build their docs with jekyll-polyglot. But now is a good time to upgrade to the latest ruby major by now. Speak up if these changes cause complications with jekyll builds.