diff --git a/flatisfy/web/js_src/i18n/en/index.js b/flatisfy/web/js_src/i18n/en/index.js index 73f11d0..b2906d9 100644 --- a/flatisfy/web/js_src/i18n/en/index.js +++ b/flatisfy/web/js_src/i18n/en/index.js @@ -41,12 +41,15 @@ export default { 'utilities_included': '(utilities included)', 'utilities_excluded': '(utilities excluded)', 'Description': 'Description', + 'First_posted' : 'First posted', 'Details': 'Details', 'Metadata': 'Metadata', 'postal_code': 'Postal code', 'nearby_stations': 'Nearby stations', 'Times_to': 'Times to', 'Location': 'Location', + 'Notes': 'Notes', + 'Save': 'Save', 'Contact': 'Contact', 'Visit': 'Visit', 'setDateOfVisit': 'Set date of visit', diff --git a/flatisfy/web/js_src/i18n/fr/index.js b/flatisfy/web/js_src/i18n/fr/index.js index 38a6a25..0b79726 100644 --- a/flatisfy/web/js_src/i18n/fr/index.js +++ b/flatisfy/web/js_src/i18n/fr/index.js @@ -41,12 +41,15 @@ export default { 'utilities_included': '(charges comprises)', 'utilities_excluded': '(charges non comprises)', 'Description': 'Description', + 'First_posted': 'Posté pour la première fois', 'Details': 'Détails', 'Metadata': 'Metadonnées', 'postal_code': 'Code postal', 'nearby_stations': 'Stations proches', 'Times_to': 'Temps jusqu\'à', 'Location': 'Localisation', + 'Notes': 'Notes', + 'Save': 'Sauvegarder', 'Contact': 'Contact', 'Visit': 'Visite', 'setDateOfVisit': 'Entrer une date de visite', diff --git a/flatisfy/web/js_src/views/details.vue b/flatisfy/web/js_src/views/details.vue index 6e0fe1c..1f9833d 100644 --- a/flatisfy/web/js_src/views/details.vue +++ b/flatisfy/web/js_src/views/details.vue @@ -40,7 +40,7 @@
{{ flat.text }}
{{ flat.location }}
-First posted {{ flat.date ? flat.date.fromNow() : '?' }}.
+{{ $t("flatsDetails.First_posted") }} {{ flat.date ? flat.date.fromNow() : '?' }}.