Files: 1253a399464b2bc0274bac6368670c17c3cca16d / translations / sync.js
1110 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 | 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