-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathfr.js
More file actions
36 lines (36 loc) · 1.39 KB
/
fr.js
File metadata and controls
36 lines (36 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export default {
locale: 'fr',
messages: {
siteTitle: 'MERN blog de démarrage',
addPost: 'Ajouter Poster',
switchLanguage: 'Changer de langue',
twitterMessage: 'Nous sommes sur Twitter',
by: 'Par',
deletePost: 'Supprimer le message',
deleteComment: 'Supprimer le commentaire',
addComment: 'Ajouter un commentaire',
editComment: 'Modifier le commentaire',
createComment: 'Créer un commentaire',
commentContent: 'Comment Content',
createNewPost: 'Créer un nouveau message',
authorName: 'Nom de l\'auteur',
postTitle: 'Titre de l\'article',
postContent: 'Contenu après',
submit: 'Soumettre',
comment: `user {name} {value, plural,
=0 {does not have any comments}
=1 {has # comment}
other {has # comments}
} (in real app this would be translated to French)`,
HTMLComment: `user <b style='font-weight: bold'>{name} </b> {value, plural,
=0 {does not have <i style='font-style: italic'>any</i> comments}
=1 {has <i style='font-style: italic'>#</i> comment}
other {has <i style='font-style: italic'>#</i> comments}
} (in real app this would be translated to French)`,
nestedDateComment: `user {name} {value, plural,
=0 {does not have any comments}
=1 {has # comment}
other {has # comments}
} as of {date} (in real app this would be translated to French)`,
},
};