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,371 @@
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: Paweł Grześ <pgrzes@dealwynajem.pl>\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 "Ten post jest chroniony hasłem. Podaj je żeby zobaczyć komentarze."
21
+
22
+ #: comments.php:23
23
+ msgid "Response"
24
+ msgstr "Odpowiedź"
25
+
26
+ #: comments.php:24
27
+ msgid "Responses"
28
+ msgstr "Odpowiedzi"
29
+
30
+ #: comments.php:25
31
+ msgid "One"
32
+ msgstr "1"
33
+
34
+ #: comments.php:26
35
+ msgid "No"
36
+ msgstr "Nie"
37
+
38
+ #: comments.php:32
39
+ msgid "to"
40
+ msgstr "do"
41
+
42
+ #: comments.php:59
43
+ msgid "Comments are closed."
44
+ msgstr "Komentarze zamknięte."
45
+
46
+ #: comments.php:70
47
+ msgid "Leave a Reply"
48
+ msgstr "Zostaw odpowiedź"
49
+
50
+ #: comments.php:70
51
+ #, php-format
52
+ msgid "Leave a Reply to %s"
53
+ msgstr "Zostaw odpowiedź %s"
54
+
55
+ #: comments.php:78
56
+ msgid "You must be"
57
+ msgstr "Musisz być"
58
+
59
+ #: comments.php:78
60
+ msgid "logged in"
61
+ msgstr "zalogowany"
62
+
63
+ #: comments.php:78
64
+ msgid "to post a comment"
65
+ msgstr "by skomentować"
66
+
67
+ #: comments.php:86
68
+ msgid "Logged in as"
69
+ msgstr "Zalogowany jako"
70
+
71
+ #: comments.php:86
72
+ msgid "Log out of this account"
73
+ msgstr "Wyloguj z tego konta"
74
+
75
+ #: comments.php:86
76
+ msgid "Log out"
77
+ msgstr "Wyloguj"
78
+
79
+ #: comments.php:93
80
+ msgid "Name"
81
+ msgstr "Imię"
82
+
83
+ #: comments.php:93 comments.php:98
84
+ msgid "(required)"
85
+ msgstr "(wymagane)"
86
+
87
+ #: comments.php:94
88
+ msgid "Your Name"
89
+ msgstr "Twoje imię"
90
+
91
+ #: comments.php:98
92
+ msgid "Email"
93
+ msgstr "Email"
94
+
95
+ #: comments.php:99
96
+ msgid "Your Email"
97
+ msgstr "Twój email"
98
+
99
+ #: comments.php:100
100
+ msgid "will not be published"
101
+ msgstr "nie będzie opublikowany"
102
+
103
+ #: comments.php:104
104
+ msgid "Website"
105
+ msgstr "WWW"
106
+
107
+ #: comments.php:105
108
+ msgid "Your Website"
109
+ msgstr "Twoja strona WWW"
110
+
111
+ #: comments.php:112
112
+ msgid "Your Comment Here..."
113
+ msgstr "Twój komentarz..."
114
+
115
+ #: comments.php:115
116
+ msgid "Submit Comment"
117
+ msgstr "Wyślij komentarz"
118
+
119
+ #: comments.php:120
120
+ msgid "You can use these tags"
121
+ msgstr "Możesz użyć tych tagów"
122
+
123
+ #: header.php:23
124
+ #, php-format
125
+ msgid "Page %s"
126
+ msgstr "Strona %s"
127
+
128
+ #: taxonomy-custom_cat.php:22 archive.php:9
129
+ msgid "Posts Categorized:"
130
+ msgstr "Kategoria:"
131
+
132
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
133
+ msgid "Posted"
134
+ msgstr "Opublikowany"
135
+
136
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
137
+ msgid "by"
138
+ msgstr "przez"
139
+
140
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
141
+ msgid "filed under"
142
+ msgstr "w kategorii"
143
+
144
+ #: taxonomy-custom_cat.php:41
145
+ msgid "Read more"
146
+ msgstr "Czytaj dalej"
147
+
148
+ #: functions.php:103
149
+ msgid "(Edit)"
150
+ msgstr "(Edytuj)"
151
+
152
+ #: functions.php:107
153
+ msgid "Your comment is awaiting moderation."
154
+ msgstr "Twój komentarz oczekuje na moderację."
155
+
156
+ #: functions.php:124
157
+ msgid "Search for:"
158
+ msgstr "Szukaj:"
159
+
160
+ #: functions.php:125
161
+ msgid "Search the Site..."
162
+ msgstr "Przeszukaj stronę..."
163
+
164
+ #: 404.php:11
165
+ msgid "Epic 404 - Article Not Found"
166
+ msgstr "OMG 404 - nic nie znaleziono"
167
+
168
+ #: 404.php:17
169
+ msgid ""
170
+ "The article you were looking for was not found, but maybe try looking again!"
171
+ msgstr "Artykuł, którego szukasz nie został znaleziony, może spróbuj ponownie."
172
+
173
+ #: search.php:7
174
+ msgid "Search Results for:"
175
+ msgstr "Wyniki wyszukiwania dla:"
176
+
177
+ #: search.php:23
178
+ msgid "Read more on"
179
+ msgstr "Czytaj dalej na"
180
+
181
+ #: archive.php:13
182
+ msgid "Posts Tagged:"
183
+ msgstr "Posty z tagami:"
184
+
185
+ #: archive.php:17 author.php:8
186
+ msgid "Posts By:"
187
+ msgstr "Posty napisane przez:"
188
+
189
+ #: archive.php:21
190
+ msgid "Daily Archives:"
191
+ msgstr "Archiwum dzienne:"
192
+
193
+ #: archive.php:25
194
+ msgid "Monthly Archives:"
195
+ msgstr "Archiwum miesięczne:"
196
+
197
+ #: archive.php:29
198
+ msgid "Yearly Archives:"
199
+ msgstr "Archiwum roczne:"
200
+
201
+ #: single-custom_type.php:43
202
+ msgid "Custom Tags"
203
+ msgstr "Niestandardowe tagi:"
204
+
205
+ #: embed-tags.php:3
206
+ msgid "Tag"
207
+ msgstr "Tag"
208
+
209
+ #: embed-tags.php:3
210
+ msgid "Tags"
211
+ msgstr "Tagi"
212
+
213
+ #: image.php:20
214
+ msgid "Read the rest of this entry"
215
+ msgstr "Przeczytaj resztę tego wpisu"
216
+
217
+ #: image.php:38
218
+ msgid "Sorry, no attachments matched your criteria."
219
+ msgstr "Nie ma załączników spełniających podane kryteria."
220
+
221
+ #: embed-prev_next.php:3
222
+ msgid "&laquo; Older Entries"
223
+ msgstr "&laquo; Starsze wpisy"
224
+
225
+ #: embed-prev_next.php:4
226
+ msgid "Newer Entries &raquo;"
227
+ msgstr "Nowsze wpisy &raquo;"
228
+
229
+ #: footer.php:9
230
+ msgid "is powered by"
231
+ msgstr "na"
232
+
233
+ #: embed-not_found.php:3
234
+ msgid "Not Found"
235
+ msgstr "Nie znaleziono"
236
+
237
+ #: embed-not_found.php:6
238
+ msgid "Sorry, but the requested resource was not found on this site."
239
+ msgstr "Żądany zasób nie został znaleziony."
240
+
241
+ #: sidebar.php:15
242
+ msgid "Please activate some Widgets."
243
+ msgstr "Proszę, włącz jakieś widgety."
244
+
245
+ #: library/bones.php:52
246
+ msgid "Read more &raquo;"
247
+ msgstr "Czytaj dalej &raquo;"
248
+
249
+ #: library/custom-post-type.php:24
250
+ msgid "Custom Types"
251
+ msgstr "Niestandardowe typy"
252
+
253
+ #: library/custom-post-type.php:25
254
+ msgid "Custom Post"
255
+ msgstr "Niestandardowe posty"
256
+
257
+ #: library/custom-post-type.php:26
258
+ msgid "Add New"
259
+ msgstr "Dodaj nowy"
260
+
261
+ #: library/custom-post-type.php:27
262
+ msgid "Add New Custom Type"
263
+ msgstr "Dodaj nowy niestandardowy typ"
264
+
265
+ #: library/custom-post-type.php:28
266
+ msgid "Edit"
267
+ msgstr "Edytuj"
268
+
269
+ #: library/custom-post-type.php:29
270
+ msgid "Edit Post Types"
271
+ msgstr "Edytuj typy postów"
272
+
273
+ #: library/custom-post-type.php:30
274
+ msgid "New Post Type"
275
+ msgstr "Nowy typ postu"
276
+
277
+ #: library/custom-post-type.php:31
278
+ msgid "View Post Type"
279
+ msgstr "Zobacz typ postu"
280
+
281
+ #: library/custom-post-type.php:32
282
+ msgid "Search Post Type"
283
+ msgstr "Szukaj typu postu"
284
+
285
+ #: library/custom-post-type.php:33
286
+ msgid "Nothing found in the Database."
287
+ msgstr "Brak wpisów w bazie."
288
+
289
+ #: library/custom-post-type.php:34
290
+ msgid "Nothing found in Trash"
291
+ msgstr "Brak wpisów w koszu"
292
+
293
+ #: library/custom-post-type.php:37
294
+ msgid "This is the example custom post type"
295
+ msgstr "To jest przykład własnego typu postu"
296
+
297
+ #: library/custom-post-type.php:73
298
+ msgid "Custom Categories"
299
+ msgstr "Niestandardowe kategorie"
300
+
301
+ #: library/custom-post-type.php:74
302
+ msgid "Custom Category"
303
+ msgstr "Niestandardowa kategoria"
304
+
305
+ #: library/custom-post-type.php:75
306
+ msgid "Search Custom Categories"
307
+ msgstr "Szukaj niestandardowych kategorii"
308
+
309
+ #: library/custom-post-type.php:76
310
+ msgid "All Custom Categories"
311
+ msgstr "Wszystkie niestandardowe kategorie:"
312
+
313
+ #: library/custom-post-type.php:77
314
+ msgid "Parent Custom Category"
315
+ msgstr "Niestandardowa kategoria (rodzic)"
316
+
317
+ #: library/custom-post-type.php:78
318
+ msgid "Parent Custom Category:"
319
+ msgstr "Niestandardowa kategoria (rodzic):"
320
+
321
+ #: library/custom-post-type.php:79
322
+ msgid "Edit Custom Category"
323
+ msgstr "Edytuj niestandardową kategorię"
324
+
325
+ #: library/custom-post-type.php:80
326
+ msgid "Update Custom Category"
327
+ msgstr "Aktualizuj niestandardową kategorię"
328
+
329
+ #: library/custom-post-type.php:81
330
+ msgid "Add New Custom Category"
331
+ msgstr "Dodaj nową niestandardową kategorię"
332
+
333
+ #: library/custom-post-type.php:82
334
+ msgid "New Custom Category Name"
335
+ msgstr "Nazwa nowej niestandardowej kategorii"
336
+
337
+ #: library/custom-post-type.php:95
338
+ msgid "Custom Tag"
339
+ msgstr "Niestandardowy tag"
340
+
341
+ #: library/custom-post-type.php:96
342
+ msgid "Search Custom Tags"
343
+ msgstr "Szukaj niestandardowych tagów"
344
+
345
+ #: library/custom-post-type.php:97
346
+ msgid "All Custom Tags"
347
+ msgstr "Wszystkie niestandardowe tagi"
348
+
349
+ #: library/custom-post-type.php:98
350
+ msgid "Parent Custom Tag"
351
+ msgstr "Niestandardowy tag (rodzic)"
352
+
353
+ #: library/custom-post-type.php:99
354
+ msgid "Parent Custom Tag:"
355
+ msgstr "Niestandardowy tag (rodzic):"
356
+
357
+ #: library/custom-post-type.php:100
358
+ msgid "Edit Custom Tag"
359
+ msgstr "Edytuj niestandardowy tag"
360
+
361
+ #: library/custom-post-type.php:101
362
+ msgid "Update Custom Tag"
363
+ msgstr "Aktualizuj niestandardowy tag"
364
+
365
+ #: library/custom-post-type.php:102
366
+ msgid "Add New Custom Tag"
367
+ msgstr "Dodaj nowy niestandardowy tag"
368
+
369
+ #: library/custom-post-type.php:103
370
+ msgid "New Custom Tag Name"
371
+ msgstr "Nazwa nowego niestandardowego tagu"
@@ -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: Homem Árvore <alexandre@homem-arvore.com>\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
+ "Este artigo está protegido por uma password. Insira uma password para ver os "
23
+ "comentários."
24
+
25
+ #: comments.php:23
26
+ msgid "Response"
27
+ msgstr "Resposta"
28
+
29
+ #: comments.php:24
30
+ msgid "Responses"
31
+ msgstr "Respostas"
32
+
33
+ #: comments.php:25
34
+ msgid "One"
35
+ msgstr "Um"
36
+
37
+ #: comments.php:26
38
+ msgid "No"
39
+ msgstr "Não"
40
+
41
+ #: comments.php:32
42
+ msgid "to"
43
+ msgstr "para"
44
+
45
+ #: comments.php:59
46
+ msgid "Comments are closed."
47
+ msgstr "Comentários estão fechados"
48
+
49
+ #: comments.php:70
50
+ msgid "Leave a Reply"
51
+ msgstr "Deixar uma Resposta"
52
+
53
+ #: comments.php:70
54
+ #, php-format
55
+ msgid "Leave a Reply to %s"
56
+ msgstr "Deixar uma Resposta a %s"
57
+
58
+ #: comments.php:78
59
+ msgid "You must be"
60
+ msgstr "Tem de ser"
61
+
62
+ #: comments.php:78
63
+ msgid "logged in"
64
+ msgstr "sessão iniciada"
65
+
66
+ #: comments.php:78
67
+ msgid "to post a comment"
68
+ msgstr "para inserir um comentário"
69
+
70
+ #: comments.php:86
71
+ msgid "Logged in as"
72
+ msgstr "Identificado como"
73
+
74
+ #: comments.php:86
75
+ msgid "Log out of this account"
76
+ msgstr "Sair desta conta"
77
+
78
+ #: comments.php:86
79
+ msgid "Log out"
80
+ msgstr "Sair"
81
+
82
+ #: comments.php:93
83
+ msgid "Name"
84
+ msgstr "Nome"
85
+
86
+ #: comments.php:93 comments.php:98
87
+ msgid "(required)"
88
+ msgstr "(obrigatório)"
89
+
90
+ #: comments.php:94
91
+ msgid "Your Name"
92
+ msgstr "O Seu Nome"
93
+
94
+ #: comments.php:98
95
+ msgid "Email"
96
+ msgstr "Email"
97
+
98
+ #: comments.php:99
99
+ msgid "Your Email"
100
+ msgstr "O seu Email"
101
+
102
+ #: comments.php:100
103
+ msgid "will not be published"
104
+ msgstr "não será publicado"
105
+
106
+ #: comments.php:104
107
+ msgid "Website"
108
+ msgstr "Website"
109
+
110
+ #: comments.php:105
111
+ msgid "Your Website"
112
+ msgstr "o Seu Website"
113
+
114
+ #: comments.php:112
115
+ msgid "Your Comment Here..."
116
+ msgstr "Os seus comentário Aqui…"
117
+
118
+ #: comments.php:115
119
+ msgid "Submit Comment"
120
+ msgstr "Enviar Comentário"
121
+
122
+ #: comments.php:120
123
+ msgid "You can use these tags"
124
+ msgstr "Pode usar estas marcas"
125
+
126
+ #: header.php:23
127
+ #, php-format
128
+ msgid "Page %s"
129
+ msgstr "Página %s"
130
+
131
+ #: taxonomy-custom_cat.php:22 archive.php:9
132
+ msgid "Posts Categorized:"
133
+ msgstr "Artigos Categorizados:"
134
+
135
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
136
+ msgid "Posted"
137
+ msgstr "Públicado"
138
+
139
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
140
+ msgid "by"
141
+ msgstr "por"
142
+
143
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
144
+ msgid "filed under"
145
+ msgstr "arquivado em"
146
+
147
+ #: taxonomy-custom_cat.php:41
148
+ msgid "Read more"
149
+ msgstr "Ler mais"
150
+
151
+ #: functions.php:103
152
+ msgid "(Edit)"
153
+ msgstr "(Editar)"
154
+
155
+ #: functions.php:107
156
+ msgid "Your comment is awaiting moderation."
157
+ msgstr "O seu comentário aguarda moderação."
158
+
159
+ #: functions.php:124
160
+ msgid "Search for:"
161
+ msgstr "Procurar por:"
162
+
163
+ #: functions.php:125
164
+ msgid "Search the Site..."
165
+ msgstr "Procurar o Site..."
166
+
167
+ #: 404.php:11
168
+ msgid "Epic 404 - Article Not Found"
169
+ msgstr "404 Épico – Artigo não Encontrado"
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
+ "O artigo que estava à procura não foi encontrado, talvez queira tentar outra "
176
+ "vez!"
177
+
178
+ #: search.php:7
179
+ msgid "Search Results for:"
180
+ msgstr "Resultados da Pesquisa para: "
181
+
182
+ #: search.php:23
183
+ msgid "Read more on"
184
+ msgstr "Ler mais em"
185
+
186
+ #: archive.php:13
187
+ msgid "Posts Tagged:"
188
+ msgstr "Artigos Etiquetados:"
189
+
190
+ #: archive.php:17 author.php:8
191
+ msgid "Posts By:"
192
+ msgstr "Artigos Por:"
193
+
194
+ #: archive.php:21
195
+ msgid "Daily Archives:"
196
+ msgstr "Arquivos Diários:"
197
+
198
+ #: archive.php:25
199
+ msgid "Monthly Archives:"
200
+ msgstr "Arquivos Mensais:"
201
+
202
+ #: archive.php:29
203
+ msgid "Yearly Archives:"
204
+ msgstr "Arquivos Anuais:"
205
+
206
+ #: single-custom_type.php:43
207
+ msgid "Custom Tags"
208
+ msgstr "Etiquetas Personalizadas"
209
+
210
+ #: embed-tags.php:3
211
+ msgid "Tag"
212
+ msgstr "Etiqueta"
213
+
214
+ #: embed-tags.php:3
215
+ msgid "Tags"
216
+ msgstr "Etiquetas"
217
+
218
+ #: image.php:20
219
+ msgid "Read the rest of this entry"
220
+ msgstr "Ler o resto desta entrada"
221
+
222
+ #: image.php:38
223
+ msgid "Sorry, no attachments matched your criteria."
224
+ msgstr "Desculpe, não existem anexos que correspondam a esse critério."
225
+
226
+ #: embed-prev_next.php:3
227
+ msgid "&laquo; Older Entries"
228
+ msgstr "&laquo; Entradas mais Antigas"
229
+
230
+ #: embed-prev_next.php:4
231
+ msgid "Newer Entries &raquo;"
232
+ msgstr "Entradas mais Recentes &raquo;"
233
+
234
+ #: footer.php:9
235
+ msgid "is powered by"
236
+ msgstr "funciona graças a"
237
+
238
+ #: embed-not_found.php:3
239
+ msgid "Not Found"
240
+ msgstr "Não Encontrado"
241
+
242
+ #: embed-not_found.php:6
243
+ msgid "Sorry, but the requested resource was not found on this site."
244
+ msgstr "Desculpa, mas o recurso pedido não se encontra disponível neste site."
245
+
246
+ #: sidebar.php:15
247
+ msgid "Please activate some Widgets."
248
+ msgstr "Por favor active alguns Widgets."
249
+
250
+ #: library/bones.php:52
251
+ msgid "Read more &raquo;"
252
+ msgstr "Ler mais &raquo;"
253
+
254
+ #: library/custom-post-type.php:24
255
+ msgid "Custom Types"
256
+ msgstr "Tipos Personalizados"
257
+
258
+ #: library/custom-post-type.php:25
259
+ msgid "Custom Post"
260
+ msgstr "Post Personalizado"
261
+
262
+ #: library/custom-post-type.php:26
263
+ msgid "Add New"
264
+ msgstr "Adicionar Novo"
265
+
266
+ #: library/custom-post-type.php:27
267
+ msgid "Add New Custom Type"
268
+ msgstr "Adicionar Novo Tipo Personalizado"
269
+
270
+ #: library/custom-post-type.php:28
271
+ msgid "Edit"
272
+ msgstr "Editar"
273
+
274
+ #: library/custom-post-type.php:29
275
+ msgid "Edit Post Types"
276
+ msgstr "Editar Tipos de Artigos"
277
+
278
+ #: library/custom-post-type.php:30
279
+ msgid "New Post Type"
280
+ msgstr "Novo Tipo de Artigo"
281
+
282
+ #: library/custom-post-type.php:31
283
+ msgid "View Post Type"
284
+ msgstr "Ver Tipo de Artigo"
285
+
286
+ #: library/custom-post-type.php:32
287
+ msgid "Search Post Type"
288
+ msgstr "Procurar Tipo de Artigo"
289
+
290
+ #: library/custom-post-type.php:33
291
+ msgid "Nothing found in the Database."
292
+ msgstr "Nada encontrado na Base de Dados"
293
+
294
+ #: library/custom-post-type.php:34
295
+ msgid "Nothing found in Trash"
296
+ msgstr "Nada encontrado no Lixo"
297
+
298
+ #: library/custom-post-type.php:37
299
+ msgid "This is the example custom post type"
300
+ msgstr "Este é o exemplo do tipo de artigo personalizado"
301
+
302
+ #: library/custom-post-type.php:73
303
+ msgid "Custom Categories"
304
+ msgstr "Categoria Personalizadas"
305
+
306
+ #: library/custom-post-type.php:74
307
+ msgid "Custom Category"
308
+ msgstr "Categoria Personalizada"
309
+
310
+ #: library/custom-post-type.php:75
311
+ msgid "Search Custom Categories"
312
+ msgstr "Procurar Categorias Personalizadas"
313
+
314
+ #: library/custom-post-type.php:76
315
+ msgid "All Custom Categories"
316
+ msgstr "Todas as Categorias Personalizadas"
317
+
318
+ #: library/custom-post-type.php:77
319
+ msgid "Parent Custom Category"
320
+ msgstr "Categoria Personalizada Mãe"
321
+
322
+ #: library/custom-post-type.php:78
323
+ msgid "Parent Custom Category:"
324
+ msgstr "Categoria Personalizada Mãe:"
325
+
326
+ #: library/custom-post-type.php:79
327
+ msgid "Edit Custom Category"
328
+ msgstr "Editar Categoria Personalizada"
329
+
330
+ #: library/custom-post-type.php:80
331
+ msgid "Update Custom Category"
332
+ msgstr "Actualizar Categoria Personalizada"
333
+
334
+ #: library/custom-post-type.php:81
335
+ msgid "Add New Custom Category"
336
+ msgstr "Adicionar Nova Categoria Personalizada"
337
+
338
+ #: library/custom-post-type.php:82
339
+ msgid "New Custom Category Name"
340
+ msgstr "Novo Nome de Categoria Personalizada"
341
+
342
+ #: library/custom-post-type.php:95
343
+ msgid "Custom Tag"
344
+ msgstr "Etiqueta Personalizada"
345
+
346
+ #: library/custom-post-type.php:96
347
+ msgid "Search Custom Tags"
348
+ msgstr "Procurar Etiquetas Personalizadas"
349
+
350
+ #: library/custom-post-type.php:97
351
+ msgid "All Custom Tags"
352
+ msgstr "Todas as Etiquetas Personalizadas"
353
+
354
+ #: library/custom-post-type.php:98
355
+ msgid "Parent Custom Tag"
356
+ msgstr "Etiqueta Personalizada Mãe"
357
+
358
+ #: library/custom-post-type.php:99
359
+ msgid "Parent Custom Tag:"
360
+ msgstr "Etiqueta Personalizada Mãe:"
361
+
362
+ #: library/custom-post-type.php:100
363
+ msgid "Edit Custom Tag"
364
+ msgstr "Editar "
365
+
366
+ #: library/custom-post-type.php:101
367
+ msgid "Update Custom Tag"
368
+ msgstr "Actualizar Etiqueta Personalizada"
369
+
370
+ #: library/custom-post-type.php:102
371
+ msgid "Add New Custom Tag"
372
+ msgstr "Adicionar Nova Etiqueta Personalizada"
373
+
374
+ #: library/custom-post-type.php:103
375
+ msgid "New Custom Tag Name"
376
+ msgstr "Novo Nome para Etiqueta Personalizada"