-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathi18n.js
85 lines (84 loc) · 1.88 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var i18n = {
en: {
work: 'Work',
workSub: '',
projects: 'Projects',
projectsSub: '',
volunteer: 'Volunteer',
volunteerSub: '',
education: 'Education',
awards: 'Awards',
awardsSub: '',
publications: 'Publications',
skills: 'Skills',
languages: 'Languages',
interests: 'Interests',
references: 'References',
summary: 'Summary',
summarySub: '',
present: 'Present',
link: 'Link'
},
zh: {
work: '工作',
workSub: '经历',
projects: '项目',
projectsSub: '经历',
volunteer: '志愿',
volunteerSub: '经历',
education: '教育',
educationSub: '经历',
awards: '曾获',
awardsSub: '奖项',
publications: '作品',
skills: '技能',
languages: '语言',
interests: '兴趣',
references: '推荐',
summary: '自我',
summarySub: '评价',
present: '至今',
link: '链接'
},
fr: {
work: 'Expériences',
workSub: '',
projects: 'Projets',
projectsSub: '',
volunteer: 'Expériences de bénévolat',
volunteerSub: '',
education: 'Formation',
awards: 'Récompences',
awardsSub: '',
publications: 'Publications',
skills: 'Compétences',
languages: 'Langues',
interests: 'Interêts',
references: 'Références',
summary: 'A propos',
summarySub: '',
present: 'Aujourd\'hui',
link: 'Lien'
},
es: {
work: 'Experiencia profesional',
workSub: '',
projects: 'Proyectos',
projectsSub: '',
volunteer: 'Voluntariado',
volunteerSub: '',
education: 'Educación',
awards: 'Recompensas',
awardsSub: '',
publications: 'Publicaciones',
skills: 'Habilidades',
languages: 'Idiomas',
interests: 'Centros de interés',
references: 'Referencias',
summary: 'En breve',
summarySub: '',
present: 'Hoy',
link: 'Enlace'
},
}
module.exports = i18n