git ssb

2+

mixmix / ticktack



Tree: bc25a0cbefcddfd1f6b6af95fd853db6f40e0acb

Files: bc25a0cbefcddfd1f6b6af95fd853db6f40e0acb / translations / sync.js

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

Built with git-ssb-web