git ssb

2+

mixmix / ticktack



Tree: 99dc6aa464a4c1cc228a6af744517def76da134f

Files: 99dc6aa464a4c1cc228a6af744517def76da134f / translations / sync.js

574 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 userShow: {
16 action: {
17 follow: 'Follow',
18 unfollow: 'Unfollow',
19 directMessage: 'New Direct Message'
20 },
21 state: {
22 friends: 'You are friends',
23 youFollow: 'You follow them',
24 theyFollow: 'They follow you'
25 }
26 }
27}
28
29

Built with git-ssb-web