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,380 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-04 21:46+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: Ole Christian Rynning <oc@rynning.no>\n"
16
+ "X-Poedit-SearchPath-0: /home/fulgor/GIT/bones\n"
17
+
18
+ #: comments.php:12
19
+ msgid "This post is password protected. Enter the password to view comments."
20
+ msgstr "Dette innlegget er passordbeskyttet. Skriv inn passord for å se kommentarer."
21
+
22
+ #: comments.php:23
23
+ msgid "Response"
24
+ msgstr "Svar"
25
+
26
+ #: comments.php:24
27
+ msgid "Responses"
28
+ msgstr "Svar"
29
+
30
+ #: comments.php:25
31
+ msgid "One"
32
+ msgstr "En"
33
+
34
+ #: comments.php:26
35
+ msgid "No"
36
+ msgstr "Nei"
37
+
38
+ #: comments.php:32
39
+ msgid "to"
40
+ msgstr "til"
41
+
42
+ #: comments.php:59
43
+ msgid "Comments are closed."
44
+ msgstr "Kommentering er stengt."
45
+
46
+ #: comments.php:70
47
+ msgid "Leave a Reply"
48
+ msgstr "Legg igjen en kommentar"
49
+
50
+ #: comments.php:70
51
+ #, php-format
52
+ msgid "Leave a Reply to %s"
53
+ msgstr "Legg igjen en kommentar til %s"
54
+
55
+ #: comments.php:78
56
+ msgid "You must be"
57
+ msgstr "Du må være"
58
+
59
+ #: comments.php:78
60
+ msgid "logged in"
61
+ msgstr "logget inn"
62
+
63
+ #: comments.php:78
64
+ msgid "to post a comment"
65
+ msgstr "for å kommentere"
66
+
67
+ #: comments.php:86
68
+ msgid "Logged in as"
69
+ msgstr "Logget inn som"
70
+
71
+ #: comments.php:86
72
+ msgid "Log out of this account"
73
+ msgstr "Logg ut konto"
74
+
75
+ #: comments.php:86
76
+ msgid "Log out"
77
+ msgstr "Logg ut"
78
+
79
+ #: comments.php:93
80
+ msgid "Name"
81
+ msgstr "Navn"
82
+
83
+ #: comments.php:93
84
+ #: comments.php:98
85
+ msgid "(required)"
86
+ msgstr "(obligatorisk)"
87
+
88
+ #: comments.php:94
89
+ msgid "Your Name"
90
+ msgstr "Ditt navn"
91
+
92
+ #: comments.php:98
93
+ msgid "Email"
94
+ msgstr "E-post"
95
+
96
+ #: comments.php:99
97
+ msgid "Your Email"
98
+ msgstr "Din E-post"
99
+
100
+ #: comments.php:100
101
+ msgid "will not be published"
102
+ msgstr "kommer ikke å bli publisert"
103
+
104
+ #: comments.php:104
105
+ msgid "Website"
106
+ msgstr "Website"
107
+
108
+ #: comments.php:105
109
+ msgid "Your Website"
110
+ msgstr "Din website"
111
+
112
+ #: comments.php:112
113
+ msgid "Your Comment Here..."
114
+ msgstr "Din kommentar her..."
115
+
116
+ #: comments.php:115
117
+ msgid "Submit Comment"
118
+ msgstr "Send inn kommentar"
119
+
120
+ #: comments.php:120
121
+ msgid "You can use these tags"
122
+ msgstr "Du kan bruke disse taggene"
123
+
124
+ #: header.php:23
125
+ #, php-format
126
+ msgid "Page %s"
127
+ msgstr "Side %s"
128
+
129
+ #: taxonomy-custom_cat.php:22
130
+ #: archive.php:9
131
+ msgid "Posts Categorized:"
132
+ msgstr "Kategoriserte innlegg:"
133
+
134
+ #: taxonomy-custom_cat.php:32
135
+ #: embed-post_meta.php:1
136
+ #: single-custom_type.php:30
137
+ msgid "Posted"
138
+ msgstr "Skrevet"
139
+
140
+ #: taxonomy-custom_cat.php:32
141
+ #: embed-post_meta.php:1
142
+ #: single-custom_type.php:30
143
+ msgid "by"
144
+ msgstr "av"
145
+
146
+ #: taxonomy-custom_cat.php:32
147
+ #: embed-post_meta.php:1
148
+ #: single-custom_type.php:30
149
+ msgid "filed under"
150
+ msgstr "sortert under"
151
+
152
+ #: taxonomy-custom_cat.php:41
153
+ msgid "Read more"
154
+ msgstr "Les mer"
155
+
156
+ #: functions.php:103
157
+ msgid "(Edit)"
158
+ msgstr "(Rediger)"
159
+
160
+ #: functions.php:107
161
+ msgid "Your comment is awaiting moderation."
162
+ msgstr "Din kommentar venter moderering."
163
+
164
+ #: functions.php:124
165
+ msgid "Search for:"
166
+ msgstr "Søk etter:"
167
+
168
+ #: functions.php:125
169
+ msgid "Search the Site..."
170
+ msgstr "Søk på siten..."
171
+
172
+ #: 404.php:11
173
+ msgid "Epic 404 - Article Not Found"
174
+ msgstr "Episk 404 - Artikkelen kan ikke finnes"
175
+
176
+ #: 404.php:17
177
+ msgid "The article you were looking for was not found, but maybe try looking again!"
178
+ msgstr "Artikkelen du leter etter kan ikke finnes. Prøv igjen!"
179
+
180
+ #: search.php:7
181
+ msgid "Search Results for:"
182
+ msgstr "Søkeresultat for:"
183
+
184
+ #: search.php:23
185
+ msgid "Read more on"
186
+ msgstr "Les mer på"
187
+
188
+ #: archive.php:13
189
+ msgid "Posts Tagged:"
190
+ msgstr "Taggede innlegg"
191
+
192
+ #: archive.php:17
193
+ #: author.php:8
194
+ msgid "Posts By:"
195
+ msgstr "Innlegg av:"
196
+
197
+ #: archive.php:21
198
+ msgid "Daily Archives:"
199
+ msgstr "Dagsarkiv"
200
+
201
+ #: archive.php:25
202
+ msgid "Monthly Archives:"
203
+ msgstr "Månedsarkiv"
204
+
205
+ #: archive.php:29
206
+ msgid "Yearly Archives:"
207
+ msgstr "Årsarkiv"
208
+
209
+ #: single-custom_type.php:43
210
+ msgid "Custom Tags"
211
+ msgstr "Spesialtagger"
212
+
213
+ #: embed-tags.php:3
214
+ msgid "Tag"
215
+ msgstr "Tagg"
216
+
217
+ #: embed-tags.php:3
218
+ msgid "Tags"
219
+ msgstr "Tagger"
220
+
221
+ #: image.php:20
222
+ msgid "Read the rest of this entry"
223
+ msgstr "Les resten av innlegget"
224
+
225
+ #: image.php:38
226
+ msgid "Sorry, no attachments matched your criteria."
227
+ msgstr "Beklager, fant ingen vedlegg som passet dine valg."
228
+
229
+ #: embed-prev_next.php:3
230
+ msgid "&laquo; Older Entries"
231
+ msgstr "&laquo; Eldre innlegg"
232
+
233
+ #: embed-prev_next.php:4
234
+ msgid "Newer Entries &raquo;"
235
+ msgstr "Nyere innlegg &raquo;"
236
+
237
+ #: footer.php:9
238
+ msgid "is powered by"
239
+ msgstr "kjører på"
240
+
241
+ #: embed-not_found.php:3
242
+ msgid "Not Found"
243
+ msgstr "Kan ikke finnes"
244
+
245
+ #: embed-not_found.php:6
246
+ msgid "Sorry, but the requested resource was not found on this site."
247
+ msgstr "Beklager, men den etterspurte ressursen kunne ikke finnes på siten."
248
+
249
+ #: sidebar.php:15
250
+ msgid "Please activate some Widgets."
251
+ msgstr "Vennligst aktiver noen widgets."
252
+
253
+ #: library/bones.php:52
254
+ msgid "Read more &raquo;"
255
+ msgstr "Les mer &raquo;"
256
+
257
+ #: library/custom-post-type.php:24
258
+ msgid "Custom Types"
259
+ msgstr "Tilpassede typer"
260
+
261
+ #: library/custom-post-type.php:25
262
+ msgid "Custom Post"
263
+ msgstr "Tilpasset innlegg"
264
+
265
+ #: library/custom-post-type.php:26
266
+ msgid "Add New"
267
+ msgstr "Legg til"
268
+
269
+ #: library/custom-post-type.php:27
270
+ msgid "Add New Custom Type"
271
+ msgstr "Legg til ny tilpasset type"
272
+
273
+ #: library/custom-post-type.php:28
274
+ msgid "Edit"
275
+ msgstr "Rediger"
276
+
277
+ #: library/custom-post-type.php:29
278
+ msgid "Edit Post Types"
279
+ msgstr "Rediger innleggstyper"
280
+
281
+ #: library/custom-post-type.php:30
282
+ msgid "New Post Type"
283
+ msgstr "Ny innleggstype"
284
+
285
+ #: library/custom-post-type.php:31
286
+ msgid "View Post Type"
287
+ msgstr "Vis innleggstype"
288
+
289
+ #: library/custom-post-type.php:32
290
+ msgid "Search Post Type"
291
+ msgstr "Søk innleggstype"
292
+
293
+ #: library/custom-post-type.php:33
294
+ msgid "Nothing found in the Database."
295
+ msgstr "Ingenting funnet i databasen"
296
+
297
+ #: library/custom-post-type.php:34
298
+ msgid "Nothing found in Trash"
299
+ msgstr "Ingenting funnet i søppelkassen"
300
+
301
+ #: library/custom-post-type.php:37
302
+ msgid "This is the example custom post type"
303
+ msgstr "Dette er et eksempel på en tilpasset innleggstype"
304
+
305
+ #: library/custom-post-type.php:73
306
+ msgid "Custom Categories"
307
+ msgstr "Tilpassede kategorier"
308
+
309
+ #: library/custom-post-type.php:74
310
+ msgid "Custom Category"
311
+ msgstr "Tilpasset kategori"
312
+
313
+ #: library/custom-post-type.php:75
314
+ msgid "Search Custom Categories"
315
+ msgstr "Søk i de tilpassede kategoriene"
316
+
317
+ #: library/custom-post-type.php:76
318
+ msgid "All Custom Categories"
319
+ msgstr "Alle tilpassede kategorier"
320
+
321
+ #: library/custom-post-type.php:77
322
+ msgid "Parent Custom Category"
323
+ msgstr "Forelder til tilpasset kategori"
324
+
325
+ #: library/custom-post-type.php:78
326
+ msgid "Parent Custom Category:"
327
+ msgstr "Forelder til tilpasset kategori:"
328
+
329
+ #: library/custom-post-type.php:79
330
+ msgid "Edit Custom Category"
331
+ msgstr "Rediger tilpasset kategori"
332
+
333
+ #: library/custom-post-type.php:80
334
+ msgid "Update Custom Category"
335
+ msgstr "Oppdater tilpasset kategori"
336
+
337
+ #: library/custom-post-type.php:81
338
+ msgid "Add New Custom Category"
339
+ msgstr "Legg til ny tilpasset kategori"
340
+
341
+ #: library/custom-post-type.php:82
342
+ msgid "New Custom Category Name"
343
+ msgstr "Navn på ny tilpasset kategori"
344
+
345
+ #: library/custom-post-type.php:95
346
+ msgid "Custom Tag"
347
+ msgstr "Egen tagg"
348
+
349
+ #: library/custom-post-type.php:96
350
+ msgid "Search Custom Tags"
351
+ msgstr "Søk egne tagger"
352
+
353
+ #: library/custom-post-type.php:97
354
+ msgid "All Custom Tags"
355
+ msgstr "Alle egne tagger"
356
+
357
+ #: library/custom-post-type.php:98
358
+ msgid "Parent Custom Tag"
359
+ msgstr "Forelder til spesialtagg"
360
+
361
+ #: library/custom-post-type.php:99
362
+ msgid "Parent Custom Tag:"
363
+ msgstr "Foreldre til spesialtagg:"
364
+
365
+ #: library/custom-post-type.php:100
366
+ msgid "Edit Custom Tag"
367
+ msgstr "Rediger spesialtagg"
368
+
369
+ #: library/custom-post-type.php:101
370
+ msgid "Update Custom Tag"
371
+ msgstr "Oppdater spesialtagg"
372
+
373
+ #: library/custom-post-type.php:102
374
+ msgid "Add New Custom Tag"
375
+ msgstr "Legg til ny spesialtagg"
376
+
377
+ #: library/custom-post-type.php:103
378
+ msgid "New Custom Tag Name"
379
+ msgstr "Nytt navn på spesialtagg"
380
+
@@ -0,0 +1,376 @@
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: 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: Youri\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: /home/fulgor/GIT/bones\n"
18
+
19
+ #: comments.php:12
20
+ msgid "This post is password protected. Enter the password to view comments."
21
+ msgstr ""
22
+ "Dit bericht is beveiligd met een wachtwoord. Geef het wachtwoord om reacties "
23
+ "te bekijken."
24
+
25
+ #: comments.php:23
26
+ msgid "Response"
27
+ msgstr "Antwoord"
28
+
29
+ #: comments.php:24
30
+ msgid "Responses"
31
+ msgstr "Antwoorden"
32
+
33
+ #: comments.php:25
34
+ msgid "One"
35
+ msgstr "Een"
36
+
37
+ #: comments.php:26
38
+ msgid "No"
39
+ msgstr "Geen"
40
+
41
+ #: comments.php:32
42
+ msgid "to"
43
+ msgstr "Aan"
44
+
45
+ #: comments.php:59
46
+ msgid "Comments are closed."
47
+ msgstr "Reageren is niet mogelijk"
48
+
49
+ #: comments.php:70
50
+ msgid "Leave a Reply"
51
+ msgstr "Reageer"
52
+
53
+ #: comments.php:70
54
+ #, php-format
55
+ msgid "Leave a Reply to %s"
56
+ msgstr "Reageer op %s"
57
+
58
+ #: comments.php:78
59
+ msgid "You must be"
60
+ msgstr "Je moet"
61
+
62
+ #: comments.php:78
63
+ msgid "logged in"
64
+ msgstr "aangemeld zijn"
65
+
66
+ #: comments.php:78
67
+ msgid "to post a comment"
68
+ msgstr "om te reageren"
69
+
70
+ #: comments.php:86
71
+ msgid "Logged in as"
72
+ msgstr "Aangemeld als"
73
+
74
+ #: comments.php:86
75
+ msgid "Log out of this account"
76
+ msgstr "Afmelden bij dit account"
77
+
78
+ #: comments.php:86
79
+ msgid "Log out"
80
+ msgstr "Afmelden"
81
+
82
+ #: comments.php:93
83
+ msgid "Name"
84
+ msgstr "Naam"
85
+
86
+ #: comments.php:93 comments.php:98
87
+ msgid "(required)"
88
+ msgstr "(verplicht)"
89
+
90
+ #: comments.php:94
91
+ msgid "Your Name"
92
+ msgstr "Uw naam"
93
+
94
+ #: comments.php:98
95
+ msgid "Email"
96
+ msgstr "Email"
97
+
98
+ #: comments.php:99
99
+ msgid "Your Email"
100
+ msgstr "Uw Email"
101
+
102
+ #: comments.php:100
103
+ msgid "will not be published"
104
+ msgstr "wordt niet gepubliceerd"
105
+
106
+ #: comments.php:104
107
+ msgid "Website"
108
+ msgstr "Website"
109
+
110
+ #: comments.php:105
111
+ msgid "Your Website"
112
+ msgstr "Uw website"
113
+
114
+ #: comments.php:112
115
+ msgid "Your Comment Here..."
116
+ msgstr "Reageer hier...."
117
+
118
+ #: comments.php:115
119
+ msgid "Submit Comment"
120
+ msgstr "Reactie versturen"
121
+
122
+ #: comments.php:120
123
+ msgid "You can use these tags"
124
+ msgstr "U kunt deze labels gebruiken"
125
+
126
+ #: header.php:23
127
+ #, php-format
128
+ msgid "Page %s"
129
+ msgstr "Pagina %s"
130
+
131
+ #: taxonomy-custom_cat.php:22 archive.php:9
132
+ msgid "Posts Categorized:"
133
+ msgstr "Artikelen in de categorie:"
134
+
135
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
136
+ msgid "Posted"
137
+ msgstr "Geplaatst"
138
+
139
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
140
+ msgid "by"
141
+ msgstr "door"
142
+
143
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
144
+ msgid "filed under"
145
+ msgstr "in de categorie"
146
+
147
+ #: taxonomy-custom_cat.php:41
148
+ msgid "Read more"
149
+ msgstr "Lees meer"
150
+
151
+ #: functions.php:103
152
+ msgid "(Edit)"
153
+ msgstr "(Bewerken)"
154
+
155
+ #: functions.php:107
156
+ msgid "Your comment is awaiting moderation."
157
+ msgstr "Uw reactie wordt beoordeeld."
158
+
159
+ #: functions.php:124
160
+ msgid "Search for:"
161
+ msgstr "Zoeken naar:"
162
+
163
+ #: functions.php:125
164
+ msgid "Search the Site..."
165
+ msgstr "Doorzoek de site...."
166
+
167
+ #: 404.php:11
168
+ msgid "Epic 404 - Article Not Found"
169
+ msgstr "404 - Artikel niet gevonden"
170
+
171
+ #: 404.php:17
172
+ msgid ""
173
+ "The article you were looking for was not found, but maybe try looking again!"
174
+ msgstr ""
175
+ "Helaas, maar de opgevraagde pagina kon niet worden gevonden. Misschien kan "
176
+ "de zoekfunctie helpen!"
177
+
178
+ #: search.php:7
179
+ msgid "Search Results for:"
180
+ msgstr "Zoekresultaten voor:"
181
+
182
+ #: search.php:23
183
+ msgid "Read more on"
184
+ msgstr "Lees meer over"
185
+
186
+ #: archive.php:13
187
+ msgid "Posts Tagged:"
188
+ msgstr "Artikelen gelabeld:"
189
+
190
+ #: archive.php:17 author.php:8
191
+ msgid "Posts By:"
192
+ msgstr "Artikelen door:"
193
+
194
+ #: archive.php:21
195
+ msgid "Daily Archives:"
196
+ msgstr "Dagelijks archief:"
197
+
198
+ #: archive.php:25
199
+ msgid "Monthly Archives:"
200
+ msgstr "Maandelijks archief:"
201
+
202
+ #: archive.php:29
203
+ msgid "Yearly Archives:"
204
+ msgstr "Jaarlijks archief:"
205
+
206
+ #: single-custom_type.php:43
207
+ msgid "Custom Tags"
208
+ msgstr "Custom labels"
209
+
210
+ #: embed-tags.php:3
211
+ msgid "Tag"
212
+ msgstr "Label"
213
+
214
+ #: embed-tags.php:3
215
+ msgid "Tags"
216
+ msgstr "Labels"
217
+
218
+ #: image.php:20
219
+ msgid "Read the rest of this entry"
220
+ msgstr "Lees de rest van dit bericht"
221
+
222
+ #: image.php:38
223
+ msgid "Sorry, no attachments matched your criteria."
224
+ msgstr "Sorry, er zijn geen bijlagen gevonden die aan uw criteria voldoen.\""
225
+
226
+ #: embed-prev_next.php:3
227
+ msgid "&laquo; Older Entries"
228
+ msgstr "&laquo; Oudere artikelen"
229
+
230
+ #: embed-prev_next.php:4
231
+ msgid "Newer Entries &raquo;"
232
+ msgstr "Nieuwere artikelen &raquo;"
233
+
234
+ #: footer.php:9
235
+ msgid "is powered by"
236
+ msgstr "wordt mogelijk gemaakt door"
237
+
238
+ #: embed-not_found.php:3
239
+ msgid "Not Found"
240
+ msgstr "Niet Gevonden"
241
+
242
+ #: embed-not_found.php:6
243
+ msgid "Sorry, but the requested resource was not found on this site."
244
+ msgstr "Sorry, maar de opgevraagde bron is niet gevonden op deze site."
245
+
246
+ #: sidebar.php:15
247
+ msgid "Please activate some Widgets."
248
+ msgstr "Activeer een widget. "
249
+
250
+ #: library/bones.php:52
251
+ msgid "Read more &raquo;"
252
+ msgstr "Lees meer &raquo;"
253
+
254
+ #: library/custom-post-type.php:24
255
+ msgid "Custom Types"
256
+ msgstr "Custom type"
257
+
258
+ #: library/custom-post-type.php:25
259
+ msgid "Custom Post"
260
+ msgstr "Custom Artikel"
261
+
262
+ #: library/custom-post-type.php:26
263
+ msgid "Add New"
264
+ msgstr "Nieuwe toevoegen"
265
+
266
+ #: library/custom-post-type.php:27
267
+ msgid "Add New Custom Type"
268
+ msgstr "Nieuw custom type toevoegen"
269
+
270
+ #: library/custom-post-type.php:28
271
+ msgid "Edit"
272
+ msgstr "Bewerken"
273
+
274
+ #: library/custom-post-type.php:29
275
+ msgid "Edit Post Types"
276
+ msgstr "Artikel types bewerken"
277
+
278
+ #: library/custom-post-type.php:30
279
+ msgid "New Post Type"
280
+ msgstr "Nieuw bericht type"
281
+
282
+ #: library/custom-post-type.php:31
283
+ msgid "View Post Type"
284
+ msgstr "Bekijk bericht type"
285
+
286
+ #: library/custom-post-type.php:32
287
+ msgid "Search Post Type"
288
+ msgstr "Zoek bericht type"
289
+
290
+ #: library/custom-post-type.php:33
291
+ msgid "Nothing found in the Database."
292
+ msgstr "Niets gevonden in de database."
293
+
294
+ #: library/custom-post-type.php:34
295
+ msgid "Nothing found in Trash"
296
+ msgstr "Niets gevonden in de prullenbak."
297
+
298
+ #: library/custom-post-type.php:37
299
+ msgid "This is the example custom post type"
300
+ msgstr "Dit is het voorbeeld custom artikel type"
301
+
302
+ #: library/custom-post-type.php:73
303
+ msgid "Custom Categories"
304
+ msgstr "Custom categorieën"
305
+
306
+ #: library/custom-post-type.php:74
307
+ msgid "Custom Category"
308
+ msgstr "Custom categorie"
309
+
310
+ #: library/custom-post-type.php:75
311
+ msgid "Search Custom Categories"
312
+ msgstr "Zoek custom categorie"
313
+
314
+ #: library/custom-post-type.php:76
315
+ msgid "All Custom Categories"
316
+ msgstr "Alle custom categorieën"
317
+
318
+ #: library/custom-post-type.php:77
319
+ msgid "Parent Custom Category"
320
+ msgstr "Parent custom categorie"
321
+
322
+ #: library/custom-post-type.php:78
323
+ msgid "Parent Custom Category:"
324
+ msgstr "Parent custom categorie"
325
+
326
+ #: library/custom-post-type.php:79
327
+ msgid "Edit Custom Category"
328
+ msgstr "Custom categorie bewerken"
329
+
330
+ #: library/custom-post-type.php:80
331
+ msgid "Update Custom Category"
332
+ msgstr "Custom categorie aanpassen"
333
+
334
+ #: library/custom-post-type.php:81
335
+ msgid "Add New Custom Category"
336
+ msgstr "Custom categorie toevoegen"
337
+
338
+ #: library/custom-post-type.php:82
339
+ msgid "New Custom Category Name"
340
+ msgstr "Naam nieuwe custom categorie"
341
+
342
+ #: library/custom-post-type.php:95
343
+ msgid "Custom Tag"
344
+ msgstr "Custom label"
345
+
346
+ #: library/custom-post-type.php:96
347
+ msgid "Search Custom Tags"
348
+ msgstr "Zoek custom labels"
349
+
350
+ #: library/custom-post-type.php:97
351
+ msgid "All Custom Tags"
352
+ msgstr "Alle custom labels"
353
+
354
+ #: library/custom-post-type.php:98
355
+ msgid "Parent Custom Tag"
356
+ msgstr "Parent custom label"
357
+
358
+ #: library/custom-post-type.php:99
359
+ msgid "Parent Custom Tag:"
360
+ msgstr "Parent custom label"
361
+
362
+ #: library/custom-post-type.php:100
363
+ msgid "Edit Custom Tag"
364
+ msgstr "Custom label bewerken"
365
+
366
+ #: library/custom-post-type.php:101
367
+ msgid "Update Custom Tag"
368
+ msgstr ""
369
+
370
+ #: library/custom-post-type.php:102
371
+ msgid "Add New Custom Tag"
372
+ msgstr ""
373
+
374
+ #: library/custom-post-type.php:103
375
+ msgid "New Custom Tag Name"
376
+ msgstr ""