forked from sudweb/2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslations.rb
45 lines (42 loc) · 1.21 KB
/
translations.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
38
39
40
41
42
43
44
45
# https://www.scandio.de/blog/en/2017/11/jekyll-performance
module Jekyll
class Translation < Generator
safe true
priority :high
def generate(site)
translations = {}
site.pages.each do |page|
name = page.data['i18n-key']
locale = page.data['locale']
next unless name
if translations.key?(name)
translations[name].each do |translation|
if translation.data['locale'] != locale
page.data['translation'] = translation
translation.data['translation'] = page
end
end
else
translations[name] = []
end
translations[name].push(page)
end
site.posts.docs.each do |post|
name = post.data['i18n-key']
locale = post.data['locale']
next unless name
if translations.key?(name)
translations[name].each do |translation|
if translation.data['locale'] != locale
post.data['translation'] = translation
translation.data['translation'] = post
end
end
else
translations[name] = []
end
translations[name].push(post)
end
end
end
end