forked from renard/o-blog
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patho-blog-i18n.el
143 lines (128 loc) · 4.52 KB
/
o-blog-i18n.el
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;;; o-blog-i18n.el --- Internationalization for o-blog.
;; Copyright © 2012 Sébastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>
;; Author: Sébastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>
;; Keywords: emacs,
;; Created: 2012-04-10
;; Last changed: 2012-05-22 00:29:14
;; Licence: WTFPL, grab your copy here: http://sam.zoy.org/wtfpl/
;; This file is NOT part of GNU Emacs.
;;; Commentary:
;;
;;; Code:
(defvar o-blog-i18n
'(("en"
:posted-on "Posted on"
:post-timestamp "%A %B, %d %Y at %H:%M:%S"
:related-tags "related tags"
:home "Home"
:tags "Tags"
:archives "Archives"
:rss "RSS"
:about "About"
:links "Links"
:redirect-header "Redirect"
:redirect-text "Oups! you shouldn't be here. Please wait for redirection."
:redirect-link "Click here for homepage."
:powered-by "Powered by"
:debug-blog "Dump information for blog"
:debug-post "Dump information for post"
:debug-tag "Dump information for tag"
:debug-property "Property"
:debug-value "Value"
:debug-blog-header "Blog"
:debug-posts-header "Posts"
:debug-static-pages-header "Static pages"
:debug-snippet-header "Snippets"
:debug-tags-header "Tags")
("fr"
:posted-on "Posté le"
:post-timestamp "%A %d %B %Y à %H:%M:%S"
:related-tags "Tags associés"
:home "Accueil"
:tags "Tags"
:archives "Archives"
:rss "RSS"
:about "À propos"
:links "Liens"
:redirect-header "Redirection"
:redirect-text "Oups! Vous ne devriez pas être ici. Merci de patienter pour une redirection."
:redirect-link "Cliquez ici pour l'accueil."
:powered-by "Réalisé avec"
:debug-blog "Contenu du blog"
:debug-post "Contenu des articles"
:debug-tag "Contenu des tags"
:debug-property "Propriété"
:debug-value "Valeur"
:debug-blog-header "Blog"
:debug-posts-header "Articles"
:debug-static-pages-header "Pages statiques"
:debug-snippet-header "Fragments"
:debug-tags-header "Tags")
("de"
:posted-on "Veröffentlicht am"
:post-timestamp "%d.%m.%Y um %H:%M"
:related-tags "Zugewiesene Schlagworte"
:home "Start"
:tags "Schlagworte"
:archives "Archiv"
:rss "RSS"
:about "Über"
:links "Links"
:redirect-header "Umleitung"
:redirect-text "O! Du solltest nicht hier sein. Bitte warte auf die Umleitung."
:redirect-link "Hier klicken, um zum Start zu kommen."
:powered-by "Bereitgestellt mit Hilfe von"
:debug-blog "Beispielinformation für den Blog"
:debug-post "Beispielinformation für einen Beitrag"
:debug-tag "Beispielinformation für ein Schlagwort"
:debug-property "Eigenschaft"
:debug-value "Wert"
:debug-blog-header "Blog"
:debug-posts-header "Artikel"
:debug-static-pages-header "Statische Seiten"
:debug-snippet-header "Schnipsel"
:debug-tags-header "Schlagworte")
("zh-CN" ;; simplified Chinese, traditional Chinese may use zh-TW or zh-HK
:posted-on "发布于"
:post-timestamp "%Y-%m-%d %H:%M:%S"
:related-tags "相关标签"
:home "首页"
:tags "标签"
:archives "归档"
:rss "RSS"
:about "关于"
:links "链接"
:powered-by "功能取自"
:debug-blog "导出博客信息"
:debug-post "导出博文信息"
:debug-tag "导出标签信息"
:debug-property "属性"
:debug-value "值"
:debug-blog-header "博客"
:debug-posts-header "博文"
:debug-static-pages-header "固定页面"
:debug-snippet-header "网页片断"
:debug-tags-header "标签" ))
"Translation ALIST used by `ob:gettext'. Each item consists of
language as `car' and translation items as `cdr'.
The translation items are used in following templates:
- :posted-on blog_post: blog_post.html
- :post-timestamp: blog_post.html
- :home: nav_links.html, nav_breadcrumb.html
- :tags: nav_links.html, page_footer.html
- :archives: nav_links.html, page_footer.html
- :rss: nav_links.html
- :about: page_footer.html
- :links: page_footer.html
- :powered-by: page_footer.html
- :debug-blog: debug_blog.html
- :debug-post: debug_post.html
- :debug-tag: debug_tag.html
- :debug-blog-header: debug.html
- :debug-posts-header: debug.html
- :debug-static-pages-header: debug.html
- :debug-snippet-header: debug.html
- :debug-tags-header: debug.html
- :debug-property: debug_blog.html, debug_post.html, debug_tag.html
- :debug-value: debug_blog.html, debug_post.html, debug_tag.html")
(provide 'o-blog-i18n)