-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
37 lines (37 loc) · 863 Bytes
/
i18n.js
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.exports = {
locales: ['en', 'de', 'ja'],
defaultLocale: 'en',
pages: {
'*': [
'slug',
'common',
'copyright',
'bug-report',
'more-posts',
'404',
'post-original',
'footer',
'skip-link',
'header',
'main-navigation',
'second-navigation',
'mobile-nav',
'reading-time',
'category',
'video',
'newsletter',
],
'/all-posts': ['all-posts'],
'/about': ['about', 'team'],
'/accessibility-statement': ['accessibility-statement'],
'/accessibility': ['accessibility'],
'/documents': ['documents'],
'/events': ['events'],
'/news': ['news'],
'/qa-testing': ['qa-testing'],
'/sitemap': ['sitemap'],
'/ux-design': ['ux-design'],
'/ux-research': ['ux-research'],
'/web-development': ['web-development'],
},
};