-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathen.js
33 lines (33 loc) · 1.03 KB
/
en.js
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
export default {
locale: 'en',
messages: {
siteTitle: 'MERN Starter Blog',
addPost: 'Add Post',
switchLanguage: 'Switch Language',
twitterMessage: 'We are on Twitter',
by: 'By',
deletePost: 'Delete Post',
addComment: 'Add comment',
commentAuthor: 'Author',
createNewPost: 'Create new post',
authorName: 'Author\'s Name',
postTitle: 'Post Title',
postContent: 'Post Content',
submit: 'Submit',
comment: `user {name} {value, plural,
=0 {does not have any comments}
=1 {has # comment}
other {has # comments}
}`,
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}
}`,
nestedDateComment: `user {name} {value, plural,
=0 {does not have any comments}
=1 {has # comment}
other {has # comments}
} as of {date}`,
},
};