fones 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/CHANGELOG.md +8 -0
  4. data/Gemfile +28 -0
  5. data/Gemfile.lock +108 -0
  6. data/LICENSE +20 -0
  7. data/README.md +61 -0
  8. data/Rakefile +54 -0
  9. data/VERSION +1 -0
  10. data/bin/fones +12 -0
  11. data/features/step_definitions/fones_steps.rb +38 -0
  12. data/features/support/env.rb +17 -0
  13. data/fones.gemspec +187 -0
  14. data/layouts/config/config.tt +19 -0
  15. data/layouts/default/css/_1030up.scss.erb +8 -0
  16. data/layouts/default/css/_1240up.scss.erb +8 -0
  17. data/layouts/default/css/_2x.scss.erb +40 -0
  18. data/layouts/default/css/_481up.scss.erb +109 -0
  19. data/layouts/default/css/_768up.scss.erb +280 -0
  20. data/layouts/default/css/_base.scss.erb +836 -0
  21. data/layouts/default/css/_grid.scss.erb +48 -0
  22. data/layouts/default/css/_header.scss.erb +18 -0
  23. data/layouts/default/css/_mixins.scss.erb +248 -0
  24. data/layouts/default/css/_normalize.scss.erb +536 -0
  25. data/layouts/default/css/_print.scss.erb +80 -0
  26. data/layouts/default/css/ie.scss.erb +52 -0
  27. data/layouts/default/css/login.scss.erb +65 -0
  28. data/layouts/default/css/style.css.scss.erb +111 -0
  29. data/layouts/default/functions/functions.php.erb +166 -0
  30. data/layouts/default/functions/library/admin.php.erb +131 -0
  31. data/layouts/default/functions/library/bones.php.erb +397 -0
  32. data/layouts/default/functions/library/custom-post-type.php.erb +122 -0
  33. data/layouts/default/functions/library/translation/README +18 -0
  34. data/layouts/default/functions/library/translation/da_DK.po +374 -0
  35. data/layouts/default/functions/library/translation/de_DE.po +385 -0
  36. data/layouts/default/functions/library/translation/default.po +372 -0
  37. data/layouts/default/functions/library/translation/es_ES.po +380 -0
  38. data/layouts/default/functions/library/translation/fr_FR.po +579 -0
  39. data/layouts/default/functions/library/translation/he_IL.po +382 -0
  40. data/layouts/default/functions/library/translation/hr.po +548 -0
  41. data/layouts/default/functions/library/translation/it_IT.po +376 -0
  42. data/layouts/default/functions/library/translation/ja.po +492 -0
  43. data/layouts/default/functions/library/translation/nb_NO.po +380 -0
  44. data/layouts/default/functions/library/translation/nl_NL.po +376 -0
  45. data/layouts/default/functions/library/translation/pl_PL.po +371 -0
  46. data/layouts/default/functions/library/translation/pt_PT.po +376 -0
  47. data/layouts/default/functions/library/translation/ru_RU.po +358 -0
  48. data/layouts/default/functions/library/translation/sv_SE.po +380 -0
  49. data/layouts/default/functions/library/translation/translation.php.erb +18 -0
  50. data/layouts/default/functions/library/translation/zh_CN.po +382 -0
  51. data/layouts/default/img/apple-icon-touch.png +0 -0
  52. data/layouts/default/img/custom-post-icon.png +0 -0
  53. data/layouts/default/img/favicon.ico +0 -0
  54. data/layouts/default/img/favicon.png +0 -0
  55. data/layouts/default/img/login-logo.png +0 -0
  56. data/layouts/default/img/nothing.gif +0 -0
  57. data/layouts/default/img/nothumb.gif +0 -0
  58. data/layouts/default/img/screenshot.png +0 -0
  59. data/layouts/default/img/win8-tile-icon.png +0 -0
  60. data/layouts/default/js/admin.js +1 -0
  61. data/layouts/default/js/libs/modernizr.custom.min.js +4 -0
  62. data/layouts/default/js/scripts.js +108 -0
  63. data/layouts/default/js/theme.js +2 -0
  64. data/layouts/default/templates/404.php.erb +43 -0
  65. data/layouts/default/templates/archive-custom_type.php.erb +73 -0
  66. data/layouts/default/templates/archive.php.erb +108 -0
  67. data/layouts/default/templates/attachment.php.erb +32 -0
  68. data/layouts/default/templates/comments.php.erb +121 -0
  69. data/layouts/default/templates/footer.php.erb +22 -0
  70. data/layouts/default/templates/header.php.erb +63 -0
  71. data/layouts/default/templates/index.php.erb +72 -0
  72. data/layouts/default/templates/page-custom.php.erb +66 -0
  73. data/layouts/default/templates/page.php.erb +60 -0
  74. data/layouts/default/templates/search.php.erb +71 -0
  75. data/layouts/default/templates/sidebar.php.erb +17 -0
  76. data/layouts/default/templates/single-custom_type.php.erb +78 -0
  77. data/layouts/default/templates/single.php.erb +61 -0
  78. data/layouts/default/templates/taxonomy-custom_cat.php.erb +87 -0
  79. data/lib/fones.rb +11 -0
  80. data/lib/forge/builder.rb +269 -0
  81. data/lib/forge/cli.rb +86 -0
  82. data/lib/forge/config.rb +61 -0
  83. data/lib/forge/engines.rb +12 -0
  84. data/lib/forge/error.rb +8 -0
  85. data/lib/forge/generator.rb +144 -0
  86. data/lib/forge/guard.rb +65 -0
  87. data/lib/forge/project.rb +162 -0
  88. data/lib/forge/version.rb +3 -0
  89. data/lib/guard/forge/assets.rb +31 -0
  90. data/lib/guard/forge/config.rb +34 -0
  91. data/lib/guard/forge/functions.rb +33 -0
  92. data/lib/guard/forge/templates.rb +28 -0
  93. data/pkg/fones-0.1.0.gem +0 -0
  94. data/spec/lib/forge/config_spec.rb +79 -0
  95. data/spec/lib/forge/project_spec.rb +34 -0
  96. data/spec/spec_helper.rb +13 -0
  97. metadata +437 -0
@@ -0,0 +1,385 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-02 22:50+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
8
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n\n"
14
+ "X-Poedit-Basepath: /home/fulgor/GIT/bones\n"
15
+ "Last-Translator: \n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: comments.php:12
19
+ msgid "This post is password protected. Enter the password to view comments."
20
+ msgstr ""
21
+ "Dieser Eintrag ist durch ein Passwort geschützt. Bitte Passwort eingeben, um "
22
+ "Kommentare zu lesen."
23
+
24
+ #: comments.php:23
25
+ msgid "Response"
26
+ msgstr "Antwort"
27
+
28
+ #: comments.php:24
29
+ msgid "Responses"
30
+ msgstr "Antworten"
31
+
32
+ #: comments.php:25
33
+ msgid "One"
34
+ msgstr "Eine"
35
+
36
+ #: comments.php:26
37
+ msgid "No"
38
+ msgstr "Keine"
39
+
40
+ #: comments.php:32
41
+ msgid "to"
42
+ msgstr "für"
43
+
44
+ #: comments.php:59
45
+ msgid "Comments are closed."
46
+ msgstr "Kommentare sind nicht möglich."
47
+
48
+ #: comments.php:70
49
+ msgid "Leave a Reply"
50
+ msgstr "Kommentar schreiben"
51
+
52
+ #: comments.php:70
53
+ #, php-format
54
+ msgid "Leave a Reply to %s"
55
+ msgstr "Kommentar schreiben zu %s"
56
+
57
+ #: comments.php:78
58
+ msgid "You must be"
59
+ msgstr "Sie müssen"
60
+
61
+ #: comments.php:78
62
+ msgid "logged in"
63
+ msgstr "angemeldet sein,"
64
+
65
+ #: comments.php:78
66
+ msgid "to post a comment"
67
+ msgstr "um einen Kommentar zu hinterlassen."
68
+
69
+ #: comments.php:86
70
+ msgid "Logged in as"
71
+ msgstr "Angemeldet als"
72
+
73
+ #: comments.php:86
74
+ msgid "Log out of this account"
75
+ msgstr "Abmelden"
76
+
77
+ #: comments.php:86
78
+ msgid "Log out"
79
+ msgstr "Abmelden"
80
+
81
+ #: comments.php:93
82
+ msgid "Name"
83
+ msgstr "Name"
84
+
85
+ #: comments.php:93 comments.php:98
86
+ msgid "(required)"
87
+ msgstr "(Pflichtfeld)"
88
+
89
+ #: comments.php:94
90
+ msgid "Your Name"
91
+ msgstr "Ihr Name"
92
+
93
+ #: comments.php:98
94
+ msgid "Email"
95
+ msgstr "E-Mail"
96
+
97
+ #: comments.php:99
98
+ msgid "Your Email"
99
+ msgstr "Ihre E-Mail"
100
+
101
+ #: comments.php:100
102
+ msgid "will not be published"
103
+ msgstr "wird nicht angezeigt"
104
+
105
+ #: comments.php:104
106
+ msgid "Website"
107
+ msgstr "Website"
108
+
109
+ #: comments.php:105
110
+ msgid "Your Website"
111
+ msgstr "Ihre Website"
112
+
113
+ #: comments.php:112
114
+ msgid "Your Comment Here..."
115
+ msgstr "Ihr Kommentar ..."
116
+
117
+ #: comments.php:115
118
+ msgid "Submit Comment"
119
+ msgstr "Kommentar absenden"
120
+
121
+ #: comments.php:120
122
+ msgid "You can use these tags"
123
+ msgstr "Sie können diese Auszeichnungen nutzen"
124
+
125
+ #: header.php:23
126
+ #, php-format
127
+ msgid "Page %s"
128
+ msgstr "Seite %s"
129
+
130
+ #: taxonomy-custom_cat.php:22 archive.php:9
131
+ msgid "Posts Categorized:"
132
+ msgstr "Zugeordnete Einträge:"
133
+
134
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
135
+ msgid "Posted"
136
+ msgstr "Eingetragen"
137
+
138
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
139
+ msgid "by"
140
+ msgstr "von"
141
+
142
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
143
+ msgid "filed under"
144
+ msgstr "abgelegt unter"
145
+
146
+ #: taxonomy-custom_cat.php:41
147
+ msgid "Read more"
148
+ msgstr "Lesen Sie weiter"
149
+
150
+ #: functions.php:103
151
+ msgid "(Edit)"
152
+ msgstr "(Bearbeiten)"
153
+
154
+ #: functions.php:107
155
+ msgid "Your comment is awaiting moderation."
156
+ msgstr "Ihr Kommentar wird noch moderiert."
157
+
158
+ #: functions.php:124
159
+ msgid "Search for:"
160
+ msgstr "Suche nach:"
161
+
162
+ #: functions.php:125
163
+ msgid "Search the Site..."
164
+ msgstr "durchsuchen ..."
165
+
166
+ #: 404.php:11
167
+ msgid "Epic 404 - Article Not Found"
168
+ msgstr "404 - Artikel wurde nicht gefunden"
169
+
170
+ #: 404.php:17
171
+ msgid ""
172
+ "The article you were looking for was not found, but maybe try looking again!"
173
+ msgstr ""
174
+ "Der gesuchte Artikel wurde nicht gefunden. Versuchen Sie es mit einem "
175
+ "ähnlichen Suchbegriff."
176
+
177
+ #: search.php:7
178
+ #, fuzzy
179
+ msgid "Search Results for:"
180
+ msgstr "Suche nach:"
181
+
182
+ #: search.php:23
183
+ msgid "Read more on"
184
+ msgstr "Lesen Sie mehr über"
185
+
186
+ #: archive.php:13
187
+ msgid "Posts Tagged:"
188
+ msgstr "Einträge mit dem Schlagwort:"
189
+
190
+ #: archive.php:17 author.php:8
191
+ msgid "Posts By:"
192
+ msgstr "Einträge von:"
193
+
194
+ #: archive.php:21
195
+ msgid "Daily Archives:"
196
+ msgstr "Tages-Archiv:"
197
+
198
+ #: archive.php:25
199
+ msgid "Monthly Archives:"
200
+ msgstr "Monats-Archiv:"
201
+
202
+ #: archive.php:29
203
+ msgid "Yearly Archives:"
204
+ msgstr "Jahres-Archiv:"
205
+
206
+ #: single-custom_type.php:43
207
+ msgid "Custom Tags"
208
+ msgstr "Eigene Schlagworte"
209
+
210
+ #: embed-tags.php:3
211
+ msgid "Tag"
212
+ msgstr "Schlagwort"
213
+
214
+ #: embed-tags.php:4
215
+ msgid "Tags"
216
+ msgstr "Schlagworte"
217
+
218
+ #: image.php:20
219
+ msgid "Read the rest of this entry"
220
+ msgstr "Lesen Sie den Rest dieses Eintrags"
221
+
222
+ #: image.php:38
223
+ msgid "Sorry, no attachments matched your criteria."
224
+ msgstr "Kein Anhang entspricht Ihren Kriterien."
225
+
226
+ #: embed-prev_next.php:3
227
+ msgid "&laquo; Older Entries"
228
+ msgstr "&laquo; Ältere Einträge"
229
+
230
+ #: embed-prev_next.php:4
231
+ msgid "Newer Entries &raquo;"
232
+ msgstr "Jüngere Einträge &raquo;"
233
+
234
+ #: footer.php:9
235
+ msgid "is powered by"
236
+ msgstr "wird betrieben mit"
237
+
238
+ #: embed-not_found.php:3
239
+ msgid "Not Found"
240
+ msgstr "Nicht gefunden"
241
+
242
+ #: embed-not_found.php:6
243
+ msgid "Sorry, but the requested resource was not found on this site."
244
+ msgstr "Die angefragte Quelle konnte nicht gefunden werden."
245
+
246
+ #: sidebar.php:15
247
+ msgid "Please activate some Widgets."
248
+ msgstr "Bitte nutzen Sie doch ein paar Widgets."
249
+
250
+ #: library/bones.php:52
251
+ msgid "Read more &raquo;"
252
+ msgstr "Weiter &raquo;"
253
+
254
+ #: library/custom-post-type.php:24
255
+ msgid "Custom Types"
256
+ msgstr "Eigene Arten"
257
+
258
+ #: library/custom-post-type.php:25
259
+ msgid "Custom Post"
260
+ msgstr "Eigener Eintrag"
261
+
262
+ #: library/custom-post-type.php:26
263
+ msgid "Add New"
264
+ msgstr "Hinzufügen"
265
+
266
+ #: library/custom-post-type.php:27
267
+ msgid "Add New Custom Type"
268
+ msgstr "Eigene Art hinzufügen"
269
+
270
+ #: library/custom-post-type.php:28
271
+ msgid "Edit"
272
+ msgstr "Bearbeiten"
273
+
274
+ #: library/custom-post-type.php:29
275
+ msgid "Edit Post Types"
276
+ msgstr "Eintrags-Arten bearbeiten"
277
+
278
+ #: library/custom-post-type.php:30
279
+ msgid "New Post Type"
280
+ msgstr "Neue Eintrags-Art"
281
+
282
+ #: library/custom-post-type.php:31
283
+ msgid "View Post Type"
284
+ msgstr "Zeige Eintrags-Art"
285
+
286
+ #: library/custom-post-type.php:32
287
+ msgid "Search Post Type"
288
+ msgstr "Suche Eintrags-Art"
289
+
290
+ #: library/custom-post-type.php:33
291
+ msgid "Nothing found in the Database."
292
+ msgstr "In der Datenbank wurde nichts gefunden."
293
+
294
+ #: library/custom-post-type.php:34
295
+ msgid "Nothing found in Trash"
296
+ msgstr "Im Papierkorb wurde nichts gefunden"
297
+
298
+ #: library/custom-post-type.php:37
299
+ msgid "This is the example custom post type"
300
+ msgstr "Beispel für eine eigene Eintrags-Art"
301
+
302
+ #: library/custom-post-type.php:73
303
+ msgid "Custom Categories"
304
+ msgstr "Eigene Kategorien"
305
+
306
+ #: library/custom-post-type.php:74
307
+ msgid "Custom Category"
308
+ msgstr "Eigene Kategorie"
309
+
310
+ #: library/custom-post-type.php:75
311
+ msgid "Search Custom Categories"
312
+ msgstr "Suche eigene Kategorien"
313
+
314
+ #: library/custom-post-type.php:76
315
+ msgid "All Custom Categories"
316
+ msgstr "Alle eigenen Kategorien"
317
+
318
+ #: library/custom-post-type.php:77
319
+ msgid "Parent Custom Category"
320
+ msgstr "Übergeordnete eigene Kategorie"
321
+
322
+ #: library/custom-post-type.php:78
323
+ msgid "Parent Custom Category:"
324
+ msgstr "Übergeordnete eigene Kategorie:"
325
+
326
+ #: library/custom-post-type.php:79
327
+ msgid "Edit Custom Category"
328
+ msgstr "Bearbeite eigene Kategorie"
329
+
330
+ #: library/custom-post-type.php:80
331
+ msgid "Update Custom Category"
332
+ msgstr "Aktualisiere eigene Kategorie"
333
+
334
+ #: library/custom-post-type.php:81
335
+ msgid "Add New Custom Category"
336
+ msgstr "Eigene Kategorie hinzufügen"
337
+
338
+ #: library/custom-post-type.php:82
339
+ msgid "New Custom Category Name"
340
+ msgstr "Name für neue eigene Kategorie"
341
+
342
+ #: library/custom-post-type.php:95
343
+ msgid "Custom Tag"
344
+ msgstr "Eigenes Schlagwort"
345
+
346
+ #: library/custom-post-type.php:96
347
+ msgid "Search Custom Tags"
348
+ msgstr "Suche eigene Schlagworte"
349
+
350
+ #: library/custom-post-type.php:97
351
+ msgid "All Custom Tags"
352
+ msgstr "Alle eigenen Schlagworte"
353
+
354
+ #: library/custom-post-type.php:98
355
+ msgid "Parent Custom Tag"
356
+ msgstr "Übergeordnetes eigene Schlagwort"
357
+
358
+ #: library/custom-post-type.php:99
359
+ msgid "Parent Custom Tag:"
360
+ msgstr "Übergeordnetes eigene Schlagwort:"
361
+
362
+ #: library/custom-post-type.php:100
363
+ msgid "Edit Custom Tag"
364
+ msgstr "Bearbeite eigenes Schlagwort"
365
+
366
+ #: library/custom-post-type.php:101
367
+ msgid "Update Custom Tag"
368
+ msgstr "Aktualisiere eigene Schlagwort"
369
+
370
+ #: library/custom-post-type.php:102
371
+ msgid "Add New Custom Tag"
372
+ msgstr "Eigene Schlagwort hinzufügen"
373
+
374
+ #: library/custom-post-type.php:103
375
+ msgid "New Custom Tag Name"
376
+ msgstr "Name für eigene Schlagwort hinzufügen"
377
+
378
+ #~ msgid "No Posts Yet"
379
+ #~ msgstr "Bislang keine Einträge"
380
+
381
+ #~ msgid "Sorry, What you were looking for is not here."
382
+ #~ msgstr "Wonach Sie gesucht haben, gibt es hier nicht."
383
+
384
+ #~ msgid "<span class=\"read-more\">Read more on \""
385
+ #~ msgstr "<span class=\"read-more\">Mehr lesen über \""
@@ -0,0 +1,372 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-02 22:11+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Language-Team: \n"
8
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-SourceCharset: UTF-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n\n"
14
+ "X-Poedit-Basepath: /Users/joey/Downloads\n"
15
+ "Last-Translator: \n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
+ "X-Poedit-SearchPath-0: /Users/joey/Downloads\n"
18
+
19
+ #: comments.php:12
20
+ msgid "This post is password protected. Enter the password to view comments."
21
+ msgstr ""
22
+
23
+ #: comments.php:23
24
+ msgid "Response"
25
+ msgstr ""
26
+
27
+ #: comments.php:24
28
+ msgid "Responses"
29
+ msgstr ""
30
+
31
+ #: comments.php:25
32
+ msgid "One"
33
+ msgstr ""
34
+
35
+ #: comments.php:26
36
+ msgid "No"
37
+ msgstr ""
38
+
39
+ #: comments.php:32
40
+ msgid "to"
41
+ msgstr ""
42
+
43
+ #: comments.php:59
44
+ msgid "Comments are closed."
45
+ msgstr ""
46
+
47
+ #: comments.php:70
48
+ msgid "Leave a Reply"
49
+ msgstr ""
50
+
51
+ #: comments.php:70
52
+ #, php-format
53
+ msgid "Leave a Reply to %s"
54
+ msgstr ""
55
+
56
+ #: comments.php:78
57
+ msgid "You must be"
58
+ msgstr ""
59
+
60
+ #: comments.php:78
61
+ msgid "logged in"
62
+ msgstr ""
63
+
64
+ #: comments.php:78
65
+ msgid "to post a comment"
66
+ msgstr ""
67
+
68
+ #: comments.php:86
69
+ msgid "Logged in as"
70
+ msgstr ""
71
+
72
+ #: comments.php:86
73
+ msgid "Log out of this account"
74
+ msgstr ""
75
+
76
+ #: comments.php:86
77
+ msgid "Log out"
78
+ msgstr ""
79
+
80
+ #: comments.php:93
81
+ msgid "Name"
82
+ msgstr ""
83
+
84
+ #: comments.php:93 comments.php:98
85
+ msgid "(required)"
86
+ msgstr ""
87
+
88
+ #: comments.php:94
89
+ msgid "Your Name"
90
+ msgstr ""
91
+
92
+ #: comments.php:98
93
+ msgid "Email"
94
+ msgstr ""
95
+
96
+ #: comments.php:99
97
+ msgid "Your Email"
98
+ msgstr ""
99
+
100
+ #: comments.php:100
101
+ msgid "will not be published"
102
+ msgstr ""
103
+
104
+ #: comments.php:104
105
+ msgid "Website"
106
+ msgstr ""
107
+
108
+ #: comments.php:105
109
+ msgid "Your Website"
110
+ msgstr ""
111
+
112
+ #: comments.php:112
113
+ msgid "Your Comment Here..."
114
+ msgstr ""
115
+
116
+ #: comments.php:115
117
+ msgid "Submit Comment"
118
+ msgstr ""
119
+
120
+ #: comments.php:120
121
+ msgid "You can use these tags"
122
+ msgstr ""
123
+
124
+ #: header.php:23
125
+ #, php-format
126
+ msgid "Page %s"
127
+ msgstr ""
128
+
129
+ #: taxonomy-custom_cat.php:22 archive.php:9
130
+ msgid "Posts Categorized:"
131
+ msgstr ""
132
+
133
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
134
+ msgid "Posted"
135
+ msgstr ""
136
+
137
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
138
+ msgid "by"
139
+ msgstr ""
140
+
141
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
142
+ msgid "filed under"
143
+ msgstr ""
144
+
145
+ #: taxonomy-custom_cat.php:41
146
+ msgid "Read more"
147
+ msgstr ""
148
+
149
+ #: functions.php:103
150
+ msgid "(Edit)"
151
+ msgstr ""
152
+
153
+ #: functions.php:107
154
+ msgid "Your comment is awaiting moderation."
155
+ msgstr ""
156
+
157
+ #: functions.php:124
158
+ msgid "Search for:"
159
+ msgstr ""
160
+
161
+ #: functions.php:125
162
+ msgid "Search the Site..."
163
+ msgstr ""
164
+
165
+ #: 404.php:11
166
+ msgid "Epic 404 - Article Not Found"
167
+ msgstr ""
168
+
169
+ #: 404.php:17
170
+ msgid ""
171
+ "The article you were looking for was not found, but maybe try looking again!"
172
+ msgstr ""
173
+
174
+ #: search.php:7
175
+ msgid "Search Results for:"
176
+ msgstr ""
177
+
178
+ #: search.php:23
179
+ msgid "Read more on"
180
+ msgstr ""
181
+
182
+ #: archive.php:13
183
+ msgid "Posts Tagged:"
184
+ msgstr ""
185
+
186
+ #: archive.php:17 author.php:8
187
+ msgid "Posts By:"
188
+ msgstr ""
189
+
190
+ #: archive.php:21
191
+ msgid "Daily Archives:"
192
+ msgstr ""
193
+
194
+ #: archive.php:25
195
+ msgid "Monthly Archives:"
196
+ msgstr ""
197
+
198
+ #: archive.php:29
199
+ msgid "Yearly Archives:"
200
+ msgstr ""
201
+
202
+ #: single-custom_type.php:43
203
+ msgid "Custom Tags"
204
+ msgstr ""
205
+
206
+ #: embed-tags.php:3
207
+ msgid "Tag"
208
+ msgstr ""
209
+
210
+ #: embed-tags.php:3
211
+ msgid "Tags"
212
+ msgstr ""
213
+
214
+ #: image.php:20
215
+ msgid "Read the rest of this entry"
216
+ msgstr ""
217
+
218
+ #: image.php:38
219
+ msgid "Sorry, no attachments matched your criteria."
220
+ msgstr ""
221
+
222
+ #: embed-prev_next.php:3
223
+ msgid "&laquo; Older Entries"
224
+ msgstr ""
225
+
226
+ #: embed-prev_next.php:4
227
+ msgid "Newer Entries &raquo;"
228
+ msgstr ""
229
+
230
+ #: footer.php:9
231
+ msgid "is powered by"
232
+ msgstr ""
233
+
234
+ #: embed-not_found.php:3
235
+ msgid "Not Found"
236
+ msgstr ""
237
+
238
+ #: embed-not_found.php:6
239
+ msgid "Sorry, but the requested resource was not found on this site."
240
+ msgstr ""
241
+
242
+ #: sidebar.php:15
243
+ msgid "Please activate some Widgets."
244
+ msgstr ""
245
+
246
+ #: library/bones.php:52
247
+ msgid "Read more &raquo;"
248
+ msgstr ""
249
+
250
+ #: library/custom-post-type.php:24
251
+ msgid "Custom Types"
252
+ msgstr ""
253
+
254
+ #: library/custom-post-type.php:25
255
+ msgid "Custom Post"
256
+ msgstr ""
257
+
258
+ #: library/custom-post-type.php:26
259
+ msgid "Add New"
260
+ msgstr ""
261
+
262
+ #: library/custom-post-type.php:27
263
+ msgid "Add New Custom Type"
264
+ msgstr ""
265
+
266
+ #: library/custom-post-type.php:28
267
+ msgid "Edit"
268
+ msgstr ""
269
+
270
+ #: library/custom-post-type.php:29
271
+ msgid "Edit Post Types"
272
+ msgstr ""
273
+
274
+ #: library/custom-post-type.php:30
275
+ msgid "New Post Type"
276
+ msgstr ""
277
+
278
+ #: library/custom-post-type.php:31
279
+ msgid "View Post Type"
280
+ msgstr ""
281
+
282
+ #: library/custom-post-type.php:32
283
+ msgid "Search Post Type"
284
+ msgstr ""
285
+
286
+ #: library/custom-post-type.php:33
287
+ msgid "Nothing found in the Database."
288
+ msgstr ""
289
+
290
+ #: library/custom-post-type.php:34
291
+ msgid "Nothing found in Trash"
292
+ msgstr ""
293
+
294
+ #: library/custom-post-type.php:37
295
+ msgid "This is the example custom post type"
296
+ msgstr ""
297
+
298
+ #: library/custom-post-type.php:73
299
+ msgid "Custom Categories"
300
+ msgstr ""
301
+
302
+ #: library/custom-post-type.php:74
303
+ msgid "Custom Category"
304
+ msgstr ""
305
+
306
+ #: library/custom-post-type.php:75
307
+ msgid "Search Custom Categories"
308
+ msgstr ""
309
+
310
+ #: library/custom-post-type.php:76
311
+ msgid "All Custom Categories"
312
+ msgstr ""
313
+
314
+ #: library/custom-post-type.php:77
315
+ msgid "Parent Custom Category"
316
+ msgstr ""
317
+
318
+ #: library/custom-post-type.php:78
319
+ msgid "Parent Custom Category:"
320
+ msgstr ""
321
+
322
+ #: library/custom-post-type.php:79
323
+ msgid "Edit Custom Category"
324
+ msgstr ""
325
+
326
+ #: library/custom-post-type.php:80
327
+ msgid "Update Custom Category"
328
+ msgstr ""
329
+
330
+ #: library/custom-post-type.php:81
331
+ msgid "Add New Custom Category"
332
+ msgstr ""
333
+
334
+ #: library/custom-post-type.php:82
335
+ msgid "New Custom Category Name"
336
+ msgstr ""
337
+
338
+ #: library/custom-post-type.php:95
339
+ msgid "Custom Tag"
340
+ msgstr ""
341
+
342
+ #: library/custom-post-type.php:96
343
+ msgid "Search Custom Tags"
344
+ msgstr ""
345
+
346
+ #: library/custom-post-type.php:97
347
+ msgid "All Custom Tags"
348
+ msgstr ""
349
+
350
+ #: library/custom-post-type.php:98
351
+ msgid "Parent Custom Tag"
352
+ msgstr ""
353
+
354
+ #: library/custom-post-type.php:99
355
+ msgid "Parent Custom Tag:"
356
+ msgstr ""
357
+
358
+ #: library/custom-post-type.php:100
359
+ msgid "Edit Custom Tag"
360
+ msgstr ""
361
+
362
+ #: library/custom-post-type.php:101
363
+ msgid "Update Custom Tag"
364
+ msgstr ""
365
+
366
+ #: library/custom-post-type.php:102
367
+ msgid "Add New Custom Tag"
368
+ msgstr ""
369
+
370
+ #: library/custom-post-type.php:103
371
+ msgid "New Custom Tag Name"
372
+ msgstr ""