Files: 5ab138f415f014e52c4f2489a0807515aa58340e / translations / sync.js
1315 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 | optionalField: 'optional', |
12 | sendMessage: 'Send', |
13 | showMore: 'Show More', |
14 | channel: { |
15 | action: { |
16 | newThread: 'New thread' |
17 | } |
18 | }, |
19 | directMessages: 'Direct Messages', |
20 | replySymbol: '> ', |
21 | home: "Home", |
22 | error: "Error", |
23 | errorNotFound: "The page wasn't found", |
24 | groupNew: "New Group", |
25 | groupFind: 'Find Group', |
26 | groupIndex: "Group Index", |
27 | //stub: should not be shown on released software! |
28 | stub: "this page is a stub", |
29 | settings: "Settings", |
30 | threadNew: { |
31 | pageTitle: 'New Thread', |
32 | field: { |
33 | to: 'To', |
34 | subject: 'Subject', |
35 | channel: 'Channel' |
36 | } |
37 | |
38 | }, |
39 | threadShow: "Direct Messages", |
40 | userShow: { |
41 | action: { |
42 | follow: 'Follow', |
43 | unfollow: 'Unfollow', |
44 | directMessage: 'New Direct Message' |
45 | }, |
46 | state: { |
47 | friends: 'You are friends', |
48 | youFollow: 'You follow them', |
49 | theyFollow: 'They follow you', |
50 | userFind: "Find User", |
51 | userIsInGroups: "is in groups:", |
52 | userConversationsWith: 'conversations you\'ve had with', |
53 | follow: "Follow", |
54 | friendsInCommon: 'friends in common' |
55 | } |
56 | } |
57 | } |
58 | |
59 | |
60 | |
61 | |
62 | |
63 | |
64 | |
65 | |
66 | |
67 | |
68 | |
69 | |
70 | |
71 | |
72 |
Built with git-ssb-web