diff --git a/_data/theme.yml b/_data/theme.yml index e23250b..484bd34 100644 --- a/_data/theme.yml +++ b/_data/theme.yml @@ -23,6 +23,21 @@ t: of: "of" min_read: "min read" present: "Present" + cv_awards: "Awards" + cv_summary_contact: "Contact" + cv_summary_contact_email: "Email" + cv_summary_contact_phone: "Phone" + cv_summary_contact_website: "Website" + cv_location: "Location" + cv_education: "Education" + cv_education_courses: "Courses" + cv_interests: "Interests" + cv_languages: "Languages" + cv_publications: "Publications" + cv_references: "References" + cv_skills: "Skills" + cv_volunteer: "Volunteer" + cv_work: "Work" # Google Fonts google_fonts: diff --git a/_includes/cv/awards.html b/_includes/cv/awards.html index 81cc13a..3b34e6b 100644 --- a/_includes/cv/awards.html +++ b/_includes/cv/awards.html @@ -1,7 +1,7 @@ {% if cv.awards %}
-

Awards

+

{{ site.data.theme.t.cv_awards | default: 'Awards' }}

diff --git a/_includes/cv/basics.html b/_includes/cv/basics.html index b40f698..d704e25 100644 --- a/_includes/cv/basics.html +++ b/_includes/cv/basics.html @@ -6,18 +6,18 @@
-

Contact

+

{{ site.data.theme.t.cv_summary_contact | default: 'Contact' }}

{% if cv.basics.email %} - + {% endif %} {% if cv.basics.phone %} -
Phone {{ cv.basics.phone }}
+
{{ site.data.theme.t.cv_summary_contact_phone | default: 'Phone' }} {{ cv.basics.phone }}
{% endif %} {% if cv.basics.website %} - +
{{ site.data.theme.t.cv_summary_contact_website | default: 'Website' }} {{ cv.basics.website }}
{% endif %} {% if cv.basics.profiles %} {% for p in cv.basics.profiles %} @@ -43,7 +43,7 @@ {% if cv.basics.location %}
-

Location

+

{{ site.data.theme.t.cv_location | default: 'Location' }}

diff --git a/_includes/cv/education.html b/_includes/cv/education.html index df56572..428e3ca 100644 --- a/_includes/cv/education.html +++ b/_includes/cv/education.html @@ -1,7 +1,7 @@ {% if cv.education %}
-

Education

+

{{ site.data.theme.t.cv_education | default: 'Education' }}

@@ -23,7 +23,7 @@
{{ e.area }}{% if e.studyType %}{{ e.studyType | prepend: ', ' }}{% endif %}{% if e.gpa %}{{ e.gpa | prepend: ' (' | append: ' GPA)' }}{% endif %}
{% endif %} {% if e.courses %} -
Courses
+
{{ site.data.theme.t.cv_education_courses | default: 'Courses' }}
    {% for course in e.courses %}
  • {{ course }}
  • diff --git a/_includes/cv/interests.html b/_includes/cv/interests.html index 692ecf2..c2d7e80 100644 --- a/_includes/cv/interests.html +++ b/_includes/cv/interests.html @@ -1,7 +1,7 @@ {% if cv.interests %}
    -

    Interests

    +

    {{ site.data.theme.t.cv_interests | default: 'Interests' }}

    diff --git a/_includes/cv/languages.html b/_includes/cv/languages.html index 19dc3d4..94207c0 100644 --- a/_includes/cv/languages.html +++ b/_includes/cv/languages.html @@ -1,7 +1,7 @@ {% if cv.languages %}
    -

    Languages

    +

    {{ site.data.theme.t.cv_languages | default: 'Languages' }}

    diff --git a/_includes/cv/publications.html b/_includes/cv/publications.html index e1813bb..d81d07e 100644 --- a/_includes/cv/publications.html +++ b/_includes/cv/publications.html @@ -1,7 +1,7 @@ {% if cv.publications %}
    -

    Publications

    +

    {{ site.data.theme.t.cv_publications | default: 'Publications' }}

    diff --git a/_includes/cv/references.html b/_includes/cv/references.html index df3dc4c..29ad9a2 100644 --- a/_includes/cv/references.html +++ b/_includes/cv/references.html @@ -1,7 +1,7 @@ {% if cv.references %}
    -

    References

    +

    {{ site.data.theme.t.cv_references | default: 'References' }}

    diff --git a/_includes/cv/skills.html b/_includes/cv/skills.html index 38ec84d..1504ae4 100644 --- a/_includes/cv/skills.html +++ b/_includes/cv/skills.html @@ -1,7 +1,7 @@ {% if cv.skills %}
    -

    Skills

    +

    {{ site.data.theme.t.cv_skills | default: 'Skills' }}

    diff --git a/_includes/cv/volunteer.html b/_includes/cv/volunteer.html index 5a2d030..5e9b4c3 100644 --- a/_includes/cv/volunteer.html +++ b/_includes/cv/volunteer.html @@ -1,7 +1,7 @@ {% if cv.volunteer %}
    -

    Volunteer

    +

    {{ site.data.theme.t.cv_volunteer | default: 'Volunteer' }}

    diff --git a/_includes/cv/work.html b/_includes/cv/work.html index cffb968..bb1f79c 100644 --- a/_includes/cv/work.html +++ b/_includes/cv/work.html @@ -1,7 +1,7 @@ {% if cv.work %}
    -

    Work

    +

    {{ site.data.theme.t.cv_work | default: 'Work' }}