-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathfr.js
More file actions
49 lines (49 loc) · 1.7 KB
/
fr.js
File metadata and controls
49 lines (49 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
47
48
49
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',
createNewPost: 'Créer un nouveau message',
authorName: 'Nom de l\'auteur',
postTitle: 'Titre de l\'article',
postContent: 'Contenu après',
submit: 'Soumettre',
addComent: 'Ajouter un commentaire',
editComment: 'Modifier le commentaire',
deleteComment: 'Supprimer le commentaire',
emptyComments: 'No comments added yet. Let\'s write something awesome!',
makeComment: `{count, plural,
=0 {Add first comment}
other {See all}
}`,
commentForm: {
author: {
label: 'Comment Author',
placeholder: 'Write your name here',
},
content: {
label: 'Comment body',
placeholder: 'Place your thoughts here',
},
},
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)`,
},
};