Skip to content

Commit 1af2ebe

Browse files
committed
Fix resume i18n
1 parent 395b895 commit 1af2ebe

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

i18n/de.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ other = "Berufserfahrung"
3737
[education]
3838
other = "Bildung"
3939

40+
[skills]
41+
other = "Fähigkeiten"
42+
4043
[interestsHobbies]
4144
other = "Interessen und Hobbies"
4245

i18n/en.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ other = "Professional Experience"
3737
[education]
3838
other = "Education"
3939

40+
[skills]
41+
other = "Skills"
42+
4043
[interestsHobbies]
4144
other = "Interests & Hobbies"
4245

layouts/_default/resume.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h2 class="section-title">Social Media</h2>
116116

117117
{{ with .Params.experience }}
118118
<div class="section">
119-
<h2 class="section-title">Professional Experience</h2>
119+
<h2 class="section-title">{{ i18n "professionalExperience" }}</h2>
120120
{{ range . }}
121121
<div class="experience-item">
122122
<h3 class="job-title font-weight-bold">{{ .title }}</h3>
@@ -134,7 +134,7 @@ <h3 class="job-title font-weight-bold">{{ .title }}</h3>
134134

135135
{{ with .Params.education }}
136136
<div class="section">
137-
<h2 class="section-title">Education</h2>
137+
<h2 class="section-title">{{ i18n "education" }}</h2>
138138
{{ range . }}
139139
<div class="education-item">
140140
<h3 class="degree">{{ .degree }}</h3>
@@ -150,7 +150,7 @@ <h3 class="degree">{{ .degree }}</h3>
150150

151151
{{ with .Params.skills }}
152152
<div class="section">
153-
<h2 class="section-title mb-0">Skills</h2>
153+
<h2 class="section-title mb-0">{{ i18n "skills" }}</h2>
154154
<ul class="skills">
155155
{{ range . }}
156156
<li class="skill-category">

0 commit comments

Comments
 (0)