forked from writeas/web-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phrases.go
42 lines (40 loc) · 1.88 KB
/
phrases.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package l10n
// Term constants
const (
DefReadMore = "Read more..."
DefPublishedWith = "published with write.as"
DefOlder = "Older"
DefNewer = "Newer"
)
// Default phrases
var phrases = map[string]string{
"Anonymous post": "Anonymous post",
"Blogs": "Blogs",
"Enter": "Enter",
"Newer": "Newer",
"Next": "Next",
"Older": "Older",
"Posts": "Posts",
"Previous": "Previous",
"Publish to...": "Publish to...",
"Publish": "Publish",
"Read more...": "Read more...",
"Subscribe": "Subscribe",
"This blog requires a password.": "This blog requires a password.",
"Toggle theme": "Toggle theme",
"View posts": "View Posts",
"delete": "delete",
"edit": "edit",
"email subscription confirm": "Please check your email and click the confirmation link to subscribe.",
"email subscription prompt": "Enter your email to subscribe to updates.",
"email subscription success": "Subscribed. You'll now receive future blog posts via email.",
"move to...": "move to...",
"pin": "pin",
"published with write.as": "published with write.as",
"share modal ending": "Send it to a friend, share it across the web, or maybe tweet it. Learn more.",
"share modal introduction": "Each published post has a secret, unique URL you can share with anyone. This is that URL:",
"share modal title": "Share this post",
"share": "share",
"unpin": "unpin",
"title dash": "—",
}