Files: ec8cfe66cd3dbfa8ddc119bae4546fb25f8c8fd5 / translations / sync.js
574 bytesRaw
1 | const nest = require('depnest') |
2 | |
3 | exports.gives = nest('translations.sync.strings') |
4 | |
5 | exports.create = (api) => { |
6 | return nest('translations.sync.strings', () => en) |
7 | } |
8 | |
9 | const 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