Merge branch 'french-localization' into 'master'
French localization See merge request phyks/Flatisfy!35
This commit is contained in:
commit
b93ca5177d
3
.gitignore
vendored
3
.gitignore
vendored
@ -11,3 +11,6 @@ package-lock.json
|
|||||||
doc/_build
|
doc/_build
|
||||||
yarn.lock
|
yarn.lock
|
||||||
data_rework/
|
data_rework/
|
||||||
|
.env
|
||||||
|
weboob
|
||||||
|
.htpasswd
|
||||||
|
71
flatisfy/web/js_src/i18n/fr/index.js
Normal file
71
flatisfy/web/js_src/i18n/fr/index.js
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
export default {
|
||||||
|
common: {
|
||||||
|
'flats': 'appartement | appartements',
|
||||||
|
'loading': 'Chargement…',
|
||||||
|
'Actions': 'Actions',
|
||||||
|
'More_about': 'Plus sur',
|
||||||
|
'Remove': 'Enlever',
|
||||||
|
'Restore': 'Remettre',
|
||||||
|
'Original_post': 'Annonce originale | Annonces originales',
|
||||||
|
'Original_post_for': 'Annonce originale pour',
|
||||||
|
'Follow': 'Suivre',
|
||||||
|
'Unfollow': 'Arrêter de suivre',
|
||||||
|
'Close': 'Fermer',
|
||||||
|
'sortUp': 'Trier par ordre croissant',
|
||||||
|
'sortDown': 'Trier par ordre décroissant',
|
||||||
|
'mins': 'min | mins',
|
||||||
|
'Unknown': 'Inconnu',
|
||||||
|
'expired': 'expiré'
|
||||||
|
},
|
||||||
|
home: {
|
||||||
|
'new_available_flats': 'Nouveaux appartements disponibles',
|
||||||
|
'show_expired_flats': 'Montrer les annonces expirées'
|
||||||
|
},
|
||||||
|
flatListing: {
|
||||||
|
'no_available_flats': 'Pas d\'appartement disponible.',
|
||||||
|
'no_matching_flats': 'Pas d\'appartement correspondant.'
|
||||||
|
},
|
||||||
|
menu: {
|
||||||
|
'available_flats': 'Appartements disponibles',
|
||||||
|
'followed_flats': 'Appartements suivis',
|
||||||
|
'by_status': 'Appartements par statut',
|
||||||
|
'search': 'Rechercher'
|
||||||
|
},
|
||||||
|
flatsDetails: {
|
||||||
|
'Notation': 'Note',
|
||||||
|
'Title': 'Titre',
|
||||||
|
'Area': 'Surface',
|
||||||
|
'Rooms': 'Pièces',
|
||||||
|
'Cost': 'Coût',
|
||||||
|
'SquareMeterCost': 'Coût / m²',
|
||||||
|
'utilities_included': '(charges comprises)',
|
||||||
|
'utilities_excluded': '(charges non comprises)',
|
||||||
|
'Description': 'Description',
|
||||||
|
'Details': 'Détails',
|
||||||
|
'Metadata': 'Metadonnées',
|
||||||
|
'postal_code': 'Code postal',
|
||||||
|
'nearby_stations': 'Stations proches',
|
||||||
|
'Times_to': 'Temps jusqu\'à',
|
||||||
|
'Location': 'Localisation',
|
||||||
|
'Contact': 'Contact',
|
||||||
|
'Visit': 'Visite',
|
||||||
|
'setDateOfVisit': 'Entrer une date de visite',
|
||||||
|
'no_phone_found': 'Pas de numéro de téléphone trouvé',
|
||||||
|
'rooms': 'pièce | pièces',
|
||||||
|
'bedrooms': 'chambre | chambres'
|
||||||
|
},
|
||||||
|
status: {
|
||||||
|
'new': 'nouveau',
|
||||||
|
'followed': 'suivi',
|
||||||
|
'ignored': 'ignoré',
|
||||||
|
'user_deleted': 'effacé',
|
||||||
|
'duplicate': 'en double'
|
||||||
|
},
|
||||||
|
slider: {
|
||||||
|
'Fullscreen_photo': 'Photo en plein écran'
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
'input_placeholder': 'Tapez n\'importe quoi à rechercher…',
|
||||||
|
'Search': 'Chercher !'
|
||||||
|
}
|
||||||
|
}
|
@ -3,6 +3,7 @@ import VueI18n from 'vue-i18n'
|
|||||||
|
|
||||||
// Import translations
|
// Import translations
|
||||||
import en from './en'
|
import en from './en'
|
||||||
|
import fr from './fr'
|
||||||
|
|
||||||
Vue.use(VueI18n)
|
Vue.use(VueI18n)
|
||||||
|
|
||||||
@ -32,7 +33,8 @@ export function getBrowserLocales () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const messages = {
|
const messages = {
|
||||||
'en': en
|
'en': en,
|
||||||
|
'fr': fr
|
||||||
}
|
}
|
||||||
|
|
||||||
const locales = getBrowserLocales()
|
const locales = getBrowserLocales()
|
||||||
|
Loading…
Reference in New Issue
Block a user