You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
i have installed the plugin in my site and created folder _18n and added en.yml and included the {% t global.english %} its doesnt recognize the t tag in jekyll 3.8.5
The text was updated successfully, but these errors were encountered:
For those who come to this issue and find that bundle install --force does not help, another thing you want to make sure is that you added the gem "jekyll-multiple-languages-plugin" line inside the following section in your Gemfile:
group :jekyll_plugins do
(...)
end
For instance, this will work as expected:
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-multiple-languages-plugin"
end
Whereas this will produce the dreaded Liquid syntax error (line ##): Unknown tag 't':
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
end
gem "jekyll-multiple-languages-plugin"
At least, that's what did the trick for me...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
i have installed the plugin in my site and created folder _18n and added en.yml and included the {% t global.english %} its doesnt recognize the t tag in jekyll 3.8.5
The text was updated successfully, but these errors were encountered: