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,382 @@
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: /home/fulgor/GIT/bones\n"
15
+ "Last-Translator: Elron <elron100duck@gmail.com>\n"
16
+ "X-Poedit-Language: Hebrew\n"
17
+ "X-Poedit-Country: ISRAEL\n"
18
+ "X-Poedit-SearchPath-0: /home/fulgor/GIT/bones\n"
19
+
20
+ #: comments.php:12
21
+ msgid "This post is password protected. Enter the password to view comments."
22
+ msgstr "פוסט זה מוגן בסיסמא. נא להזין סיסמא להצגת התגובות."
23
+
24
+ #: comments.php:23
25
+ msgid "Response"
26
+ msgstr "תגובה"
27
+
28
+ #: comments.php:24
29
+ msgid "Responses"
30
+ msgstr "תגובות"
31
+
32
+ #: comments.php:25
33
+ msgid "One"
34
+ msgstr "אחד"
35
+
36
+ #: comments.php:26
37
+ msgid "No"
38
+ msgstr "לא"
39
+
40
+ #: comments.php:32
41
+ msgid "to"
42
+ msgstr "אל"
43
+
44
+ #: comments.php:59
45
+ msgid "Comments are closed."
46
+ msgstr "התגובות סגורות."
47
+
48
+ #: comments.php:70
49
+ msgid "Leave a Reply"
50
+ msgstr "השארת תגובה"
51
+
52
+ #: comments.php:70
53
+ #, php-format
54
+ msgid "Leave a Reply to %s"
55
+ msgstr "השארת תגובה ל-%s"
56
+
57
+ #: comments.php:78
58
+ msgid "You must be"
59
+ msgstr "עליך להיות"
60
+
61
+ #: comments.php:78
62
+ msgid "logged in"
63
+ msgstr "מחובר"
64
+
65
+ #: comments.php:78
66
+ msgid "to post a comment"
67
+ msgstr "להגיב"
68
+
69
+ #: comments.php:86
70
+ msgid "Logged in as"
71
+ msgstr "מחובר כ"
72
+
73
+ #: comments.php:86
74
+ msgid "Log out of this account"
75
+ msgstr "להתנתק ממשתמש זה"
76
+
77
+ #: comments.php:86
78
+ msgid "Log out"
79
+ msgstr "להתנתק"
80
+
81
+ #: comments.php:93
82
+ msgid "Name"
83
+ msgstr "שם"
84
+
85
+ #: comments.php:93
86
+ #: comments.php:98
87
+ msgid "(required)"
88
+ msgstr "(חובה)"
89
+
90
+ #: comments.php:94
91
+ msgid "Your Name"
92
+ msgstr "השם שלך"
93
+
94
+ #: comments.php:98
95
+ msgid "Email"
96
+ msgstr "אימייל"
97
+
98
+ #: comments.php:99
99
+ msgid "Your Email"
100
+ msgstr "האימייל שלך"
101
+
102
+ #: comments.php:100
103
+ msgid "will not be published"
104
+ msgstr "לא יפורסם"
105
+
106
+ #: comments.php:104
107
+ msgid "Website"
108
+ msgstr "אתר אינטרנט"
109
+
110
+ #: comments.php:105
111
+ msgid "Your Website"
112
+ msgstr "אתר האינטרנט שלך"
113
+
114
+ #: comments.php:112
115
+ msgid "Your Comment Here..."
116
+ msgstr "התגובה שלך כאן..."
117
+
118
+ #: comments.php:115
119
+ msgid "Submit Comment"
120
+ msgstr "שלח תגובה"
121
+
122
+ #: comments.php:120
123
+ msgid "You can use these tags"
124
+ msgstr "אפשר להשתמש בתגים אלו"
125
+
126
+ #: header.php:23
127
+ #, php-format
128
+ msgid "Page %s"
129
+ msgstr "עמוד %s"
130
+
131
+ #: taxonomy-custom_cat.php:22
132
+ #: archive.php:9
133
+ msgid "Posts Categorized:"
134
+ msgstr "פוסטים לפי קטגוריות:"
135
+
136
+ #: taxonomy-custom_cat.php:32
137
+ #: embed-post_meta.php:1
138
+ #: single-custom_type.php:30
139
+ msgid "Posted"
140
+ msgstr "פורסם"
141
+
142
+ #: taxonomy-custom_cat.php:32
143
+ #: embed-post_meta.php:1
144
+ #: single-custom_type.php:30
145
+ msgid "by"
146
+ msgstr "מאת"
147
+
148
+ #: taxonomy-custom_cat.php:32
149
+ #: embed-post_meta.php:1
150
+ #: single-custom_type.php:30
151
+ msgid "filed under"
152
+ msgstr "משוייך תחת"
153
+
154
+ #: taxonomy-custom_cat.php:41
155
+ msgid "Read more"
156
+ msgstr "לקרוא עוד"
157
+
158
+ #: functions.php:103
159
+ msgid "(Edit)"
160
+ msgstr "(לערוך)"
161
+
162
+ #: functions.php:107
163
+ msgid "Your comment is awaiting moderation."
164
+ msgstr "תגובתך ממתינה לאישור."
165
+
166
+ #: functions.php:124
167
+ msgid "Search for:"
168
+ msgstr "חפש עבור:"
169
+
170
+ #: functions.php:125
171
+ msgid "Search the Site..."
172
+ msgstr "חיפוש באתר..."
173
+
174
+ #: 404.php:11
175
+ msgid "Epic 404 - Article Not Found"
176
+ msgstr "404 - המאמר לא נמצא"
177
+
178
+ #: 404.php:17
179
+ msgid "The article you were looking for was not found, but maybe try looking again!"
180
+ msgstr "המאמר שחיפשת לא נמצא, אבל אפשר לנסות לחפש שוב!"
181
+
182
+ #: search.php:7
183
+ msgid "Search Results for:"
184
+ msgstr "תוצאות חיפוש עבור:"
185
+
186
+ #: search.php:23
187
+ msgid "Read more on"
188
+ msgstr "לקרוא עוד בנושא"
189
+
190
+ #: archive.php:13
191
+ msgid "Posts Tagged:"
192
+ msgstr "פוסטים מתוייגים:"
193
+
194
+ #: archive.php:17
195
+ #: author.php:8
196
+ msgid "Posts By:"
197
+ msgstr "פוסטים מאת:"
198
+
199
+ #: archive.php:21
200
+ msgid "Daily Archives:"
201
+ msgstr "ארכיון יומי:"
202
+
203
+ #: archive.php:25
204
+ msgid "Monthly Archives:"
205
+ msgstr "ארכיון חודשי:"
206
+
207
+ #: archive.php:29
208
+ msgid "Yearly Archives:"
209
+ msgstr "ארכיון שנתי:"
210
+
211
+ #: single-custom_type.php:43
212
+ msgid "Custom Tags"
213
+ msgstr "תגים מיוחדים"
214
+
215
+ #: embed-tags.php:3
216
+ msgid "Tag"
217
+ msgstr "תג"
218
+
219
+ #: embed-tags.php:3
220
+ msgid "Tags"
221
+ msgstr "תגים"
222
+
223
+ #: image.php:20
224
+ msgid "Read the rest of this entry"
225
+ msgstr "לקרוא את ההמשך"
226
+
227
+ #: image.php:38
228
+ msgid "Sorry, no attachments matched your criteria."
229
+ msgstr "מצטערים, לא נמצא השתייכות לקרטריון שלך."
230
+
231
+ #: embed-prev_next.php:3
232
+ msgid "&laquo; Older Entries"
233
+ msgstr "ישן יותר &raquo;"
234
+
235
+ #: embed-prev_next.php:4
236
+ msgid "Newer Entries &raquo;"
237
+ msgstr "&laquo; חדש יותר"
238
+
239
+ #: footer.php:9
240
+ msgid "is powered by"
241
+ msgstr "מופעל על ידי"
242
+
243
+ #: embed-not_found.php:3
244
+ msgid "Not Found"
245
+ msgstr "לא נמצא"
246
+
247
+ #: embed-not_found.php:6
248
+ msgid "Sorry, but the requested resource was not found on this site."
249
+ msgstr "מצטערים, התוכן המבוקש לא נמצא באתר."
250
+
251
+ #: sidebar.php:15
252
+ msgid "Please activate some Widgets."
253
+ msgstr "נא להפעיל כמה וידג'טים."
254
+
255
+ #: library/bones.php:52
256
+ msgid "Read more &raquo;"
257
+ msgstr "להמשיך לקרוא &laquo;"
258
+
259
+ #: library/custom-post-type.php:24
260
+ msgid "Custom Types"
261
+ msgstr "סוגים מיוחדים"
262
+
263
+ #: library/custom-post-type.php:25
264
+ msgid "Custom Post"
265
+ msgstr "פוסט מיוחד"
266
+
267
+ #: library/custom-post-type.php:26
268
+ msgid "Add New"
269
+ msgstr "להוסיף חדש"
270
+
271
+ #: library/custom-post-type.php:27
272
+ msgid "Add New Custom Type"
273
+ msgstr "להוסיף סוג מיוחד חדש"
274
+
275
+ #: library/custom-post-type.php:28
276
+ msgid "Edit"
277
+ msgstr "לערוך"
278
+
279
+ #: library/custom-post-type.php:29
280
+ msgid "Edit Post Types"
281
+ msgstr "לערוך סוגי פוסט"
282
+
283
+ #: library/custom-post-type.php:30
284
+ msgid "New Post Type"
285
+ msgstr "סוג פוסט חדש"
286
+
287
+ #: library/custom-post-type.php:31
288
+ msgid "View Post Type"
289
+ msgstr "הצגת סוג פוסט"
290
+
291
+ #: library/custom-post-type.php:32
292
+ msgid "Search Post Type"
293
+ msgstr "חיפוש פוסט מיוחד"
294
+
295
+ #: library/custom-post-type.php:33
296
+ msgid "Nothing found in the Database."
297
+ msgstr "לא נמצא כלום במאגר הנתונים."
298
+
299
+ #: library/custom-post-type.php:34
300
+ msgid "Nothing found in Trash"
301
+ msgstr "הפח מרוקן"
302
+
303
+ #: library/custom-post-type.php:37
304
+ msgid "This is the example custom post type"
305
+ msgstr "זוהי דוגמא לסוג פוסט מיוחד"
306
+
307
+ #: library/custom-post-type.php:73
308
+ msgid "Custom Categories"
309
+ msgstr "קטגוריות מיוחדות"
310
+
311
+ #: library/custom-post-type.php:74
312
+ msgid "Custom Category"
313
+ msgstr "קטגוריה מיוחדת"
314
+
315
+ #: library/custom-post-type.php:75
316
+ msgid "Search Custom Categories"
317
+ msgstr "חיפוש קטגוריות מיוחדות"
318
+
319
+ #: library/custom-post-type.php:76
320
+ msgid "All Custom Categories"
321
+ msgstr "כל הקטגוריות המיוחדות"
322
+
323
+ #: library/custom-post-type.php:77
324
+ msgid "Parent Custom Category"
325
+ msgstr "הורה של קטגוריה מיוחדת"
326
+
327
+ #: library/custom-post-type.php:78
328
+ msgid "Parent Custom Category:"
329
+ msgstr "הורה של קטגוריה מיוחדת:"
330
+
331
+ #: library/custom-post-type.php:79
332
+ msgid "Edit Custom Category"
333
+ msgstr "עריכת קטגוריה מיוחדת"
334
+
335
+ #: library/custom-post-type.php:80
336
+ msgid "Update Custom Category"
337
+ msgstr "לעדכן קטגוריה מיוחדת"
338
+
339
+ #: library/custom-post-type.php:81
340
+ msgid "Add New Custom Category"
341
+ msgstr "להוסיף קטגוריה מיוחדת חדשה"
342
+
343
+ #: library/custom-post-type.php:82
344
+ msgid "New Custom Category Name"
345
+ msgstr "להוסיף שם קטגוריה חדשה"
346
+
347
+ #: library/custom-post-type.php:95
348
+ msgid "Custom Tag"
349
+ msgstr "תג מיוחד"
350
+
351
+ #: library/custom-post-type.php:96
352
+ msgid "Search Custom Tags"
353
+ msgstr "חיפוש תגים מיוחדים"
354
+
355
+ #: library/custom-post-type.php:97
356
+ msgid "All Custom Tags"
357
+ msgstr "כל התגים המיוחדים"
358
+
359
+ #: library/custom-post-type.php:98
360
+ msgid "Parent Custom Tag"
361
+ msgstr "הורה של תג מיוחד"
362
+
363
+ #: library/custom-post-type.php:99
364
+ msgid "Parent Custom Tag:"
365
+ msgstr "הורה של תג מיוחד"
366
+
367
+ #: library/custom-post-type.php:100
368
+ msgid "Edit Custom Tag"
369
+ msgstr "לערוך תג מיוחד"
370
+
371
+ #: library/custom-post-type.php:101
372
+ msgid "Update Custom Tag"
373
+ msgstr "לעדכן תג מיוחד"
374
+
375
+ #: library/custom-post-type.php:102
376
+ msgid "Add New Custom Tag"
377
+ msgstr "להוסיף תג מיוחד חדש"
378
+
379
+ #: library/custom-post-type.php:103
380
+ msgid "New Custom Tag Name"
381
+ msgstr "שם חדש לתג מיוחד"
382
+
@@ -0,0 +1,548 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-01 19:37+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Jurica Zuanović <jurica.zuanovic@gmail.com>\n"
8
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
9
+ "Language: hr\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;_x\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.5.3\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: 404.php:13
22
+ msgid "Epic 404 - Article Not Found"
23
+ msgstr "Epski 404 - Članak nije pronađen"
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
+ "Članak koji ste tražili nije pronađen, ali pokušajte ponovno potražiti!"
30
+
31
+ #: 404.php:31
32
+ msgid "This is the 404.php template."
33
+ msgstr "Ovo je predložak 404.php."
34
+
35
+ #: archive-custom_type.php:19 page-custom.php:23 page.php:17
36
+ #, php-format
37
+ msgid ""
38
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
39
+ "<span class=\"author\">%3$s</span>."
40
+ msgstr ""
41
+ "Objavljeno <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> "
42
+ "autor <span class=\"author\">%3$s</span>."
43
+
44
+ #: archive-custom_type.php:19 archive.php:52 functions.php:135
45
+ #: page-custom.php:23 page.php:17 search.php:18
46
+ msgid "F jS, Y"
47
+ msgstr "j. F Y."
48
+
49
+ #: archive-custom_type.php:43 archive.php:78 index.php:42 search.php:41
50
+ #: taxonomy-custom_cat.php:57
51
+ msgid "&laquo; Older Entries"
52
+ msgstr "&laquo; Stariji Unosi"
53
+
54
+ #: archive-custom_type.php:44 archive.php:79 index.php:43 search.php:42
55
+ #: taxonomy-custom_cat.php:58
56
+ msgid "Newer Entries &raquo;"
57
+ msgstr "Noviji Unosi &raquo;"
58
+
59
+ #: archive-custom_type.php:53 archive.php:88 index.php:52 page-custom.php:48
60
+ #: page.php:40 single-custom_type.php:58 single.php:41
61
+ #: taxonomy-custom_cat.php:67
62
+ msgid "Oops, Post Not Found!"
63
+ msgstr "Uups, Post nije pronađen!"
64
+
65
+ #: archive-custom_type.php:56 archive.php:91 index.php:55 page-custom.php:51
66
+ #: page.php:43 single-custom_type.php:61 single.php:44
67
+ #: taxonomy-custom_cat.php:70
68
+ msgid "Uh Oh. Something is missing. Try double checking things."
69
+ msgstr "Oh. Nešto nedostaje. Dobro provjerite."
70
+
71
+ #: archive-custom_type.php:59
72
+ msgid "This is the error message in the custom posty type archive template."
73
+ msgstr "Ovo je poruka greške u predlošku arhive prilagođenog post tipa."
74
+
75
+ #: archive.php:11 taxonomy-custom_cat.php:24
76
+ msgid "Posts Categorized:"
77
+ msgstr "Postovi Kategorizirani:"
78
+
79
+ #: archive.php:16
80
+ msgid "Posts Tagged:"
81
+ msgstr "Postovi Označeni:"
82
+
83
+ #: archive.php:25
84
+ msgid "Posts By:"
85
+ msgstr "Postovi od:"
86
+
87
+ #: archive.php:30
88
+ msgid "Daily Archives:"
89
+ msgstr "Dnevne Arhive:"
90
+
91
+ #: archive.php:35
92
+ msgid "Monthly Archives:"
93
+ msgstr "Mjesečne Arhive:"
94
+
95
+ #: archive.php:40
96
+ msgid "Yearly Archives:"
97
+ msgstr "Godišnje Arhive:"
98
+
99
+ #: archive.php:52 index.php:17 search.php:18 single-custom_type.php:32
100
+ #: taxonomy-custom_cat.php:34
101
+ #, php-format
102
+ msgid ""
103
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
104
+ "<span class=\"author\">%3$s</span> <span class=\"amp\">&</span> filed under "
105
+ "%4$s."
106
+ msgstr ""
107
+ "Objavljeno <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> "
108
+ "autor <span class=\"author\">%3$s</span> <span class=\"amp\">&amp;</span> "
109
+ "objavljeno u %4$s."
110
+
111
+ #: archive.php:94
112
+ msgid "This is the error message in the archive.php template."
113
+ msgstr "Ovo je poruka greške u predlošku archive.php."
114
+
115
+ #: comments.php:12
116
+ msgid "This post is password protected. Enter the password to view comments."
117
+ msgstr ""
118
+ "Ovaj post je zaštićen lozinkom. Unesite lozinku kako bi vidjeli komentare."
119
+
120
+ #: comments.php:22
121
+ msgid "<span>No</span> Responses"
122
+ msgstr "<span>Nema</span> Odgovora"
123
+
124
+ #: comments.php:22
125
+ msgid "<span>One</span> Response"
126
+ msgstr "<span>Jedan</span> Odgovor"
127
+
128
+ #: comments.php:22
129
+ msgid "<span>%</span> Response"
130
+ msgstr "<span>%</span> Odgovor"
131
+
132
+ #: comments.php:50
133
+ msgid "Comments are closed."
134
+ msgstr "Komentari su zatvoreni."
135
+
136
+ #: comments.php:61
137
+ msgid "Leave a Reply"
138
+ msgstr "Napišite Odgovor"
139
+
140
+ #: comments.php:61
141
+ #, php-format
142
+ msgid "Leave a Reply to %s"
143
+ msgstr "Napišite Odgovor %s"
144
+
145
+ #: comments.php:69
146
+ #, php-format
147
+ msgid "You must be %1$slogged in%2$s to post a comment."
148
+ msgstr "Morate biti %1$slogged in%2$s kako bi napisali komentar."
149
+
150
+ #: comments.php:77
151
+ msgid "Logged in as"
152
+ msgstr "Prijavljeni kao"
153
+
154
+ #: comments.php:77
155
+ msgid "Log out of this account"
156
+ msgstr "Odjava sa ovog računa"
157
+
158
+ #: comments.php:77
159
+ msgid "Log out"
160
+ msgstr "Odjava"
161
+
162
+ #: comments.php:77
163
+ msgid "&raquo;"
164
+ msgstr "&raquo;"
165
+
166
+ #: comments.php:84
167
+ msgid "Name"
168
+ msgstr "Ime"
169
+
170
+ #: comments.php:84 comments.php:89
171
+ msgid "(required)"
172
+ msgstr "(obavezno)"
173
+
174
+ #: comments.php:85
175
+ msgid "Your Name*"
176
+ msgstr "Vaše Ime*"
177
+
178
+ #: comments.php:89
179
+ msgid "Mail"
180
+ msgstr "E-pošta"
181
+
182
+ #: comments.php:90
183
+ msgid "Your E-Mail*"
184
+ msgstr "Vaša E-pošta*"
185
+
186
+ #: comments.php:91
187
+ msgid "(will not be published)"
188
+ msgstr "(neće biti objavljeno)"
189
+
190
+ #: comments.php:95
191
+ msgid "Website"
192
+ msgstr "Web stranica"
193
+
194
+ #: comments.php:96
195
+ msgid "Got a website?"
196
+ msgstr "Imate Web stranicu?"
197
+
198
+ #: comments.php:103
199
+ msgid "Your Comment here..."
200
+ msgstr "Vaš komentar ovdje..."
201
+
202
+ #: comments.php:106
203
+ msgid "Submit"
204
+ msgstr "Pošalji"
205
+
206
+ #: comments.php:111
207
+ msgid "You can use these tags"
208
+ msgstr "Možete koristiti ove oznake"
209
+
210
+ #: functions.php:79
211
+ msgid "Sidebar 1"
212
+ msgstr "Bočna traka 1"
213
+
214
+ #: functions.php:80
215
+ msgid "The first (primary) sidebar."
216
+ msgstr "Prva (primarna) bočna traka."
217
+
218
+ #: functions.php:134
219
+ #, php-format
220
+ msgid "<cite class=\"fn\">%s</cite>"
221
+ msgstr "<cite class=\"fn\">%s</cite>"
222
+
223
+ #: functions.php:136
224
+ msgid "(Edit)"
225
+ msgstr "(Uredi)"
226
+
227
+ #: functions.php:140
228
+ msgid "Your comment is awaiting moderation."
229
+ msgstr "Vaš komentar čeka moderaciju."
230
+
231
+ #: functions.php:157
232
+ msgid "Search for:"
233
+ msgstr "Pretraži:"
234
+
235
+ #: functions.php:158
236
+ msgid "Search the Site..."
237
+ msgstr "Pretraži stranicu..."
238
+
239
+ #: index.php:27 page-custom.php:34 page.php:28 single.php:27
240
+ msgid "Tags:"
241
+ msgstr "Oznake:"
242
+
243
+ #: index.php:58
244
+ msgid "This is the error message in the index.php template."
245
+ msgstr "Ovo je poruka greške u predlošku index.php."
246
+
247
+ #: page-custom.php:54
248
+ msgid "This is the error message in the page-custom.php template."
249
+ msgstr "Ovo je poruka greške u predlošku page-custom.php."
250
+
251
+ #: page.php:46
252
+ msgid "This is the error message in the page.php template."
253
+ msgstr "Ovo je poruka greške u predlošku page.php."
254
+
255
+ #: search.php:8
256
+ msgid "Search Results for:"
257
+ msgstr "Rezultati pretrage za:"
258
+
259
+ #: search.php:24
260
+ msgid "Read more &raquo;"
261
+ msgstr "Nastavi čitati &raquo;"
262
+
263
+ #: search.php:51
264
+ msgid "Sorry, No Results."
265
+ msgstr "Žalim, nema rezultata."
266
+
267
+ #: search.php:54
268
+ msgid "Try your search again."
269
+ msgstr "Pokušajte ponoviti pretragu."
270
+
271
+ #: search.php:57
272
+ msgid "This is the error message in the search.php template."
273
+ msgstr "Ovo je poruka greške u predlošku search.php."
274
+
275
+ #: sidebar.php:12
276
+ msgid "Please activate some Widgets."
277
+ msgstr "Molim aktivirajte neke Widgete."
278
+
279
+ #: single-custom_type.php:32 single.php:17 taxonomy-custom_cat.php:34
280
+ msgid "F jS, Y"
281
+ msgstr "j. F Y."
282
+
283
+ #: single-custom_type.php:44
284
+ msgid "Custom Tags:"
285
+ msgstr "Prilagođene Oznake:"
286
+
287
+ #: single-custom_type.php:64
288
+ msgid "This is the error message in the single-custom_type.php template."
289
+ msgstr "Ovo je poruka greške u predlošku single-custom_type.php."
290
+
291
+ #: single.php:17
292
+ #, php-format
293
+ msgid ""
294
+ "Posted <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> by "
295
+ "<span class=\"author\">%3$s</span> <span class=\"amp\">&amp;</span> filed "
296
+ "under %4$s."
297
+ msgstr ""
298
+ "Objavljeno <time class=\"updated\" datetime=\"%1$s\" pubdate>%2$s</time> "
299
+ "autor <span class=\"author\">%3$s</span> <span class=\"amp\">&amp;</span> "
300
+ "objavljeno u %4$s."
301
+
302
+ #: single.php:47
303
+ msgid "This is the error message in the single.php template."
304
+ msgstr "Ovo je poruka greške u predlošku single.php."
305
+
306
+ #: taxonomy-custom_cat.php:40
307
+ msgid "Read More &raquo;"
308
+ msgstr "Nastavi čitati &raquo;"
309
+
310
+ #: taxonomy-custom_cat.php:73
311
+ msgid "This is the error message in the taxonomy-custom_cat.php template."
312
+ msgstr "Ovo je poruka greške u predlošku taxonomy-custom_cat.php."
313
+
314
+ #: library/admin.php:66
315
+ msgid "j F Y @ g:i a"
316
+ msgstr "j F Y @ g:i a"
317
+
318
+ #: library/admin.php:78
319
+ msgid "Recently on Themble (Customize on admin.php)"
320
+ msgstr "Najnovije sa Themble (Prilagodi u admin.php)"
321
+
322
+ #: library/admin.php:123
323
+ msgid ""
324
+ "<span id=\"footer-thankyou\">Developed by <a href=\"http://yoursite.com\" "
325
+ "target=\"_blank\">Your Site Name</a></span>. Built using <a href=\"http://"
326
+ "themble.com/bones\" target=\"_blank\">Bones</a>."
327
+ msgstr ""
328
+ "<span id=\"footer-thankyou\">Razvio <a href=\"http://jurica-zuanovic.from.hr"
329
+ "\" target=\"_blank\">juricazuanovic</a></span>. Izgrađeno koristeći <a href="
330
+ "\"http://hr.wordpress.org\" target=\"_blank\">WordPress</a> i <a href="
331
+ "\"http://themble.com/bones\" target=\"_blank\">Bones</a>."
332
+
333
+ #: library/bones.php:217 library/bones.php:234
334
+ msgid "The Main Menu"
335
+ msgstr "Glavni Izbornik"
336
+
337
+ #: library/bones.php:218 library/bones.php:252
338
+ msgid "Footer Links"
339
+ msgstr "Poveznice Podnožja"
340
+
341
+ #: library/bones.php:296
342
+ msgid "No Related Posts Yet!"
343
+ msgstr "Još nema srodnih postova!"
344
+
345
+ #: library/bones.php:340
346
+ msgid "First"
347
+ msgstr "Prva"
348
+
349
+ #: library/bones.php:357
350
+ msgid "Last"
351
+ msgstr "Posljednja"
352
+
353
+ #: library/bones.php:391
354
+ #, php-format
355
+ msgid "Posts by %s"
356
+ msgstr "Postovi od %s"
357
+
358
+ #: library/custom-post-type.php:24
359
+ msgid "Custom Types"
360
+ msgstr "Prilagođeni Tipovi"
361
+
362
+ #: library/custom-post-type.php:25
363
+ msgid "Custom Post"
364
+ msgstr "Prilagođeni Post"
365
+
366
+ #: library/custom-post-type.php:26
367
+ msgid "All Custom Posts"
368
+ msgstr "Svi Prilagođeni Postovi"
369
+
370
+ #: library/custom-post-type.php:27
371
+ msgid "Add New"
372
+ msgstr "Dodaj Novi"
373
+
374
+ #: library/custom-post-type.php:28
375
+ msgid "Add New Custom Type"
376
+ msgstr "Dodaj Novi Prilagođeni Tip"
377
+
378
+ #: library/custom-post-type.php:29
379
+ msgid "Edit"
380
+ msgstr "Uredi"
381
+
382
+ #: library/custom-post-type.php:30
383
+ msgid "Edit Post Types"
384
+ msgstr "Uredi Post Tipove"
385
+
386
+ #: library/custom-post-type.php:31
387
+ msgid "New Post Type"
388
+ msgstr "Novi Post Tip"
389
+
390
+ #: library/custom-post-type.php:32
391
+ msgid "View Post Type"
392
+ msgstr "Pregledaj Post Tip"
393
+
394
+ #: library/custom-post-type.php:33
395
+ msgid "Search Post Type"
396
+ msgstr "Pretraži Post Tip"
397
+
398
+ #: library/custom-post-type.php:34
399
+ msgid "Nothing found in the Database."
400
+ msgstr "Ništa nije pronađeno u Bazi podataka."
401
+
402
+ #: library/custom-post-type.php:35
403
+ msgid "Nothing found in Trash"
404
+ msgstr "Ništa nije pronađeno u Smeću."
405
+
406
+ #: library/custom-post-type.php:38
407
+ msgid "This is the example custom post type"
408
+ msgstr "Ovo je primjer prilagođenog post tipa"
409
+
410
+ #: library/custom-post-type.php:75
411
+ msgid "Custom Categories"
412
+ msgstr "Prilagođene Kategorije"
413
+
414
+ #: library/custom-post-type.php:76
415
+ msgid "Custom Category"
416
+ msgstr "Prilagođena Kategorija"
417
+
418
+ #: library/custom-post-type.php:77
419
+ msgid "Search Custom Categories"
420
+ msgstr "Pretraži Prilagođene Kategorije"
421
+
422
+ #: library/custom-post-type.php:78
423
+ msgid "All Custom Categories"
424
+ msgstr "Sve Prilagođene Kategorije"
425
+
426
+ #: library/custom-post-type.php:79
427
+ msgid "Parent Custom Category"
428
+ msgstr "Matična Prilagođena Kategorija"
429
+
430
+ #: library/custom-post-type.php:80
431
+ msgid "Parent Custom Category:"
432
+ msgstr "Matična Prilagođena Kategorija:"
433
+
434
+ #: library/custom-post-type.php:81
435
+ msgid "Edit Custom Category"
436
+ msgstr "Uredi Prilagođenu Kategoriju"
437
+
438
+ #: library/custom-post-type.php:82
439
+ msgid "Update Custom Category"
440
+ msgstr "Ažuriraj Prilagođenu Kategoriju"
441
+
442
+ #: library/custom-post-type.php:83
443
+ msgid "Add New Custom Category"
444
+ msgstr "Dodaj Novu Prilagođenu Kategoriju"
445
+
446
+ #: library/custom-post-type.php:84
447
+ msgid "New Custom Category Name"
448
+ msgstr "Novo Ime Prilagođene Kategorije"
449
+
450
+ #: library/custom-post-type.php:97
451
+ msgid "Custom Tags"
452
+ msgstr "Prilagođene Oznake"
453
+
454
+ #: library/custom-post-type.php:98
455
+ msgid "Custom Tag"
456
+ msgstr "Prilagođena Oznaka"
457
+
458
+ #: library/custom-post-type.php:99
459
+ msgid "Search Custom Tags"
460
+ msgstr "Pretraži Prilagođene Oznake"
461
+
462
+ #: library/custom-post-type.php:100
463
+ msgid "All Custom Tags"
464
+ msgstr "Sve Prilagođene Oznake"
465
+
466
+ #: library/custom-post-type.php:101
467
+ msgid "Parent Custom Tag"
468
+ msgstr "Matična Prilagođena Oznaka"
469
+
470
+ #: library/custom-post-type.php:102
471
+ msgid "Parent Custom Tag:"
472
+ msgstr "Matična Prilagođena Oznaka:"
473
+
474
+ #: library/custom-post-type.php:103
475
+ msgid "Edit Custom Tag"
476
+ msgstr "Uredi Prilagođenu Oznaku"
477
+
478
+ #: library/custom-post-type.php:104
479
+ msgid "Update Custom Tag"
480
+ msgstr "Ažuriraj Prilagođenu Oznaku"
481
+
482
+ #: library/custom-post-type.php:105
483
+ msgid "Add New Custom Tag"
484
+ msgstr "Dodaj Novu Prilagođenu Oznaku"
485
+
486
+ #: library/custom-post-type.php:106
487
+ msgid "New Custom Tag Name"
488
+ msgstr "Novo Ime Prilagođene Kategorije"
489
+
490
+ #~ msgid "Posted"
491
+ #~ msgstr "Objavljeno"
492
+
493
+ #~ msgid "by"
494
+ #~ msgstr "autor"
495
+
496
+ #~ msgid "filed under"
497
+ #~ msgstr "objavljeno u"
498
+
499
+ #~ msgid "Response"
500
+ #~ msgstr "Odgovor"
501
+
502
+ #~ msgid "Responses"
503
+ #~ msgstr "Odgovori"
504
+
505
+ #~ msgid "One"
506
+ #~ msgstr "Jedan"
507
+
508
+ #~ msgid "No"
509
+ #~ msgstr "Ne"
510
+
511
+ #~ msgid "to"
512
+ #~ msgstr "na"
513
+
514
+ #~ msgid "You must be"
515
+ #~ msgstr "Morate biti"
516
+
517
+ #~ msgid "logged in"
518
+ #~ msgstr "prijavljeni"
519
+
520
+ #~ msgid "to post a comment"
521
+ #~ msgstr "kako bi objavili komentar"
522
+
523
+ #~ msgid "Email"
524
+ #~ msgstr "E-pošta"
525
+
526
+ #~ msgid "Page %s"
527
+ #~ msgstr "Stranica %s"
528
+
529
+ #~ msgid "Read more"
530
+ #~ msgstr "Nastavi čitati"
531
+
532
+ #~ msgid "Read more on"
533
+ #~ msgstr "Pročitaj više o"
534
+
535
+ #~ msgid "Tag"
536
+ #~ msgstr "Oznaka"
537
+
538
+ #~ msgid "Read the rest of this entry"
539
+ #~ msgstr "Pročitaj ostatak ovog unosa"
540
+
541
+ #~ msgid "Sorry, no attachments matched your criteria."
542
+ #~ msgstr "Žalim, nema priloga koji odgovoraju vašim kriterijima."
543
+
544
+ #~ msgid "is powered by"
545
+ #~ msgstr "pokreće"
546
+
547
+ #~ msgid "Sorry, but the requested resource was not found on this site."
548
+ #~ msgstr "Žalim, ali zatraženi resurs nije pronađen na ovoj stranici."