forked from sudweb/2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n_filter.rb
37 lines (33 loc) · 876 Bytes
/
i18n_filter.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module Jekyll
module I18NFilter
@@locale = nil
@@translations = []
def get_locale
if @@locale.nil?
@@locale = Jekyll.configuration({})['locale'] || "fr_FR"
end
@@locale
end
def get_translations
if @@translations.empty?
@@translations = Jekyll.sites[0].data['translations']
end
@@translations
end
def t(input, given_locale = nil)
if given_locale.nil?
given_locale = get_locale
end
if given_locale == get_locale
input
else
translations = get_translations[given_locale]
raise 'Translations not provided' unless translations
translation = translations[input]
raise "Translation not provided: #{input}" unless translation
translation
end
end
end
end
Liquid::Template.register_filter(Jekyll::I18NFilter)