git ssb

2+

mixmix / ticktack



Tree: a0e32e0e1ccf94a033e936e93954f133b8dc45a3

Files: a0e32e0e1ccf94a033e936e93954f133b8dc45a3 / translations / sync.js

1245 bytesRaw
1const nest = require('depnest')
2
3exports.gives = nest('translations.sync.strings')
4
5exports.create = (api) => {
6 return nest('translations.sync.strings', () => en)
7}
8
9const en = {
10 loading: 'Loading...',
11 optionalField: 'optional',
12 sendMessage: 'Send',
13 showMore: 'Show More',
14 channels: 'Channels',
15 directMessages: 'Direct Messages',
16 replySymbol: '> ',
17 home: "Home",
18 error: "Error",
19 errorNotFound: "The page wasn't found",
20 groupNew: "New Group",
21 groupFind: 'Find Group',
22 groupIndex: "Group Index",
23 //stub: should not be shown on released software!
24 stub: "this page is a stub",
25 settings: "Settings",
26 threadNew: {
27 pageTitle: 'New Thread',
28 field: {
29 to: 'To',
30 subject: 'Subject'
31 }
32
33 },
34 threadShow: "Direct Messages",
35 userShow: {
36 action: {
37 follow: 'Follow',
38 unfollow: 'Unfollow',
39 directMessage: 'New Direct Message'
40 },
41 state: {
42 friends: 'You are friends',
43 youFollow: 'You follow them',
44 theyFollow: 'They follow you',
45 userFind: "Find User",
46 userIsInGroups: "is in groups:",
47 userConversationsWith: 'conversations you\'ve had with',
48 follow: "Follow",
49 friendsInCommon: 'friends in common'
50 }
51 }
52}
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67

Built with git-ssb-web