git ssb

2+

mixmix / ticktack



Tree: ab05441c8dcd6cad002d31650852562da523e0c2

Files: ab05441c8dcd6cad002d31650852562da523e0c2 / translations / sync.js

1572 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: {
25 action: {
26 findAGroup: 'Find Group',
27 newGroup: 'Create this group'
28 },
29 state: {
30 groupNotFound: 'This group does not exist yet.'
31 },
32 flash: {
33 createFirstThread: 'Start this group by posting the first thread.'
34 }
35 },
36 groupIndex: "Group Index",
37 //stub: should not be shown on released software!
38 stub: "this page is a stub",
39 settings: "Settings",
40 threadNew: {
41 pageTitle: 'New Thread',
42 field: {
43 to: 'To',
44 subject: 'Subject',
45 channel: 'Channel'
46 }
47
48 },
49 threadShow: 'Direct Messages',
50 userFind: {
51 action: {
52 findAUser: 'Find a user',
53 }
54 },
55 userShow: {
56 action: {
57 follow: 'Follow',
58 unfollow: 'Unfollow',
59 directMessage: 'New Direct Message'
60 },
61 state: {
62 friends: 'You are friends',
63 youFollow: 'You follow them',
64 theyFollow: 'They follow you',
65 userIsInGroups: "is in groups:",
66 userConversationsWith: 'conversations you\'ve had with',
67 follow: "Follow",
68 friendsInCommon: 'friends in common'
69 }
70 }
71}
72
73
74

Built with git-ssb-web