jekyll-multiple-languages-plugin
jekyll-multiple-languages-plugin copied to clipboard
I18n support for Jekyll and Octopress
Hello 😃 I have Jekyll 3.7.2 installed and I'm trying to get started with multiple languages plugin, but after doing ``` gem install jekyll-multiple-languages-plugin ``` When I try to do,...
Hi I used localeapp to pull my translation, it adding root key to en.yml like this en: key_1: xx key_2: xx is there away to make {%t key_1%} work if...
``` nowaker@nwkr-desktop ~/projekty/dreamhost/dreamhost-com (git)-[i18n-v2] % x jekyll doctor --trace Configuration file: /home/nowaker/projekty/dreamhost/dreamhost-com/_config.yml bundler: failed to load command: jekyll (/home/nowaker/.rvm/gems/ruby-2.6.3/bin/jekyll) TypeError: no implicit conversion of nil into String /home/nowaker/.rvm/gems/ruby-2.6.3/gems/jekyll-multiple-languages-plugin-1.6.0/lib/jekyll-multiple-languages-plugin.rb:209:in `+' /home/nowaker/.rvm/gems/ruby-2.6.3/gems/jekyll-multiple-languages-plugin-1.6.0/lib/jekyll-multiple-languages-plugin.rb:209:in...
The i18n plugin [untra/polyglot](https://github.com/untra/polyglot) uses forking to speed up language builds significantly: https://github.com/untra/polyglot/blob/d1a5c8599be53ed859e3f5e3fa43cd094c6936a6/lib/jekyll/polyglot/patches/jekyll/site.rb#L23
hreflang is used by search engines to define language of the particular site, so adding it to every generated page will improve it's SEO.
Currently html documents are not well readable because all content is hidden behind keys: `{% t some.key %}` How to move default language to a template files and only other...
Hello, Example is [here](https://plavi-projekt.github.io/) with code [here](https://github.com/plavi-projekt/plavi-projekt.github.io/blob/lang_plugin/_layouts/default.html#L39) As you can see, the link to the root of the site (*Blue Project* in English, left-most link in the banner) works well...
This code isn't friendly for monkey-patching: ```ruby Jekyll::Hooks.register :site, :pre_render do |site, payload| # non # monkeypatch-friendly # code # here... # :-( end ``` This one is: ```ruby def...
This is a fantastic plugin - thank you so much for creating it! One thing that I was unable to figure out is how to configure the plugin so that...