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,358 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp theme bones\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-02 17:52+0200\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Statsenko Vladimir <vovchiksta@gmail.com>\n"
8
+ "Language-Team: fulgor <frag.fulgor@gmail.com>\n"
9
+ "Language: Russian\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\n"
15
+ "X-Poedit-Basepath: ../\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../404.php:13
19
+ msgid "Epic 404 - Article Not Found"
20
+ msgstr "Ошибка 404 - Статья не найдена"
21
+
22
+ #: ../404.php:19
23
+ msgid ""
24
+ "The article you were looking for was not found, but maybe try looking again!"
25
+ msgstr "Статья, которую вы ищите не найдена, попробуйте ещё раз!"
26
+
27
+ #: ../404.php:31
28
+ msgid "This is the 404.php template."
29
+ msgstr "Это шаблон 404.php."
30
+
31
+ #: ../archive-custom_type.php:19 ../archive.php:48 ../index.php:17
32
+ #: ../page-custom.php:23 ../page.php:17 ../search.php:19
33
+ #: ../single-custom_type.php:32 ../single.php:17 ../taxonomy-custom_cat.php:34
34
+ msgid "Posted"
35
+ msgstr "Опубликовано"
36
+
37
+ #: ../archive-custom_type.php:19 ../archive.php:48 ../index.php:17
38
+ #: ../page-custom.php:23 ../page.php:17 ../search.php:19
39
+ #: ../single-custom_type.php:32 ../single.php:17 ../taxonomy-custom_cat.php:34
40
+ msgid "by"
41
+ msgstr "автор"
42
+
43
+ #: ../archive-custom_type.php:44 ../archive.php:75 ../index.php:44
44
+ #: ../search.php:43 ../taxonomy-custom_cat.php:59
45
+ msgid "&laquo; Older Entries"
46
+ msgstr "&laquo; Предыдущие записи"
47
+
48
+ #: ../archive-custom_type.php:45 ../archive.php:76 ../index.php:45
49
+ #: ../search.php:44 ../taxonomy-custom_cat.php:60
50
+ msgid "Newer Entries &raquo;"
51
+ msgstr "Следующие записи &raquo;"
52
+
53
+ #: ../archive-custom_type.php:54 ../archive.php:85 ../index.php:54
54
+ #: ../page-custom.php:47 ../page.php:41 ../single-custom_type.php:58
55
+ #: ../single.php:41 ../taxonomy-custom_cat.php:69
56
+ msgid "Oops, Post Not Found!"
57
+ msgstr "Ой, пост не найден!"
58
+
59
+ #: ../archive-custom_type.php:57 ../archive.php:88 ../index.php:57
60
+ #: ../page-custom.php:50 ../page.php:44 ../single-custom_type.php:61
61
+ #: ../single.php:44 ../taxonomy-custom_cat.php:72
62
+ msgid "Uh Oh. Something is missing. Try double checking things."
63
+ msgstr "Опс. Что-то пропущено. Попробуйте всё перепроверить."
64
+
65
+ #: ../archive-custom_type.php:60
66
+ msgid "This is the error message in the custom posty type archive template."
67
+ msgstr "Это сообщение об ошибке в шаблоне custom post type archive."
68
+
69
+ #: ../archive.php:11 ../taxonomy-custom_cat.php:24
70
+ msgid "Posts Categorized:"
71
+ msgstr "Категории:"
72
+
73
+ #: ../archive.php:16
74
+ msgid "Posts Tagged:"
75
+ msgstr "Теги:"
76
+
77
+ #: ../archive.php:21
78
+ msgid "Posts By:"
79
+ msgstr "Автор:"
80
+
81
+ #: ../archive.php:26
82
+ msgid "Daily Archives:"
83
+ msgstr "Архивы за день:"
84
+
85
+ #: ../archive.php:31
86
+ msgid "Monthly Archives:"
87
+ msgstr "Архивы за месяц:"
88
+
89
+ #: ../archive.php:36
90
+ msgid "Yearly Archives:"
91
+ msgstr "Архивы за год:"
92
+
93
+ #: ../archive.php:48 ../index.php:17 ../search.php:19
94
+ #: ../single-custom_type.php:32 ../single.php:17 ../taxonomy-custom_cat.php:34
95
+ msgid "filed under"
96
+ msgstr "в"
97
+
98
+ #: ../archive.php:91
99
+ msgid "This is the error message in the archive.php template."
100
+ msgstr "Это сообщение об ошибке в шаблоне archive.php."
101
+
102
+ #: ../comments.php:12
103
+ msgid "This post is password protected. Enter the password to view comments."
104
+ msgstr "Этот пост защищен паролем. Введите пароль чтобы увидеть комментарии."
105
+
106
+ #: ../comments.php:51
107
+ msgid "Comments are closed."
108
+ msgstr "Комментарии закрыты."
109
+
110
+ #: ../comments.php:62
111
+ msgid "Leave a Reply"
112
+ msgstr "Ответить"
113
+
114
+ #: ../comments.php:62
115
+ #, php-format
116
+ msgid "Leave a Reply to %s"
117
+ msgstr "Ответить %s"
118
+
119
+ #: ../comments.php:78
120
+ msgid "Logged in as"
121
+ msgstr "Вы вошли как"
122
+
123
+ #: ../comments.php:78
124
+ msgid "Log out"
125
+ msgstr "Выйти"
126
+
127
+ #: ../comments.php:85
128
+ msgid "Name"
129
+ msgstr "Имя"
130
+
131
+ #: ../comments.php:86
132
+ msgid "Your Name*"
133
+ msgstr "Ваше имя*"
134
+
135
+ #: ../comments.php:90
136
+ msgid "Mail"
137
+ msgstr "Почта"
138
+
139
+ #: ../comments.php:91
140
+ msgid "Your E-Mail*"
141
+ msgstr "Ваш E-Mail*"
142
+
143
+ #: ../comments.php:92
144
+ msgid "(will not be published)"
145
+ msgstr "(не будет опубликован)"
146
+
147
+ #: ../comments.php:96
148
+ msgid "Website"
149
+ msgstr "Сайт"
150
+
151
+ #: ../comments.php:97
152
+ msgid "Got a website?"
153
+ msgstr "Есть сайт?"
154
+
155
+ #: ../comments.php:104
156
+ msgid "Your Comment here..."
157
+ msgstr "Ваш комментарий..."
158
+
159
+ #: ../comments.php:107
160
+ msgid "Submit"
161
+ msgstr "Отправить"
162
+
163
+ #: ../comments.php:112
164
+ msgid "You can use these tags"
165
+ msgstr "Вы можете использовать эти теги"
166
+
167
+ #: ../functions.php:128
168
+ #, php-format
169
+ msgid "<cite class=\"fn\">%s</cite>"
170
+ msgstr "<cite class=\"fn\">%s</cite>"
171
+
172
+ #: ../functions.php:130
173
+ msgid "(Edit)"
174
+ msgstr "(Изменить)"
175
+
176
+ #: ../functions.php:134
177
+ msgid "Your comment is awaiting moderation."
178
+ msgstr "Ваш комментарий ожидает модерации."
179
+
180
+ #: ../functions.php:151
181
+ msgid "Search for:"
182
+ msgstr "Искать:"
183
+
184
+ #: ../index.php:60
185
+ msgid "This is the error message in the index.php template."
186
+ msgstr "Это сообщение об ошибке в шаблоне index.php."
187
+
188
+ #: ../page-custom.php:53
189
+ msgid "This is the error message in the page-custom.php template."
190
+ msgstr "Это сообщение об ошибке в шаблоне page-custom.php."
191
+
192
+ #: ../page.php:47
193
+ msgid "This is the error message in the page.php template."
194
+ msgstr "Это сообщение об ошибке в шаблоне page.php."
195
+
196
+ #: ../search.php:53
197
+ msgid "Sorry, No Results."
198
+ msgstr "Извините, ничего не найдено."
199
+
200
+ #: ../search.php:56
201
+ msgid "Try your search again."
202
+ msgstr "Попробуйте поискать ещё раз."
203
+
204
+ #: ../search.php:59
205
+ msgid "This is the error message in the search.php template."
206
+ msgstr "Это сообщение об ошибке в шаблоне search.php."
207
+
208
+ #: ../single-custom_type.php:64
209
+ msgid "This is the error message in the single-custom_type.php template."
210
+ msgstr "Это сообщение об ошибке в шаблоне single-custom_type.php."
211
+
212
+ #: ../single.php:47
213
+ msgid "This is the error message in the single.php template."
214
+ msgstr "Это сообщение об ошибке в шаблоне single.php."
215
+
216
+ #: ../taxonomy-custom_cat.php:75
217
+ msgid "This is the error message in the taxonomy-custom_cat.php template."
218
+ msgstr "Это сообщение об ошибке в шаблоне taxonomy-custom_cat.php."
219
+
220
+ #: ../library/bones.php:206
221
+ msgid "The Main Menu"
222
+ msgstr "Главное меню"
223
+
224
+ #: ../library/bones.php:207
225
+ msgid "Footer Links"
226
+ msgstr "Ссылки в футере"
227
+
228
+ #: ../library/custom-post-type.php:24
229
+ msgid "Custom Types"
230
+ msgstr "Пользовательские типы"
231
+
232
+ #: ../library/custom-post-type.php:25
233
+ msgid "Custom Post"
234
+ msgstr "Пользовательский пост"
235
+
236
+ #: ../library/custom-post-type.php:26
237
+ msgid "All Custom Posts"
238
+ msgstr "Все пользовательские посты"
239
+
240
+ #: ../library/custom-post-type.php:27
241
+ msgid "Add New"
242
+ msgstr "Создать новый"
243
+
244
+ #: ../library/custom-post-type.php:28
245
+ msgid "Add New Custom Type"
246
+ msgstr "Создать новый пользовательский тип"
247
+
248
+ #: ../library/custom-post-type.php:29
249
+ msgid "Edit"
250
+ msgstr "Изменить"
251
+
252
+ #: ../library/custom-post-type.php:30
253
+ msgid "Edit Post Types"
254
+ msgstr "Изменить типы постов"
255
+
256
+ #: ../library/custom-post-type.php:31
257
+ msgid "New Post Type"
258
+ msgstr "Новый тип поста"
259
+
260
+ #: ../library/custom-post-type.php:32
261
+ msgid "View Post Type"
262
+ msgstr "Посмотреть тип поста"
263
+
264
+ #: ../library/custom-post-type.php:33
265
+ msgid "Search Post Type"
266
+ msgstr "Найти тип поста"
267
+
268
+ #: ../library/custom-post-type.php:34
269
+ msgid "Nothing found in the Database."
270
+ msgstr "В базе данных ничего не найдено."
271
+
272
+ #: ../library/custom-post-type.php:35
273
+ msgid "Nothing found in Trash"
274
+ msgstr "В Корзине ничего не найдено"
275
+
276
+ #: ../library/custom-post-type.php:38
277
+ msgid "This is the example custom post type"
278
+ msgstr "Это пример пользовательского типа поста"
279
+
280
+ #: ../library/custom-post-type.php:75
281
+ msgid "Custom Categories"
282
+ msgstr "Пользовательские категории"
283
+
284
+ #: ../library/custom-post-type.php:76
285
+ msgid "Custom Category"
286
+ msgstr "Пользовательская категория"
287
+
288
+ #: ../library/custom-post-type.php:77
289
+ msgid "Search Custom Categories"
290
+ msgstr "Поиск в пользовательских категориях"
291
+
292
+ #: ../library/custom-post-type.php:78
293
+ msgid "All Custom Categories"
294
+ msgstr "Все пользовательские категории"
295
+
296
+ #: ../library/custom-post-type.php:79
297
+ msgid "Parent Custom Category"
298
+ msgstr "Родительская пользовательская категория"
299
+
300
+ #: ../library/custom-post-type.php:80
301
+ msgid "Parent Custom Category:"
302
+ msgstr "Родительская пользовательская категория:"
303
+
304
+ #: ../library/custom-post-type.php:81
305
+ msgid "Edit Custom Category"
306
+ msgstr "Изменить пользовательскую категорию"
307
+
308
+ #: ../library/custom-post-type.php:82
309
+ msgid "Update Custom Category"
310
+ msgstr "Обновить пользовательскую категорию"
311
+
312
+ #: ../library/custom-post-type.php:83
313
+ msgid "Add New Custom Category"
314
+ msgstr "Создать пользовательскую категорию"
315
+
316
+ #: ../library/custom-post-type.php:84
317
+ msgid "New Custom Category Name"
318
+ msgstr "Новое название пользовательской категории"
319
+
320
+ #: ../library/custom-post-type.php:97
321
+ msgid "Custom Tags"
322
+ msgstr "Пользовательские теги"
323
+
324
+ #: ../library/custom-post-type.php:98
325
+ msgid "Custom Tag"
326
+ msgstr "Пользовательский тег"
327
+
328
+ #: ../library/custom-post-type.php:99
329
+ msgid "Search Custom Tags"
330
+ msgstr "Поиск по пользовательским тегам"
331
+
332
+ #: ../library/custom-post-type.php:100
333
+ msgid "All Custom Tags"
334
+ msgstr "Все пользовательские теги"
335
+
336
+ #: ../library/custom-post-type.php:101
337
+ msgid "Parent Custom Tag"
338
+ msgstr "Родительский пользовательский тег"
339
+
340
+ #: ../library/custom-post-type.php:102
341
+ msgid "Parent Custom Tag:"
342
+ msgstr "Родительский пользовательский тег:"
343
+
344
+ #: ../library/custom-post-type.php:103
345
+ msgid "Edit Custom Tag"
346
+ msgstr "Изменить пользовательский тег"
347
+
348
+ #: ../library/custom-post-type.php:104
349
+ msgid "Update Custom Tag"
350
+ msgstr "Обновить пользовательский тег"
351
+
352
+ #: ../library/custom-post-type.php:105
353
+ msgid "Add New Custom Tag"
354
+ msgstr "Создать пользовательский тег"
355
+
356
+ #: ../library/custom-post-type.php:106
357
+ msgid "New Custom Tag Name"
358
+ msgstr "Новый пользовательский тег"
@@ -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: 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: Mathias Hellquist <mathias.hellquist@gmail.com>\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 "Detta inlägg är lösenordsskyddat. Skriv in lösenordet för att 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 "Nej"
37
+
38
+ #: comments.php:32
39
+ msgid "to"
40
+ msgstr "till"
41
+
42
+ #: comments.php:59
43
+ msgid "Comments are closed."
44
+ msgstr "Det går inte längre att kommentera."
45
+
46
+ #: comments.php:70
47
+ msgid "Leave a Reply"
48
+ msgstr "Lämna en kommentar"
49
+
50
+ #: comments.php:70
51
+ #, php-format
52
+ msgid "Leave a Reply to %s"
53
+ msgstr "Lämna en kommentar till %s"
54
+
55
+ #: comments.php:78
56
+ msgid "You must be"
57
+ msgstr "Du måste vara"
58
+
59
+ #: comments.php:78
60
+ msgid "logged in"
61
+ msgstr "inloggad"
62
+
63
+ #: comments.php:78
64
+ msgid "to post a comment"
65
+ msgstr "för att kunna kommentera"
66
+
67
+ #: comments.php:86
68
+ msgid "Logged in as"
69
+ msgstr "Inloggad som"
70
+
71
+ #: comments.php:86
72
+ msgid "Log out of this account"
73
+ msgstr "Logga ut från detta konto"
74
+
75
+ #: comments.php:86
76
+ msgid "Log out"
77
+ msgstr "Logga ut"
78
+
79
+ #: comments.php:93
80
+ msgid "Name"
81
+ msgstr "Namn"
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 namn"
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 inte att bli publicerad"
103
+
104
+ #: comments.php:104
105
+ msgid "Website"
106
+ msgstr "Webbsajt"
107
+
108
+ #: comments.php:105
109
+ msgid "Your Website"
110
+ msgstr "Din webbsajt"
111
+
112
+ #: comments.php:112
113
+ msgid "Your Comment Here..."
114
+ msgstr "Din kommentar här..."
115
+
116
+ #: comments.php:115
117
+ msgid "Submit Comment"
118
+ msgstr "Skicka kommentar"
119
+
120
+ #: comments.php:120
121
+ msgid "You can use these tags"
122
+ msgstr "Du kan använda dessa taggar"
123
+
124
+ #: header.php:23
125
+ #, php-format
126
+ msgid "Page %s"
127
+ msgstr "Sida %s"
128
+
129
+ #: taxonomy-custom_cat.php:22
130
+ #: archive.php:9
131
+ msgid "Posts Categorized:"
132
+ msgstr "Kategoriserade inlägg:"
133
+
134
+ #: taxonomy-custom_cat.php:32
135
+ #: embed-post_meta.php:1
136
+ #: single-custom_type.php:30
137
+ msgid "Posted"
138
+ msgstr "Skriven"
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 "sorterad under"
151
+
152
+ #: taxonomy-custom_cat.php:41
153
+ msgid "Read more"
154
+ msgstr "Läs mera"
155
+
156
+ #: functions.php:103
157
+ msgid "(Edit)"
158
+ msgstr "(Editera)"
159
+
160
+ #: functions.php:107
161
+ msgid "Your comment is awaiting moderation."
162
+ msgstr "Din kommentar blir modererad."
163
+
164
+ #: functions.php:124
165
+ msgid "Search for:"
166
+ msgstr "Sök efter:"
167
+
168
+ #: functions.php:125
169
+ msgid "Search the Site..."
170
+ msgstr "Sök på sajten..."
171
+
172
+ #: 404.php:11
173
+ msgid "Epic 404 - Article Not Found"
174
+ msgstr "Episk 404 - Sidan kan inte hittas"
175
+
176
+ #: 404.php:17
177
+ msgid "The article you were looking for was not found, but maybe try looking again!"
178
+ msgstr "Inlägget du letade efter kan inte hittas. Försök igen!"
179
+
180
+ #: search.php:7
181
+ msgid "Search Results for:"
182
+ msgstr "Sök resultat för:"
183
+
184
+ #: search.php:23
185
+ msgid "Read more on"
186
+ msgstr "Läs mera på"
187
+
188
+ #: archive.php:13
189
+ msgid "Posts Tagged:"
190
+ msgstr "Taggade inlägg"
191
+
192
+ #: archive.php:17
193
+ #: author.php:8
194
+ msgid "Posts By:"
195
+ msgstr "Inlägg 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ånadsarkiv"
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 "Special taggar"
212
+
213
+ #: embed-tags.php:3
214
+ msgid "Tag"
215
+ msgstr "Tagg"
216
+
217
+ #: embed-tags.php:3
218
+ msgid "Tags"
219
+ msgstr "Taggar"
220
+
221
+ #: image.php:20
222
+ msgid "Read the rest of this entry"
223
+ msgstr "Läs resten av detta inlägg"
224
+
225
+ #: image.php:38
226
+ msgid "Sorry, no attachments matched your criteria."
227
+ msgstr "Tyvärr, inga bilagor matchade din förfrågan"
228
+
229
+ #: embed-prev_next.php:3
230
+ msgid "&laquo; Older Entries"
231
+ msgstr "&laquo; Äldre inlägg"
232
+
233
+ #: embed-prev_next.php:4
234
+ msgid "Newer Entries &raquo;"
235
+ msgstr "Nyare inlägg &raquo;"
236
+
237
+ #: footer.php:9
238
+ msgid "is powered by"
239
+ msgstr "superkrafter via"
240
+
241
+ #: embed-not_found.php:3
242
+ msgid "Not Found"
243
+ msgstr "Kan inte hittas"
244
+
245
+ #: embed-not_found.php:6
246
+ msgid "Sorry, but the requested resource was not found on this site."
247
+ msgstr "Tyvärr, det som efterfrågas kan inte hittas på denna sajt."
248
+
249
+ #: sidebar.php:15
250
+ msgid "Please activate some Widgets."
251
+ msgstr "Vänligen aktivera några Widgets."
252
+
253
+ #: library/bones.php:52
254
+ msgid "Read more &raquo;"
255
+ msgstr "Läs mera &raquo;"
256
+
257
+ #: library/custom-post-type.php:24
258
+ msgid "Custom Types"
259
+ msgstr "Special inläggstyp"
260
+
261
+ #: library/custom-post-type.php:25
262
+ msgid "Custom Post"
263
+ msgstr "Special inlägg"
264
+
265
+ #: library/custom-post-type.php:26
266
+ msgid "Add New"
267
+ msgstr "Lägg till"
268
+
269
+ #: library/custom-post-type.php:27
270
+ msgid "Add New Custom Type"
271
+ msgstr "Lägg till ny inläggstyp"
272
+
273
+ #: library/custom-post-type.php:28
274
+ msgid "Edit"
275
+ msgstr "Editera"
276
+
277
+ #: library/custom-post-type.php:29
278
+ msgid "Edit Post Types"
279
+ msgstr "Editera inläggstyper"
280
+
281
+ #: library/custom-post-type.php:30
282
+ msgid "New Post Type"
283
+ msgstr "Ny inläggstyp"
284
+
285
+ #: library/custom-post-type.php:31
286
+ msgid "View Post Type"
287
+ msgstr "Se inläggstyp"
288
+
289
+ #: library/custom-post-type.php:32
290
+ msgid "Search Post Type"
291
+ msgstr "Sök inläggstyp"
292
+
293
+ #: library/custom-post-type.php:33
294
+ msgid "Nothing found in the Database."
295
+ msgstr "Ingenting kan hittas i databasen"
296
+
297
+ #: library/custom-post-type.php:34
298
+ msgid "Nothing found in Trash"
299
+ msgstr "Ingenting kan hittas i papperskorgen"
300
+
301
+ #: library/custom-post-type.php:37
302
+ msgid "This is the example custom post type"
303
+ msgstr "Det här är ett exempel på inläggstyp"
304
+
305
+ #: library/custom-post-type.php:73
306
+ msgid "Custom Categories"
307
+ msgstr "Egna kategorier"
308
+
309
+ #: library/custom-post-type.php:74
310
+ msgid "Custom Category"
311
+ msgstr "Egen kategori"
312
+
313
+ #: library/custom-post-type.php:75
314
+ msgid "Search Custom Categories"
315
+ msgstr "Sök i de egna kategorierna"
316
+
317
+ #: library/custom-post-type.php:76
318
+ msgid "All Custom Categories"
319
+ msgstr "Alla egna kategorier"
320
+
321
+ #: library/custom-post-type.php:77
322
+ msgid "Parent Custom Category"
323
+ msgstr "Nedärvd egen kategori"
324
+
325
+ #: library/custom-post-type.php:78
326
+ msgid "Parent Custom Category:"
327
+ msgstr "Nedärvd egen kategori:"
328
+
329
+ #: library/custom-post-type.php:79
330
+ msgid "Edit Custom Category"
331
+ msgstr "Editera egen kategori"
332
+
333
+ #: library/custom-post-type.php:80
334
+ msgid "Update Custom Category"
335
+ msgstr "Uppdatera egen kategori"
336
+
337
+ #: library/custom-post-type.php:81
338
+ msgid "Add New Custom Category"
339
+ msgstr "Lägg till ny egen kategori"
340
+
341
+ #: library/custom-post-type.php:82
342
+ msgid "New Custom Category Name"
343
+ msgstr "Namn på ny egen 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 egna taggar"
352
+
353
+ #: library/custom-post-type.php:97
354
+ msgid "All Custom Tags"
355
+ msgstr "Alla egna taggar"
356
+
357
+ #: library/custom-post-type.php:98
358
+ msgid "Parent Custom Tag"
359
+ msgstr "Nedärvd egen tagg"
360
+
361
+ #: library/custom-post-type.php:99
362
+ msgid "Parent Custom Tag:"
363
+ msgstr "Nedärvd egen tagg:"
364
+
365
+ #: library/custom-post-type.php:100
366
+ msgid "Edit Custom Tag"
367
+ msgstr "Editera egen tagg"
368
+
369
+ #: library/custom-post-type.php:101
370
+ msgid "Update Custom Tag"
371
+ msgstr "Uppdatera egen tagg"
372
+
373
+ #: library/custom-post-type.php:102
374
+ msgid "Add New Custom Tag"
375
+ msgstr "Lägg till ny egen tagg"
376
+
377
+ #: library/custom-post-type.php:103
378
+ msgid "New Custom Tag Name"
379
+ msgstr "Nytt namn på egen tagg"
380
+