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,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: Emanuele <feliziani.emanuele@gmail.com>\n"
16
+ "X-Generator: Poedit 1.5.5\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
+ "Il post &egrave; protetto da password. Inserisci la password per vedere i "
23
+ "commenti."
24
+
25
+ #: comments.php:23
26
+ msgid "Response"
27
+ msgstr "Risposta"
28
+
29
+ #: comments.php:24
30
+ msgid "Responses"
31
+ msgstr "Risposte"
32
+
33
+ #: comments.php:25
34
+ msgid "One"
35
+ msgstr "Uno"
36
+
37
+ #: comments.php:26
38
+ msgid "No"
39
+ msgstr "Ancora niente"
40
+
41
+ #: comments.php:32
42
+ msgid "to"
43
+ msgstr "a"
44
+
45
+ #: comments.php:59
46
+ msgid "Comments are closed."
47
+ msgstr "Commenti chiusi."
48
+
49
+ #: comments.php:70
50
+ msgid "Leave a Reply"
51
+ msgstr "Rispondi"
52
+
53
+ #: comments.php:70
54
+ #, php-format
55
+ msgid "Leave a Reply to %s"
56
+ msgstr "Rispondi a %s"
57
+
58
+ #: comments.php:78
59
+ msgid "You must be"
60
+ msgstr "Devi essere"
61
+
62
+ #: comments.php:78
63
+ msgid "logged in"
64
+ msgstr "loggato"
65
+
66
+ #: comments.php:78
67
+ msgid "to post a comment"
68
+ msgstr "per inserire un commento"
69
+
70
+ #: comments.php:86
71
+ msgid "Logged in as"
72
+ msgstr "Loggato come"
73
+
74
+ #: comments.php:86
75
+ msgid "Log out of this account"
76
+ msgstr "Esci dall'account"
77
+
78
+ #: comments.php:86
79
+ msgid "Log out"
80
+ msgstr "Log out"
81
+
82
+ #: comments.php:93
83
+ msgid "Name"
84
+ msgstr "Nome"
85
+
86
+ #: comments.php:93 comments.php:98
87
+ msgid "(required)"
88
+ msgstr "(richiesto)"
89
+
90
+ #: comments.php:94
91
+ msgid "Your Name"
92
+ msgstr "Il Tuo Nome"
93
+
94
+ #: comments.php:98
95
+ msgid "Email"
96
+ msgstr "Email"
97
+
98
+ #: comments.php:99
99
+ msgid "Your Email"
100
+ msgstr "La Tua Email"
101
+
102
+ #: comments.php:100
103
+ msgid "will not be published"
104
+ msgstr "non sar&agrave; pubblicata"
105
+
106
+ #: comments.php:104
107
+ msgid "Website"
108
+ msgstr "Sito Web"
109
+
110
+ #: comments.php:105
111
+ msgid "Your Website"
112
+ msgstr "Il Tuo Sito Web"
113
+
114
+ #: comments.php:112
115
+ msgid "Your Comment Here..."
116
+ msgstr "Inserisci Qui il Commento…"
117
+
118
+ #: comments.php:115
119
+ msgid "Submit Comment"
120
+ msgstr "Invia il Commento"
121
+
122
+ #: comments.php:120
123
+ msgid "You can use these tags"
124
+ msgstr "Tag permessi"
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 "Articoli nella Categoria:"
134
+
135
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
136
+ msgid "Posted"
137
+ msgstr "Pubblicati il"
138
+
139
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
140
+ msgid "by"
141
+ msgstr "da"
142
+
143
+ #: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
144
+ msgid "filed under"
145
+ msgstr "sotto"
146
+
147
+ #: taxonomy-custom_cat.php:41
148
+ msgid "Read more"
149
+ msgstr "Leggi tutto"
150
+
151
+ #: functions.php:103
152
+ msgid "(Edit)"
153
+ msgstr "(Modifica)"
154
+
155
+ #: functions.php:107
156
+ msgid "Your comment is awaiting moderation."
157
+ msgstr "Il tuo commento &egrave; in attesa di moderazione."
158
+
159
+ #: functions.php:124
160
+ msgid "Search for:"
161
+ msgstr "Cerca:"
162
+
163
+ #: functions.php:125
164
+ msgid "Search the Site..."
165
+ msgstr "Cerca nel Sito..."
166
+
167
+ #: 404.php:11
168
+ msgid "Epic 404 - Article Not Found"
169
+ msgstr "404 Epico! - L'articolo non c'&egrave;"
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
+ "L'articolo che cercavi non &egrave; stato trovato. Ritenta, sarai pi&ugrave; "
176
+ "fortunato!"
177
+
178
+ #: search.php:7
179
+ msgid "Search Results for:"
180
+ msgstr "Risultati della Ricerca:"
181
+
182
+ #: search.php:23
183
+ msgid "Read more on"
184
+ msgstr "Leggi tutto su"
185
+
186
+ #: archive.php:13
187
+ msgid "Posts Tagged:"
188
+ msgstr "Tag Articolo:"
189
+
190
+ #: archive.php:17 author.php:8
191
+ msgid "Posts By:"
192
+ msgstr "Articoli Di:"
193
+
194
+ #: archive.php:21
195
+ msgid "Daily Archives:"
196
+ msgstr "Archivi Giornalieri:"
197
+
198
+ #: archive.php:25
199
+ msgid "Monthly Archives:"
200
+ msgstr "Archivi Mensili:"
201
+
202
+ #: archive.php:29
203
+ msgid "Yearly Archives:"
204
+ msgstr "Archivi Annuali:"
205
+
206
+ #: single-custom_type.php:43
207
+ msgid "Custom Tags"
208
+ msgstr "Tag personalizzati"
209
+
210
+ #: embed-tags.php:3
211
+ msgid "Tag"
212
+ msgstr "Tag"
213
+
214
+ #: embed-tags.php:3
215
+ msgid "Tags"
216
+ msgstr "Tag"
217
+
218
+ #: image.php:20
219
+ msgid "Read the rest of this entry"
220
+ msgstr "Leggi il resto di questa voce"
221
+
222
+ #: image.php:38
223
+ msgid "Sorry, no attachments matched your criteria."
224
+ msgstr "Spiacente, gli allegati che cercavi non ci sono."
225
+
226
+ #: embed-prev_next.php:3
227
+ msgid "&laquo; Older Entries"
228
+ msgstr "&laquo; Pi&ugrave; Vecchi"
229
+
230
+ #: embed-prev_next.php:4
231
+ msgid "Newer Entries &raquo;"
232
+ msgstr "Nuovi &raquo;"
233
+
234
+ #: footer.php:9
235
+ msgid "is powered by"
236
+ msgstr "powered by"
237
+
238
+ #: embed-not_found.php:3
239
+ msgid "Not Found"
240
+ msgstr "Non Trovato"
241
+
242
+ #: embed-not_found.php:6
243
+ msgid "Sorry, but the requested resource was not found on this site."
244
+ msgstr "Spiacente, non ho trovato ci&ograve; che cercavi."
245
+
246
+ #: sidebar.php:15
247
+ msgid "Please activate some Widgets."
248
+ msgstr "Attiva le Widgets."
249
+
250
+ #: library/bones.php:52
251
+ msgid "Read more &raquo;"
252
+ msgstr "Leggi tutto &raquo;"
253
+
254
+ #: library/custom-post-type.php:24
255
+ msgid "Custom Types"
256
+ msgstr "Post personalizzati"
257
+
258
+ #: library/custom-post-type.php:25
259
+ msgid "Custom Post"
260
+ msgstr "Post personalizzato"
261
+
262
+ #: library/custom-post-type.php:26
263
+ msgid "Add New"
264
+ msgstr "Aggiungi"
265
+
266
+ #: library/custom-post-type.php:27
267
+ msgid "Add New Custom Type"
268
+ msgstr "Aggiungi Post personalizzato"
269
+
270
+ #: library/custom-post-type.php:28
271
+ msgid "Edit"
272
+ msgstr "Modifica"
273
+
274
+ #: library/custom-post-type.php:29
275
+ msgid "Edit Post Types"
276
+ msgstr "Modifica Post Personalizzati"
277
+
278
+ #: library/custom-post-type.php:30
279
+ msgid "New Post Type"
280
+ msgstr "Nuovo Post"
281
+
282
+ #: library/custom-post-type.php:31
283
+ msgid "View Post Type"
284
+ msgstr "Vedi Post"
285
+
286
+ #: library/custom-post-type.php:32
287
+ msgid "Search Post Type"
288
+ msgstr "Cerca Post Personalizzato"
289
+
290
+ #: library/custom-post-type.php:33
291
+ msgid "Nothing found in the Database."
292
+ msgstr "Non c'&egrave; nulla nel Database."
293
+
294
+ #: library/custom-post-type.php:34
295
+ msgid "Nothing found in Trash"
296
+ msgstr "Non c'&egrave; nulla nel Cestino"
297
+
298
+ #: library/custom-post-type.php:37
299
+ msgid "This is the example custom post type"
300
+ msgstr "Questo &egrave; un esempio di post personalizzato"
301
+
302
+ #: library/custom-post-type.php:73
303
+ msgid "Custom Categories"
304
+ msgstr "Categorie Personalizzate"
305
+
306
+ #: library/custom-post-type.php:74
307
+ msgid "Custom Category"
308
+ msgstr "Categoria personalizzata"
309
+
310
+ #: library/custom-post-type.php:75
311
+ msgid "Search Custom Categories"
312
+ msgstr "Cerca Categorie personalizzate"
313
+
314
+ #: library/custom-post-type.php:76
315
+ msgid "All Custom Categories"
316
+ msgstr "Tutte le Categorie Personalizzate"
317
+
318
+ #: library/custom-post-type.php:77
319
+ msgid "Parent Custom Category"
320
+ msgstr "Categoria Personalizzata Genitore"
321
+
322
+ #: library/custom-post-type.php:78
323
+ msgid "Parent Custom Category:"
324
+ msgstr "Categoria Personalizzata Genitore:"
325
+
326
+ #: library/custom-post-type.php:79
327
+ msgid "Edit Custom Category"
328
+ msgstr "Modifica Categoria Personalizzata"
329
+
330
+ #: library/custom-post-type.php:80
331
+ msgid "Update Custom Category"
332
+ msgstr "Aggiorna Categoria Personalizzata"
333
+
334
+ #: library/custom-post-type.php:81
335
+ msgid "Add New Custom Category"
336
+ msgstr "Aggiungi Categoria Personalizzata"
337
+
338
+ #: library/custom-post-type.php:82
339
+ msgid "New Custom Category Name"
340
+ msgstr "Nome della Nuova Categoria Personalizzata"
341
+
342
+ #: library/custom-post-type.php:95
343
+ msgid "Custom Tag"
344
+ msgstr "Tag Personalizzato"
345
+
346
+ #: library/custom-post-type.php:96
347
+ msgid "Search Custom Tags"
348
+ msgstr "Cerca Tag Personalizzato"
349
+
350
+ #: library/custom-post-type.php:97
351
+ msgid "All Custom Tags"
352
+ msgstr "Tutti i Tag Personalizzati"
353
+
354
+ #: library/custom-post-type.php:98
355
+ msgid "Parent Custom Tag"
356
+ msgstr "Tag Personalizzato Genitore"
357
+
358
+ #: library/custom-post-type.php:99
359
+ msgid "Parent Custom Tag:"
360
+ msgstr "Tag Personalizzato Genitore:"
361
+
362
+ #: library/custom-post-type.php:100
363
+ msgid "Edit Custom Tag"
364
+ msgstr "Modifica Tag Personalizzato"
365
+
366
+ #: library/custom-post-type.php:101
367
+ msgid "Update Custom Tag"
368
+ msgstr "Aggiorna Tag Personalizzato"
369
+
370
+ #: library/custom-post-type.php:102
371
+ msgid "Add New Custom Tag"
372
+ msgstr "Aggiungi Tag Personalizzato"
373
+
374
+ #: library/custom-post-type.php:103
375
+ msgid "New Custom Tag Name"
376
+ msgstr "Nome Nuovo Tag Personalizzato"
@@ -0,0 +1,492 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-05-13 23:41+0900\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: hayashikejinan <hayashikejinan@gmail.com>\n"
8
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
9
+ "Language: ja\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n;esc_attr_e;esc_attr__;esc_html_e;esc_html__;"
15
+ "_x\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Generator: Poedit 1.5.5\n"
18
+ "Plural-Forms: nplurals=1; plural=0;\n"
19
+ "X-Poedit-SearchPath-0: ../..\n"
20
+
21
+ #: ../../404.php:13
22
+ msgid "Epic 404 - Article Not Found"
23
+ msgstr "404エラー ページが見つかりません"
24
+
25
+ #: ../../404.php:19
26
+ msgid ""
27
+ "The article you were looking for was not found, but maybe try looking again!"
28
+ msgstr "ページが見つかりませんでした。"
29
+
30
+ #: ../../404.php:31
31
+ msgid "This is the 404.php template."
32
+ msgstr ""
33
+
34
+ #: ../../archive-custom_type.php:19 ../../page-custom.php:23 ../../page.php:17
35
+ #, php-format
36
+ msgid ""
37
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
38
+ "<span class=\"author\">%3$s</span>."
39
+ msgstr ""
40
+ "<time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> | <span class="
41
+ "\"author\">%3$s</span>"
42
+
43
+ #: ../../archive-custom_type.php:19 ../../archive.php:52
44
+ #: ../../functions.php:135 ../../page-custom.php:23 ../../page.php:17
45
+ #: ../../search.php:18 ../../single-custom_type.php:32
46
+ #: ../../taxonomy-custom_cat.php:34
47
+ msgid "F jS, Y"
48
+ msgstr "Y年n月j日"
49
+
50
+ #: ../../archive-custom_type.php:43 ../../archive.php:78 ../../index.php:43
51
+ #: ../../search.php:41 ../../taxonomy-custom_cat.php:57
52
+ msgid "&laquo; Older Entries"
53
+ msgstr "&laquo; 前の記事へ"
54
+
55
+ #: ../../archive-custom_type.php:44 ../../archive.php:79 ../../index.php:44
56
+ #: ../../search.php:42 ../../taxonomy-custom_cat.php:58
57
+ msgid "Newer Entries &raquo;"
58
+ msgstr "次の記事へ &raquo;"
59
+
60
+ #: ../../archive-custom_type.php:53 ../../archive.php:88 ../../index.php:53
61
+ #: ../../page-custom.php:46 ../../page.php:40 ../../single-custom_type.php:58
62
+ #: ../../single.php:41 ../../taxonomy-custom_cat.php:67
63
+ msgid "Oops, Post Not Found!"
64
+ msgstr "投稿が見つかりません"
65
+
66
+ #: ../../archive-custom_type.php:56 ../../archive.php:91 ../../index.php:56
67
+ #: ../../page-custom.php:49 ../../page.php:43 ../../single-custom_type.php:61
68
+ #: ../../single.php:44 ../../taxonomy-custom_cat.php:70
69
+ msgid "Uh Oh. Something is missing. Try double checking things."
70
+ msgstr ""
71
+
72
+ #: ../../archive-custom_type.php:59
73
+ msgid "This is the error message in the custom posty type archive template."
74
+ msgstr ""
75
+
76
+ #: ../../archive.php:11 ../../taxonomy-custom_cat.php:24
77
+ msgid "Posts Categorized:"
78
+ msgstr "カテゴリー別アーカイブ:"
79
+
80
+ #: ../../archive.php:16
81
+ msgid "Posts Tagged:"
82
+ msgstr "タグ別アーカイブ:"
83
+
84
+ #: ../../archive.php:25
85
+ msgid "Posts By:"
86
+ msgstr "投稿者:"
87
+
88
+ #: ../../archive.php:30
89
+ msgid "Daily Archives:"
90
+ msgstr "日別アーカイブ:"
91
+
92
+ #: ../../archive.php:35
93
+ msgid "Monthly Archives:"
94
+ msgstr "月別アーカイブ:"
95
+
96
+ #: ../../archive.php:40
97
+ msgid "Yearly Archives:"
98
+ msgstr "年別アーカイブ:"
99
+
100
+ #: ../../archive.php:52 ../../index.php:17 ../../search.php:18
101
+ #: ../../single-custom_type.php:32 ../../taxonomy-custom_cat.php:34
102
+ #, php-format
103
+ msgid ""
104
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
105
+ "<span class=\"author\">%3$s</span> <span class=\"amp\">&</span> filed under "
106
+ "%4$s."
107
+ msgstr ""
108
+ "<time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> | <span class="
109
+ "\"author\">%3$s</span> | %4$s"
110
+
111
+ #: ../../archive.php:94
112
+ msgid "This is the error message in the archive.php template."
113
+ msgstr ""
114
+
115
+ #: ../../comments.php:12
116
+ msgid "This post is password protected. Enter the password to view comments."
117
+ msgstr ""
118
+ "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入"
119
+ "力してください。"
120
+
121
+ #: ../../comments.php:22
122
+ msgid "<span>No</span> Responses"
123
+ msgstr "コメントはありません"
124
+
125
+ #: ../../comments.php:22
126
+ msgid "<span>One</span> Response"
127
+ msgstr "<span>1件</span>のコメント"
128
+
129
+ #: ../../comments.php:22
130
+ msgid "<span>%</span> Response"
131
+ msgstr "<span>%件</span>のコメント"
132
+
133
+ #: ../../comments.php:50
134
+ msgid "Comments are closed."
135
+ msgstr "コメントは閉鎖されています。"
136
+
137
+ #: ../../comments.php:61
138
+ msgid "Leave a Reply"
139
+ msgstr "コメントをどうぞ"
140
+
141
+ #: ../../comments.php:61
142
+ #, php-format
143
+ msgid "Leave a Reply to %s"
144
+ msgstr "%s へ返信"
145
+
146
+ #: ../../comments.php:69
147
+ #, php-format
148
+ msgid "You must be %1$slogged in%2$s to post a comment."
149
+ msgstr ""
150
+
151
+ #: ../../comments.php:77
152
+ msgid "Logged in as"
153
+ msgstr "ログイン中"
154
+
155
+ #: ../../comments.php:77
156
+ msgid "Log out of this account"
157
+ msgstr "このアカウントをログアウトする"
158
+
159
+ #: ../../comments.php:77
160
+ msgid "Log out"
161
+ msgstr "ログアウト"
162
+
163
+ #: ../../comments.php:77
164
+ msgid "&raquo;"
165
+ msgstr "&raquo;"
166
+
167
+ #: ../../comments.php:84
168
+ msgid "Name"
169
+ msgstr "お名前"
170
+
171
+ #: ../../comments.php:84 ../../comments.php:89
172
+ msgid "(required)"
173
+ msgstr "(必須)"
174
+
175
+ #: ../../comments.php:85
176
+ msgid "Your Name*"
177
+ msgstr "あなたのお名前*"
178
+
179
+ #: ../../comments.php:89
180
+ msgid "Mail"
181
+ msgstr "メールアドレス"
182
+
183
+ #: ../../comments.php:90
184
+ msgid "Your E-Mail*"
185
+ msgstr "あなたのメールアドレス*"
186
+
187
+ #: ../../comments.php:91
188
+ msgid "(will not be published)"
189
+ msgstr "(非公開)"
190
+
191
+ #: ../../comments.php:95
192
+ msgid "Website"
193
+ msgstr "ウェブサイト"
194
+
195
+ #: ../../comments.php:96
196
+ msgid "Got a website?"
197
+ msgstr "Webサイトを訪れる"
198
+
199
+ #: ../../comments.php:103
200
+ msgid "Your Comment here..."
201
+ msgstr "コメントを入力して下さい…"
202
+
203
+ #: ../../comments.php:106
204
+ msgid "Submit"
205
+ msgstr "送信"
206
+
207
+ #: ../../comments.php:111
208
+ msgid "You can use these tags"
209
+ msgstr "これらのタグを使うことができます"
210
+
211
+ #: ../../functions.php:79
212
+ msgid "Sidebar 1"
213
+ msgstr "サイドバー 1"
214
+
215
+ #: ../../functions.php:80
216
+ msgid "The first (primary) sidebar."
217
+ msgstr "メインのサイドバー"
218
+
219
+ #: ../../functions.php:134
220
+ #, php-format
221
+ msgid "<cite class=\"fn\">%s</cite>"
222
+ msgstr "<cite class=\"fn\">%s</cite>"
223
+
224
+ #: ../../functions.php:136
225
+ msgid "(Edit)"
226
+ msgstr "(編集)"
227
+
228
+ #: ../../functions.php:140
229
+ msgid "Your comment is awaiting moderation."
230
+ msgstr "あなたのコメントは管理者の承認待ちです。"
231
+
232
+ #: ../../functions.php:157
233
+ msgid "Search for:"
234
+ msgstr "検索:"
235
+
236
+ #: ../../functions.php:158
237
+ msgid "Search the Site..."
238
+ msgstr "このサイト内を検索…"
239
+
240
+ #: ../../functions.php:159
241
+ msgid "Search"
242
+ msgstr "検索"
243
+
244
+ #: ../../index.php:28 ../../page-custom.php:34 ../../page.php:28
245
+ #: ../../single.php:27
246
+ msgid "Tags:"
247
+ msgstr "タグ:"
248
+
249
+ #: ../../index.php:59
250
+ msgid "This is the error message in the index.php template."
251
+ msgstr ""
252
+
253
+ #: ../../page-custom.php:52
254
+ msgid "This is the error message in the page-custom.php template."
255
+ msgstr ""
256
+
257
+ #: ../../page.php:46
258
+ msgid "This is the error message in the page.php template."
259
+ msgstr ""
260
+
261
+ #: ../../search.php:8
262
+ msgid "Search Results for:"
263
+ msgstr "検索結果:"
264
+
265
+ #: ../../search.php:24 ../../library/bones.php:380
266
+ msgid "Read more &raquo;"
267
+ msgstr "もっと読む &raquo;"
268
+
269
+ #: ../../search.php:51
270
+ msgid "Sorry, No Results."
271
+ msgstr "表示できるものがありません。"
272
+
273
+ #: ../../search.php:54
274
+ msgid "Try your search again."
275
+ msgstr "もう一度検索してみてださい。"
276
+
277
+ #: ../../search.php:57
278
+ msgid "This is the error message in the search.php template."
279
+ msgstr ""
280
+
281
+ #: ../../sidebar.php:12
282
+ msgid "Please activate some Widgets."
283
+ msgstr "いくつかのウィジェットを有効にしてください。"
284
+
285
+ #: ../../single-custom_type.php:44
286
+ msgid "Custom Tags:"
287
+ msgstr "カスタムタグ:"
288
+
289
+ #: ../../single-custom_type.php:64
290
+ msgid "This is the error message in the single-custom_type.php template."
291
+ msgstr ""
292
+
293
+ #: ../../single.php:17
294
+ #, php-format
295
+ msgid ""
296
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
297
+ "<span class=\"author\">%3$s</span> <span class=\"amp\">&amp;</span> filed "
298
+ "under %4$s."
299
+ msgstr ""
300
+ "<time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> | <span class="
301
+ "\"author\">%3$s</span> | %4$s"
302
+
303
+ #: ../../single.php:47
304
+ msgid "This is the error message in the single.php template."
305
+ msgstr ""
306
+
307
+ #: ../../taxonomy-custom_cat.php:40
308
+ msgid "Read More &raquo;"
309
+ msgstr "もっと読む &raquo;"
310
+
311
+ #: ../../taxonomy-custom_cat.php:73
312
+ msgid "This is the error message in the taxonomy-custom_cat.php template."
313
+ msgstr ""
314
+
315
+ #: ../../library/admin.php:66
316
+ msgid "j F Y @ g:i a"
317
+ msgstr "Y年月j日 G:i"
318
+
319
+ #: ../../library/admin.php:78
320
+ msgid "Recently on Themble (Customize on admin.php)"
321
+ msgstr "Thembleの最新ニュース (admin.php のカスタム)"
322
+
323
+ #: ../../library/admin.php:125
324
+ msgid ""
325
+ "<span id=\"footer-thankyou\">Developed by <a href=\"http://yoursite.com\" "
326
+ "target=\"_blank\">Your Site Name</a></span>. Built using <a href=\"http://"
327
+ "themble.com/bones\" target=\"_blank\">Bones</a>."
328
+ msgstr ""
329
+ "<span id=\"footer-thankyou\">開発者: <a href=\"http://yoursite.com\" target="
330
+ "\"_blank\">Your Site Name</a></span>。 <a href=\"http://themble.com/bones\" "
331
+ "target=\"_blank\">Bones</a> を使用。"
332
+
333
+ #: ../../library/bones.php:213 ../../library/bones.php:230
334
+ msgid "The Main Menu"
335
+ msgstr "メインメニュー"
336
+
337
+ #: ../../library/bones.php:214 ../../library/bones.php:248
338
+ msgid "Footer Links"
339
+ msgstr "フッターのリンク"
340
+
341
+ #: ../../library/bones.php:300
342
+ msgid "No Related Posts Yet!"
343
+ msgstr "関連する記事はありません。"
344
+
345
+ #: ../../library/bones.php:344
346
+ msgid "First"
347
+ msgstr "最初"
348
+
349
+ #: ../../library/bones.php:361
350
+ msgid "Last"
351
+ msgstr "最後"
352
+
353
+ #: ../../library/bones.php:380
354
+ msgid "Read"
355
+ msgstr ""
356
+
357
+ #: ../../library/bones.php:395
358
+ #, php-format
359
+ msgid "Posts by %s"
360
+ msgstr ""
361
+
362
+ #: ../../library/custom-post-type.php:24
363
+ msgid "Custom Types"
364
+ msgstr "カスタム投稿タイプ"
365
+
366
+ #: ../../library/custom-post-type.php:25
367
+ msgid "Custom Post"
368
+ msgstr "カスタム投稿"
369
+
370
+ #: ../../library/custom-post-type.php:26
371
+ msgid "All Custom Posts"
372
+ msgstr "カスタム投稿一覧"
373
+
374
+ #: ../../library/custom-post-type.php:27
375
+ msgid "Add New"
376
+ msgstr "新規追加"
377
+
378
+ #: ../../library/custom-post-type.php:28
379
+ msgid "Add New Custom Type"
380
+ msgstr "新規カスタム投稿タイプを追加"
381
+
382
+ #: ../../library/custom-post-type.php:29
383
+ msgid "Edit"
384
+ msgstr "編集"
385
+
386
+ #: ../../library/custom-post-type.php:30
387
+ msgid "Edit Post Types"
388
+ msgstr "カスタム投稿を編集"
389
+
390
+ #: ../../library/custom-post-type.php:31
391
+ msgid "New Post Type"
392
+ msgstr ""
393
+
394
+ #: ../../library/custom-post-type.php:32
395
+ msgid "View Post Type"
396
+ msgstr "カスタム投稿を表示"
397
+
398
+ #: ../../library/custom-post-type.php:33
399
+ msgid "Search Post Type"
400
+ msgstr "投稿タイプを検索"
401
+
402
+ #: ../../library/custom-post-type.php:34
403
+ msgid "Nothing found in the Database."
404
+ msgstr "投稿が見つかりませんでした。"
405
+
406
+ #: ../../library/custom-post-type.php:35
407
+ msgid "Nothing found in Trash"
408
+ msgstr "ゴミ箱は空です。"
409
+
410
+ #: ../../library/custom-post-type.php:38
411
+ msgid "This is the example custom post type"
412
+ msgstr ""
413
+
414
+ #: ../../library/custom-post-type.php:75
415
+ msgid "Custom Categories"
416
+ msgstr "カスタムカテゴリ"
417
+
418
+ #: ../../library/custom-post-type.php:76
419
+ msgid "Custom Category"
420
+ msgstr "カスタムカテゴリ"
421
+
422
+ #: ../../library/custom-post-type.php:77
423
+ msgid "Search Custom Categories"
424
+ msgstr "カスタムカテゴリーを検索"
425
+
426
+ #: ../../library/custom-post-type.php:78
427
+ msgid "All Custom Categories"
428
+ msgstr "カスタムカテゴリ一覧"
429
+
430
+ #: ../../library/custom-post-type.php:79
431
+ msgid "Parent Custom Category"
432
+ msgstr "親のカスタムカテゴリー"
433
+
434
+ #: ../../library/custom-post-type.php:80
435
+ msgid "Parent Custom Category:"
436
+ msgstr "親のカスタムカテゴリー:"
437
+
438
+ #: ../../library/custom-post-type.php:81
439
+ msgid "Edit Custom Category"
440
+ msgstr "カスタムカテゴリーを編集"
441
+
442
+ #: ../../library/custom-post-type.php:82
443
+ msgid "Update Custom Category"
444
+ msgstr "カスタムカテゴリーを更新"
445
+
446
+ #: ../../library/custom-post-type.php:83
447
+ msgid "Add New Custom Category"
448
+ msgstr "新規カスタムカテゴリーを追加"
449
+
450
+ #: ../../library/custom-post-type.php:84
451
+ msgid "New Custom Category Name"
452
+ msgstr ""
453
+
454
+ #: ../../library/custom-post-type.php:98
455
+ msgid "Custom Tags"
456
+ msgstr "カスタムタグ"
457
+
458
+ #: ../../library/custom-post-type.php:99
459
+ msgid "Custom Tag"
460
+ msgstr "カスタムタグ"
461
+
462
+ #: ../../library/custom-post-type.php:100
463
+ msgid "Search Custom Tags"
464
+ msgstr "カスタムタグを検索"
465
+
466
+ #: ../../library/custom-post-type.php:101
467
+ msgid "All Custom Tags"
468
+ msgstr "カスタムタグ一覧"
469
+
470
+ #: ../../library/custom-post-type.php:102
471
+ msgid "Parent Custom Tag"
472
+ msgstr "親のカスタムタグ"
473
+
474
+ #: ../../library/custom-post-type.php:103
475
+ msgid "Parent Custom Tag:"
476
+ msgstr "親のカスタムタグ:"
477
+
478
+ #: ../../library/custom-post-type.php:104
479
+ msgid "Edit Custom Tag"
480
+ msgstr "カスタムタグを編集"
481
+
482
+ #: ../../library/custom-post-type.php:105
483
+ msgid "Update Custom Tag"
484
+ msgstr "カスタムタグを更新"
485
+
486
+ #: ../../library/custom-post-type.php:106
487
+ msgid "Add New Custom Tag"
488
+ msgstr "新規カスタムタグを追加"
489
+
490
+ #: ../../library/custom-post-type.php:107
491
+ msgid "New Custom Tag Name"
492
+ msgstr ""