jekyll-multiple-languages-plugin icon indicating copy to clipboard operation
jekyll-multiple-languages-plugin copied to clipboard

I18n support for Jekyll and Octopress

Results 80 jekyll-multiple-languages-plugin issues
Sort by recently updated
recently updated
newest added

I'm following the readme instructions and trying to create an about page for different languages. My goal here is to have different titles for "about" pages in different languages. ---...

Hi! Need your help in how to include different translated strings into the Front Matter Use case: say I have an excerpt field I need to define. using `excerpt: {%...

If `exclude_from_localizations: [ "js", "img" , "fonts" , "css" ]` is included in my _config.yml, then when I visit the non-default language page, errors will show up like: [2019-08-14 03:58:09]...

How to configure internal links e.g. [Foo]({% post_url 2020-01-01-foo-bar %}) to target valid language version? Now rendered link does not contain language indicator. I can do some workaround of course,...

I am not able to use the plugin to translate 404 pages. My 404.md page in root: ``` --- layout: page title: Feeling Lost permalink: /404.html --- {% tf 404/404.md...

Hi, I created a template like this : id: about layout: page title: pages.about.title display-title: true permalink: /about button: true order: 3 {% translate_file pages/about.md %} My problem is that...

I wonder if is already supported to have a chain of translations that would go from the most specific "en-GB" to "en" for finding translations.

It seems that we can not use string interpolation. I would like to do the following: ``` key: "{{what}} is {{how}}" ``` like that ```{% t key, { what: "Code",...

We observed that `jekyll serve` and `jekyll build` seem to behave differently in regards to `site.translations`. Whereas the `serve` process seems to build a hash from all available languages, then...

My website has the portuguese (default: `/`) and english (`/en/`) languages. I want to have an page `/hello/` only (and not `/en/hello/` also). So I created the `hello.md` file on...