diff --git a/src/components/EnvListItem.vue b/src/components/EnvListItem.vue
index 56fd79f..ab49cb8 100644
--- a/src/components/EnvListItem.vue
+++ b/src/components/EnvListItem.vue
@@ -1,8 +1,8 @@
{{ title }}:
- {{content}}
- {{content}}
+ {{ content }}
+ {{ content }}
diff --git a/src/components/EnvTitle.vue b/src/components/EnvTitle.vue
index 2cc208f..2646f5b 100644
--- a/src/components/EnvTitle.vue
+++ b/src/components/EnvTitle.vue
@@ -1,6 +1,6 @@
- {{ title }}
+ {{ $t(title) }}
diff --git a/src/components/Experience.vue b/src/components/Experience.vue
index 1b237b5..4045181 100644
--- a/src/components/Experience.vue
+++ b/src/components/Experience.vue
@@ -1,13 +1,15 @@
-
-
-
-
+
+
+
+
+
+
{{ formatDate(begin) }} - {{ formatDate(end) }} | {{location}}
-
{{title}} - {{company}}
-
{{description}}
+
{{ $t(title) }} - {{company}}
+
{{ $t(description) }}
@@ -47,7 +49,7 @@ export default {
"Jul", "Aug", "Sept", "Oct", "Nov", "Dec"
];
const dateFormat = new Date(date)
- return monthNames[dateFormat.getMonth()] + " " + dateFormat.getFullYear()
+ return date === 'Today' ? 'Today' : monthNames[dateFormat.getMonth()] + " " + dateFormat.getFullYear()
}
}
}
diff --git a/src/components/Formation.vue b/src/components/Formation.vue
index a41eb8b..2aef62d 100644
--- a/src/components/Formation.vue
+++ b/src/components/Formation.vue
@@ -1,13 +1,15 @@
-
-
-
-
+
+
+
+
+
+
{{ formatDate(begin) }} - {{ formatDate(end) }} | {{location}}
-
{{title}}
-
{{description}}
+
{{ $t(title) }}
+
{{ $t(description) }}
diff --git a/src/components/Header.vue b/src/components/Header.vue
index b86d636..ca883bf 100644
--- a/src/components/Header.vue
+++ b/src/components/Header.vue
@@ -14,7 +14,7 @@
🇫🇷
- 🇺🇸
+ 🇬🇧
diff --git a/src/components/HomeLink.vue b/src/components/HomeLink.vue
index 848cbdb..cb88199 100644
--- a/src/components/HomeLink.vue
+++ b/src/components/HomeLink.vue
@@ -5,10 +5,10 @@
:class="color ? 'hover:bg-' + color + '-400 dark:hover:bg-' + color + '-600 active:bg-' + color + '-400 dark:active:bg-' + color + '-600' : ''">
- {{ title }}
+ {{ $t(title) }}
-
{{ description }}
+
{{ $t(description) }}
{{formatDate}}
-
{{reading_time}} min read
+
{{reading_time}} {{ $t('post_reading_time') }}
{{likes}} ❤
@@ -27,7 +27,7 @@
class="my-1 md:my-0 ml-2 py-1 px-2 rounded font-semibold"
:class="lightBg ? 'bg-black text-white':'bg-white text-black'"
>
- #{{tag}}
+ #{{ $t(tag) }}
diff --git a/src/components/Service.vue b/src/components/Service.vue
index e9b19e6..7550589 100644
--- a/src/components/Service.vue
+++ b/src/components/Service.vue
@@ -1,7 +1,16 @@
-