git ssb

2+

mixmix / ticktack



Tree: 681118eadeca96be1e11d604237ffaa9b29f7f92

Files: 681118eadeca96be1e11d604237ffaa9b29f7f92 / translations / sync.js

1110 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 showMore: 'Show More',
12 channels: 'Channels',
13 directMessages: 'Direct Messages',
14 replySymbol: '> ',
15 home: "Home",
16 error: "Error",
17 errorNotFound: "The page wasn't found",
18 groupNew: "New Group",
19 groupFind: 'Find Group',
20 groupIndex: "Group Index",
21 //stub: should not be shown on released software!
22 stub: "this page is a stub",
23 settings: "Settings",
24 threadNew: 'New Thread',
25 threadShow: "Direct Messages",
26 userShow: {
27 action: {
28 follow: 'Follow',
29 unfollow: 'Unfollow',
30 directMessage: 'New Direct Message'
31 },
32 state: {
33 friends: 'You are friends',
34 youFollow: 'You follow them',
35 theyFollow: 'They follow you',
36 userFind: "Find User",
37 userIsInGroups: "is in groups:",
38 userConversationsWith: 'conversations you\'ve had with',
39 follow: "Follow",
40 friendsInCommon: 'friends in common'
41 }
42 }
43}
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

Built with git-ssb-web