publify_core 9.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of publify_core might be problematic. Click here for more details.

Files changed (372) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +35 -0
  5. data/app/assets/fonts/open-sans-bold.woff +0 -0
  6. data/app/assets/fonts/open-sans.woff +0 -0
  7. data/app/assets/images/admin/loading.gif +0 -0
  8. data/app/assets/images/admin/typologo.gif +0 -0
  9. data/app/assets/images/calendar_date_select/calendar.gif +0 -0
  10. data/app/assets/images/close.gif +0 -0
  11. data/app/assets/images/closelabel.gif +0 -0
  12. data/app/assets/images/go.png +0 -0
  13. data/app/assets/images/loading.gif +0 -0
  14. data/app/assets/images/nextlabel.gif +0 -0
  15. data/app/assets/images/overlay.png +0 -0
  16. data/app/assets/images/powered.gif +0 -0
  17. data/app/assets/images/prevlabel.gif +0 -0
  18. data/app/assets/images/spinner-blue.gif +0 -0
  19. data/app/assets/images/spinner.gif +0 -0
  20. data/app/assets/images/thumb_blank.jpg +0 -0
  21. data/app/assets/javascripts/application.js +2 -0
  22. data/app/assets/javascripts/cookies.js +60 -0
  23. data/app/assets/javascripts/datetimepicker.js +1470 -0
  24. data/app/assets/javascripts/lang/da_DK.js +17 -0
  25. data/app/assets/javascripts/lang/default.js +21 -0
  26. data/app/assets/javascripts/lang/en_US.js +21 -0
  27. data/app/assets/javascripts/lang/fr_FR.js +21 -0
  28. data/app/assets/javascripts/lang/nl_NL.js +21 -0
  29. data/app/assets/javascripts/lang/zh_TW.js +17 -0
  30. data/app/assets/javascripts/lightbox.js +350 -0
  31. data/app/assets/javascripts/observe.js +28 -0
  32. data/app/assets/javascripts/publify.js +11 -0
  33. data/app/assets/javascripts/publify_admin.js +138 -0
  34. data/app/assets/javascripts/quicktags.js +440 -0
  35. data/app/assets/javascripts/set-timeago-lang.js +3 -0
  36. data/app/assets/javascripts/sidebar.js +28 -0
  37. data/app/assets/javascripts/spinnable.js +5 -0
  38. data/app/assets/javascripts/tagmanager.js +481 -0
  39. data/app/assets/javascripts/typeahead.js +1139 -0
  40. data/app/assets/javascripts/widearea.js +486 -0
  41. data/app/assets/stylesheets/accounts.css.scss +7 -0
  42. data/app/assets/stylesheets/administration_structure.css.scss +239 -0
  43. data/app/assets/stylesheets/coderay.css +135 -0
  44. data/app/assets/stylesheets/datetimepicker.css +306 -0
  45. data/app/assets/stylesheets/lightbox.css +63 -0
  46. data/app/assets/stylesheets/publify.css.scss +9 -0
  47. data/app/assets/stylesheets/publify_admin.css.scss +11 -0
  48. data/app/assets/stylesheets/rss.css +53 -0
  49. data/app/assets/stylesheets/sidebar_admin.css.scss +36 -0
  50. data/app/assets/stylesheets/tagmanager.css +102 -0
  51. data/app/assets/stylesheets/user-styles.css +29 -0
  52. data/app/assets/stylesheets/widearea.css +133 -0
  53. data/app/controllers/accounts_controller.rb +2 -0
  54. data/app/controllers/admin/base_controller.rb +41 -0
  55. data/app/controllers/admin/cache_controller.rb +33 -0
  56. data/app/controllers/admin/content_controller.rb +174 -0
  57. data/app/controllers/admin/dashboard_controller.rb +87 -0
  58. data/app/controllers/admin/feedback_controller.rb +159 -0
  59. data/app/controllers/admin/migrations_controller.rb +20 -0
  60. data/app/controllers/admin/notes_controller.rb +69 -0
  61. data/app/controllers/admin/pages_controller.rb +88 -0
  62. data/app/controllers/admin/post_types_controller.rb +56 -0
  63. data/app/controllers/admin/profiles_controller.rb +48 -0
  64. data/app/controllers/admin/redirects_controller.rb +47 -0
  65. data/app/controllers/admin/resources_controller.rb +30 -0
  66. data/app/controllers/admin/seo_controller.rb +45 -0
  67. data/app/controllers/admin/settings_controller.rb +53 -0
  68. data/app/controllers/admin/sidebar_controller.rb +66 -0
  69. data/app/controllers/admin/tags_controller.rb +53 -0
  70. data/app/controllers/admin/textfilters_controller.rb +6 -0
  71. data/app/controllers/admin/themes_controller.rb +37 -0
  72. data/app/controllers/admin/users_controller.rb +65 -0
  73. data/app/controllers/articles_controller.rb +205 -0
  74. data/app/controllers/authors_controller.rb +27 -0
  75. data/app/controllers/base_controller.rb +45 -0
  76. data/app/controllers/comments_controller.rb +69 -0
  77. data/app/controllers/content_controller.rb +31 -0
  78. data/app/controllers/feedback_controller.rb +47 -0
  79. data/app/controllers/notes_controller.rb +37 -0
  80. data/app/controllers/setup_controller.rb +62 -0
  81. data/app/controllers/tags_controller.rb +55 -0
  82. data/app/controllers/text_controller.rb +9 -0
  83. data/app/controllers/textfilter_controller.rb +3 -0
  84. data/app/controllers/theme_controller.rb +59 -0
  85. data/app/controllers/trackbacks_controller.rb +36 -0
  86. data/app/controllers/xml_controller.rb +70 -0
  87. data/app/helpers/admin/base_helper.rb +87 -0
  88. data/app/helpers/admin/feedback_helper.rb +42 -0
  89. data/app/helpers/articles_helper.rb +8 -0
  90. data/app/helpers/authors_helper.rb +39 -0
  91. data/app/helpers/base_helper.rb +246 -0
  92. data/app/helpers/blog_helper.rb +12 -0
  93. data/app/helpers/xml_helper.rb +16 -0
  94. data/app/mailers/notification_mailer.rb +38 -0
  95. data/app/models/ability.rb +52 -0
  96. data/app/models/archives_sidebar.rb +45 -0
  97. data/app/models/article/factory.rb +56 -0
  98. data/app/models/article/states.rb +178 -0
  99. data/app/models/article.rb +321 -0
  100. data/app/models/blog.rb +290 -0
  101. data/app/models/blog_sweeper.rb +86 -0
  102. data/app/models/comment.rb +53 -0
  103. data/app/models/config_manager.rb +81 -0
  104. data/app/models/content.rb +138 -0
  105. data/app/models/content_base.rb +95 -0
  106. data/app/models/feedback/states.rb +256 -0
  107. data/app/models/feedback.rb +225 -0
  108. data/app/models/meta_sidebar.rb +8 -0
  109. data/app/models/note.rb +144 -0
  110. data/app/models/page.rb +36 -0
  111. data/app/models/page_cache.rb +33 -0
  112. data/app/models/page_sidebar.rb +12 -0
  113. data/app/models/ping.rb +116 -0
  114. data/app/models/post_type.rb +15 -0
  115. data/app/models/redirect.rb +45 -0
  116. data/app/models/redirection.rb +4 -0
  117. data/app/models/resource.rb +28 -0
  118. data/app/models/search_sidebar.rb +7 -0
  119. data/app/models/sidebar.rb +138 -0
  120. data/app/models/static_sidebar.rb +20 -0
  121. data/app/models/tag.rb +63 -0
  122. data/app/models/tag_sidebar.rb +27 -0
  123. data/app/models/text_filter.rb +61 -0
  124. data/app/models/trackback.rb +58 -0
  125. data/app/models/trigger.rb +45 -0
  126. data/app/models/user.rb +148 -0
  127. data/app/services/migrator.rb +25 -0
  128. data/app/services/title_builder.rb +80 -0
  129. data/app/uploaders/resource_uploader.rb +30 -0
  130. data/app/views/accounts/confirm.html.erb +8 -0
  131. data/app/views/admin/cache/show.html.erb +18 -0
  132. data/app/views/admin/content/_article_list.html.erb +26 -0
  133. data/app/views/admin/content/_form.html.erb +165 -0
  134. data/app/views/admin/content/autosave.js.erb +5 -0
  135. data/app/views/admin/content/edit.html.erb +3 -0
  136. data/app/views/admin/content/index.html.erb +48 -0
  137. data/app/views/admin/content/index.js.erb +1 -0
  138. data/app/views/admin/content/new.html.erb +3 -0
  139. data/app/views/admin/dashboard/_comment.html.erb +18 -0
  140. data/app/views/admin/dashboard/_comments.html.erb +10 -0
  141. data/app/views/admin/dashboard/_drafts.html.erb +25 -0
  142. data/app/views/admin/dashboard/_inbound.html.erb +31 -0
  143. data/app/views/admin/dashboard/_overview.html.erb +23 -0
  144. data/app/views/admin/dashboard/_welcome.html.erb +28 -0
  145. data/app/views/admin/dashboard/index.html.erb +17 -0
  146. data/app/views/admin/feedback/_button.html.erb +19 -0
  147. data/app/views/admin/feedback/_feedback.html.erb +7 -0
  148. data/app/views/admin/feedback/_ham.html.erb +17 -0
  149. data/app/views/admin/feedback/_spam.html.erb +23 -0
  150. data/app/views/admin/feedback/article.html.erb +69 -0
  151. data/app/views/admin/feedback/edit.html.erb +48 -0
  152. data/app/views/admin/feedback/ham.js +1 -0
  153. data/app/views/admin/feedback/index.html.erb +53 -0
  154. data/app/views/admin/feedback/spam.js +1 -0
  155. data/app/views/admin/migrations/show.html.erb +39 -0
  156. data/app/views/admin/notes/_form.html.erb +37 -0
  157. data/app/views/admin/notes/_header.html.erb +6 -0
  158. data/app/views/admin/notes/_list.html.erb +13 -0
  159. data/app/views/admin/notes/_note.html.erb +14 -0
  160. data/app/views/admin/notes/edit.html.erb +11 -0
  161. data/app/views/admin/notes/index.html.erb +11 -0
  162. data/app/views/admin/notes/show.html.erb +14 -0
  163. data/app/views/admin/pages/_form.html.erb +101 -0
  164. data/app/views/admin/pages/_pages.html.erb +21 -0
  165. data/app/views/admin/pages/edit.html.erb +1 -0
  166. data/app/views/admin/pages/index.html.erb +17 -0
  167. data/app/views/admin/pages/new.html.erb +1 -0
  168. data/app/views/admin/post_types/_index_and_form.html.erb +65 -0
  169. data/app/views/admin/post_types/edit.html.erb +1 -0
  170. data/app/views/admin/post_types/index.html.erb +1 -0
  171. data/app/views/admin/profiles/index.html.erb +10 -0
  172. data/app/views/admin/redirects/_index_and_form.html.erb +68 -0
  173. data/app/views/admin/redirects/edit.html.erb +1 -0
  174. data/app/views/admin/redirects/index.html.erb +1 -0
  175. data/app/views/admin/resources/index.html.erb +68 -0
  176. data/app/views/admin/seo/_general.html.erb +123 -0
  177. data/app/views/admin/seo/_permalinks.html.erb +53 -0
  178. data/app/views/admin/seo/_titles.html.erb +210 -0
  179. data/app/views/admin/seo/show.html.erb +32 -0
  180. data/app/views/admin/settings/display.html.erb +110 -0
  181. data/app/views/admin/settings/feedback.html.erb +125 -0
  182. data/app/views/admin/settings/index.html.erb +73 -0
  183. data/app/views/admin/settings/write.html.erb +87 -0
  184. data/app/views/admin/shared/_edit.html.erb +4 -0
  185. data/app/views/admin/shared/_menu.html.erb +122 -0
  186. data/app/views/admin/shared/_twitter_alert.html.erb +3 -0
  187. data/app/views/admin/sidebar/_available.html.erb +6 -0
  188. data/app/views/admin/sidebar/_available.json.erb +6 -0
  189. data/app/views/admin/sidebar/_config.html.erb +27 -0
  190. data/app/views/admin/sidebar/_target.html.erb +9 -0
  191. data/app/views/admin/sidebar/_target_sidebar.html.erb +20 -0
  192. data/app/views/admin/sidebar/destroy.js.erb +1 -0
  193. data/app/views/admin/sidebar/index.html.erb +31 -0
  194. data/app/views/admin/sidebar/sortable.js.erb +3 -0
  195. data/app/views/admin/sidebar/update.js.erb +2 -0
  196. data/app/views/admin/tags/_index_and_form.html.erb +59 -0
  197. data/app/views/admin/tags/edit.html.erb +1 -0
  198. data/app/views/admin/tags/index.html.erb +1 -0
  199. data/app/views/admin/themes/index.html.erb +27 -0
  200. data/app/views/admin/users/_form.html.erb +215 -0
  201. data/app/views/admin/users/edit.html.erb +8 -0
  202. data/app/views/admin/users/index.html.erb +39 -0
  203. data/app/views/admin/users/new.html.erb +8 -0
  204. data/app/views/archives_sidebar/_content.html.erb +13 -0
  205. data/app/views/articles/_article.html.erb +9 -0
  206. data/app/views/articles/_article_collection.html.erb +8 -0
  207. data/app/views/articles/_article_content.html.erb +5 -0
  208. data/app/views/articles/_article_excerpt.html.erb +13 -0
  209. data/app/views/articles/_article_links.html.erb +10 -0
  210. data/app/views/articles/_comment.html.erb +1 -0
  211. data/app/views/articles/_comment_errors.html.erb +2 -0
  212. data/app/views/articles/_comment_form.html.erb +48 -0
  213. data/app/views/articles/_comment_list.html.erb +5 -0
  214. data/app/views/articles/_comment_preview.html.erb +4 -0
  215. data/app/views/articles/_full_article_content.html.erb +2 -0
  216. data/app/views/articles/_password_form.html.erb +10 -0
  217. data/app/views/articles/_protected_article_content.html.erb +6 -0
  218. data/app/views/articles/_trackback.html.erb +6 -0
  219. data/app/views/articles/archives.html.erb +25 -0
  220. data/app/views/articles/comment.js.erb +5 -0
  221. data/app/views/articles/comment_failed.js.erb +3 -0
  222. data/app/views/articles/error.html.erb +3 -0
  223. data/app/views/articles/feedback_atom_feed.atom.builder +8 -0
  224. data/app/views/articles/feedback_rss_feed.rss.builder +21 -0
  225. data/app/views/articles/index.html.erb +1 -0
  226. data/app/views/articles/index_atom_feed.atom.builder +8 -0
  227. data/app/views/articles/index_rss_feed.rss.builder +20 -0
  228. data/app/views/articles/live_search.html.erb +10 -0
  229. data/app/views/articles/read.html.erb +61 -0
  230. data/app/views/articles/search.html.erb +8 -0
  231. data/app/views/articles/trackback.xml.builder +5 -0
  232. data/app/views/articles/view_page.html.erb +3 -0
  233. data/app/views/authors/show.html.erb +40 -0
  234. data/app/views/authors/show_atom_feed.atom.builder +8 -0
  235. data/app/views/authors/show_rss_feed.rss.builder +20 -0
  236. data/app/views/comments/_comment.html.erb +16 -0
  237. data/app/views/comments/index.html.erb +1 -0
  238. data/app/views/comments/index_atom_feed.atom.builder +8 -0
  239. data/app/views/comments/index_rss_feed.rss.builder +20 -0
  240. data/app/views/comments/preview.html.erb +1 -0
  241. data/app/views/comments/preview.js.erb +3 -0
  242. data/app/views/devise/mailer/reset_password_instructions.html.erb +13 -0
  243. data/app/views/devise/passwords/edit.html.erb +28 -0
  244. data/app/views/devise/passwords/new.html.erb +20 -0
  245. data/app/views/devise/registrations/new.html.erb +36 -0
  246. data/app/views/devise/sessions/new.html.erb +32 -0
  247. data/app/views/devise/shared/_links.html.erb +15 -0
  248. data/app/views/errors/404.html.erb +2 -0
  249. data/app/views/layouts/accounts.html.erb +33 -0
  250. data/app/views/layouts/administration.html.erb +37 -0
  251. data/app/views/layouts/default.html.erb +32 -0
  252. data/app/views/layouts/editor.html.erb +31 -0
  253. data/app/views/meta_sidebar/_content.html.erb +8 -0
  254. data/app/views/notes/_note.html.erb +15 -0
  255. data/app/views/notes/error.html.erb +3 -0
  256. data/app/views/notes/index.html.erb +15 -0
  257. data/app/views/notes/show.html.erb +5 -0
  258. data/app/views/notes/show_in_reply.html.erb +16 -0
  259. data/app/views/notification_mailer/_mail_footer.html.erb +7 -0
  260. data/app/views/notification_mailer/_mail_header.html.erb +1 -0
  261. data/app/views/notification_mailer/article.html.erb +6 -0
  262. data/app/views/notification_mailer/comment.html.erb +11 -0
  263. data/app/views/notification_mailer/notif_user.html.erb +14 -0
  264. data/app/views/page_sidebar/_content.html.erb +12 -0
  265. data/app/views/search_sidebar/_content.html.erb +10 -0
  266. data/app/views/settings/done.html.erb +2 -0
  267. data/app/views/settings/install.html.erb +12 -0
  268. data/app/views/setup/index.html.erb +13 -0
  269. data/app/views/shared/_atom_header.atom.builder +6 -0
  270. data/app/views/shared/_atom_item_article.atom.builder +39 -0
  271. data/app/views/shared/_atom_item_comment.atom.builder +10 -0
  272. data/app/views/shared/_atom_item_trackback.atom.builder +9 -0
  273. data/app/views/shared/_flash.erb +10 -0
  274. data/app/views/shared/_page_header.html.erb +26 -0
  275. data/app/views/shared/_rss_item_article.rss.builder +35 -0
  276. data/app/views/shared/_rss_item_comment.rss.builder +8 -0
  277. data/app/views/shared/_rss_item_trackback.rss.builder +7 -0
  278. data/app/views/sidebar/_row.html.erb +1 -0
  279. data/app/views/sidebar/_sidebar.html.erb +5 -0
  280. data/app/views/sidebar/display_plugins.html.erb +5 -0
  281. data/app/views/sidebar/show.html.erb +1 -0
  282. data/app/views/static_sidebar/_content.html.erb +2 -0
  283. data/app/views/tag_sidebar/_content.html.erb +10 -0
  284. data/app/views/tags/index.html.erb +15 -0
  285. data/app/views/tags/show.html.erb +1 -0
  286. data/app/views/theme/static_view_test.html.erb +1 -0
  287. data/app/views/trackbacks/index_atom_feed.atom.builder +7 -0
  288. data/app/views/trackbacks/index_rss_feed.rss.builder +20 -0
  289. data/app/views/trackbacks/trackback.xml.builder +4 -0
  290. data/app/views/xml/_googlesitemap_item_article.googlesitemap.builder +5 -0
  291. data/app/views/xml/_googlesitemap_item_category.googlesitemap.builder +4 -0
  292. data/app/views/xml/_googlesitemap_item_page.googlesitemap.builder +4 -0
  293. data/app/views/xml/_googlesitemap_item_tag.googlesitemap.builder +4 -0
  294. data/app/views/xml/feed.googlesitemap.builder +7 -0
  295. data/app/views/xml/rsd.rsd.builder +8 -0
  296. data/config/i18n-tasks.yml +49 -0
  297. data/config/initializers/devise.rb +265 -0
  298. data/config/initializers/mime_types.rb +6 -0
  299. data/config/locales/da.yml +827 -0
  300. data/config/locales/de.yml +827 -0
  301. data/config/locales/en.yml +827 -0
  302. data/config/locales/es-MX.yml +827 -0
  303. data/config/locales/fr.yml +827 -0
  304. data/config/locales/he.yml +827 -0
  305. data/config/locales/it.yml +827 -0
  306. data/config/locales/ja.yml +827 -0
  307. data/config/locales/lt.yml +827 -0
  308. data/config/locales/nb-NO.yml +827 -0
  309. data/config/locales/nl.yml +827 -0
  310. data/config/locales/pl.yml +827 -0
  311. data/config/locales/pt-BR.yml +827 -0
  312. data/config/locales/ro.yml +827 -0
  313. data/config/locales/ru.yml +827 -0
  314. data/config/locales/sidebars.da.yml +20 -0
  315. data/config/locales/sidebars.de.yml +20 -0
  316. data/config/locales/sidebars.en.yml +20 -0
  317. data/config/locales/sidebars.es-MX.yml +20 -0
  318. data/config/locales/sidebars.fr.yml +20 -0
  319. data/config/locales/sidebars.he.yml +20 -0
  320. data/config/locales/sidebars.it.yml +20 -0
  321. data/config/locales/sidebars.ja.yml +20 -0
  322. data/config/locales/sidebars.lt.yml +20 -0
  323. data/config/locales/sidebars.nb-NO.yml +20 -0
  324. data/config/locales/sidebars.nl.yml +20 -0
  325. data/config/locales/sidebars.pl.yml +20 -0
  326. data/config/locales/sidebars.pt-BR.yml +20 -0
  327. data/config/locales/sidebars.ro.yml +20 -0
  328. data/config/locales/sidebars.ru.yml +20 -0
  329. data/config/locales/sidebars.zh-CN.yml +20 -0
  330. data/config/locales/sidebars.zh-TW.yml +20 -0
  331. data/config/locales/zh-CN.yml +827 -0
  332. data/config/locales/zh-TW.yml +827 -0
  333. data/config/routes.rb +177 -0
  334. data/db/migrate/113_initial_schema.rb +205 -0
  335. data/db/migrate/114_fixes_buggy_articles_and_notes.rb +52 -0
  336. data/db/migrate/115_drops_categories_for_tags.rb +34 -0
  337. data/db/migrate/20150207131657_add_missing_indexes.rb +19 -0
  338. data/db/migrate/20150807134129_simplify_redirect_relations.rb +38 -0
  339. data/db/migrate/20150808052637_add_blog_ids.rb +33 -0
  340. data/db/migrate/20150808191127_add_blog_id_to_redirects.rb +15 -0
  341. data/db/migrate/20150810094754_add_blog_id_to_tags.rb +15 -0
  342. data/db/migrate/20160108111120_add_devise_to_users.rb +53 -0
  343. data/db/migrate/20160108184201_move_last_connection_to_last_sign_in_at.rb +16 -0
  344. data/db/migrate/20160110094906_remove_profiles_rights.rb +14 -0
  345. data/db/migrate/20160605103918_replace_profile_id_with_string.rb +30 -0
  346. data/db/migrate/20160605154632_remove_profiles.rb +24 -0
  347. data/db/migrate/20160701061851_demand_blog_id_on_contents.rb +9 -0
  348. data/db/migrate/20160701062604_add_blog_id_to_resources.rb +28 -0
  349. data/db/seeds.rb +37 -0
  350. data/lib/email_notify.rb +26 -0
  351. data/lib/format.rb +17 -0
  352. data/lib/publify_core/engine.rb +23 -0
  353. data/lib/publify_core/lang.rb +5 -0
  354. data/lib/publify_core/version.rb +3 -0
  355. data/lib/publify_core.rb +56 -0
  356. data/lib/publify_guid.rb +9 -0
  357. data/lib/publify_plugins.rb +72 -0
  358. data/lib/publify_textfilter_markdown.rb +44 -0
  359. data/lib/publify_textfilter_none.rb +14 -0
  360. data/lib/publify_textfilter_smartypants.rb +14 -0
  361. data/lib/publify_textfilter_textile.rb +21 -0
  362. data/lib/publify_textfilter_twitterfilter.rb +33 -0
  363. data/lib/publify_time.rb +30 -0
  364. data/lib/sidebar_field.rb +115 -0
  365. data/lib/sidebar_registry.rb +33 -0
  366. data/lib/spam_protection.rb +101 -0
  367. data/lib/stateful.rb +106 -0
  368. data/lib/tasks/publify_core_tasks.rake +4 -0
  369. data/lib/text_filter_plugin.rb +182 -0
  370. data/lib/theme.rb +72 -0
  371. data/lib/transforms.rb +45 -0
  372. metadata +865 -0
@@ -0,0 +1,827 @@
1
+ ---
2
+ he:
3
+ accounts:
4
+ back_to_html: "← %{place} חזור אל"
5
+ back_to_login: Back to login
6
+ confirm:
7
+ admin: admin
8
+ dont_lose_the_mail_sent: Don't lose the mail sent at %{email} or you won't be able to login anymore
9
+ login: התחבר
10
+ password: סיסמה
11
+ proceed_to: Proceed to %{link}
12
+ success: You have successfully signed up.
13
+ create_account: Create an account
14
+ lost_my_password: I've lost my password
15
+ activerecord:
16
+ errors:
17
+ models:
18
+ article:
19
+ attributes:
20
+ title:
21
+ blank: can't be blank
22
+ template:
23
+ body: ''
24
+ header: ''
25
+ admin:
26
+ base:
27
+ not_allowed: Error, you are not allowed to perform this action
28
+ successfully_deleted: This %{name} was deleted successfully
29
+ cache:
30
+ destroy:
31
+ error: Cache could not be cleared
32
+ success: המטמון נוקה
33
+ show:
34
+ cache: Cache
35
+ explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
36
+ stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
37
+ sweep_cache: Sweep cache
38
+ content:
39
+ access_granted:
40
+ error: שגיאה, אינך רשאי לבצע פעולה זו
41
+ article_list:
42
+ no_articles: There are no articles yet. Why don't you start and create one?
43
+ autosave:
44
+ success: הכתבה נשמרה בהצלחה
45
+ create:
46
+ success: 'הכתבה נוצרה בהצלחה '
47
+ form:
48
+ allow_comments: אפשר תגובות
49
+ allow_comments_status:
50
+ one: מאופשר
51
+ zero: disabled
52
+ allow_pings_status:
53
+ one: מאופשר
54
+ zero: disabled
55
+ allow_trackbacks: אפשר עוקבים חזרה
56
+ allowed_comments_and_trackbacks_html: Comments are %{allow_comment} and trackbacks are %{allow_trackback}
57
+ article_type: Article type
58
+ cancel: בטל
59
+ default: Default
60
+ now: now
61
+ ok: OK
62
+ password: Password
63
+ permalink: קישור קבוע
64
+ preview: Preview
65
+ protected: Protected
66
+ public: Public
67
+ publish: פרסם
68
+ publish_settings: Publish settings
69
+ published: פורסם
70
+ save: שמור
71
+ save_as_draft: שמור טיוטה
72
+ status: מצב
73
+ tags: תוויות
74
+ tags_explanation_html: Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".
75
+ title: כותרת
76
+ type_your_post: Type your post
77
+ visibility: Visibility
78
+ index:
79
+ all_articles: All articles
80
+ drafts: טיוטות
81
+ manage_articles: ערוך כתבות
82
+ new_article: New article
83
+ publication_date: Publication date
84
+ publication_pending: Publication pending
85
+ published: פורסם
86
+ search: חפש
87
+ select_an_author: Select an author
88
+ withdrawn: Withdrawn
89
+ update:
90
+ success: הכתבה עודכנה בהצלחה.
91
+ dashboard:
92
+ comment:
93
+ by: על ידי
94
+ no_comments_yet: עדיין ללא תגובות
95
+ comments:
96
+ latest_comments: Latest Comments
97
+ drafts:
98
+ no_drafts_yet: No drafts yet, why don't you start and write one
99
+ your_drafts: Your drafts
100
+ inbound:
101
+ at: at
102
+ at_an_unknown_date: at an unknown date
103
+ inbound_links: Inbound links
104
+ made_a_link_to_you_on: made a link to you on
105
+ no_one_made_link_to_you_yet: No one made a link to you yet
106
+ you_have_no_internet_connection: You have no internet connection
107
+ index:
108
+ welcome_back: ברוך הבא, %{user_name}!
109
+ overview:
110
+ change_your_blog_presentation: change your blog presentation
111
+ customization_explain_html: תוכל גם %{theme_link} או %{sidebar_link}
112
+ dashboard_explain_html: This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}
113
+ enable_plugins: לאפשר תוספים
114
+ help_explain_html: If you need help, %{doc_link}.
115
+ read_our_documentation: read our documentation
116
+ update_your_profile_or_change_your_password: update your profile or change your password
117
+ write_a_page: לכתוב דף
118
+ write_a_post: לכתוב כתבה
119
+ publify_version:
120
+ error: You are at least one major version of Publify out of date. You should upgrade immediately. Download and install <a href='http://publify.co/stable.tgz'>the latest Publify version</a>
121
+ notice: There's a new version of Publify available. Why don't you upgrade to <a href='http://publify.co/stable.tgz'>the latest Publify version</a>?
122
+ warning: There's a new version of Publify available which may contain important bug fixes. Why don't you upgrade to <a href='http://publify.co/stable.tgz'>the latest Publify version</a>?
123
+ welcome:
124
+ approved_count:
125
+ one: 1 approved
126
+ other: "%{count} approved"
127
+ zero: no approved
128
+ articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion"
129
+ articles_count:
130
+ one: כתבה 1
131
+ other: "%{count} כתבות"
132
+ zero: אין כתבות
133
+ comments_count:
134
+ one: תגובה 1
135
+ other: "%d תגובות"
136
+ zero: אין תגובות
137
+ content: תוכן
138
+ drafts_count:
139
+ one: 1 draft
140
+ other: "%{count} drafts"
141
+ zero: no draft
142
+ feedback: משוב
143
+ notes_count:
144
+ one: 1 note
145
+ other: "%{count} notes"
146
+ zero: no note
147
+ pages_count:
148
+ one: 1 page
149
+ other: "%{count} pages"
150
+ zero: no page
151
+ running_publify: אתה מריץ את Publify %{version}
152
+ spam_count:
153
+ one: 1 spam
154
+ other: "%{count} spam"
155
+ zero: no spam
156
+ today: Today
157
+ unconfirmed_count:
158
+ one: 1 unconfirmed
159
+ other: "%{count} unconfirmed"
160
+ zero: no unconfirmed
161
+ your_articles_count:
162
+ one: 1 article writen by you
163
+ other: "%{count} articles writen by you"
164
+ zero: no article writen by you
165
+ feedback:
166
+ article:
167
+ action_or_other_html: "%{first_action} או %{second_action}"
168
+ add_a_comment: Add a comment
169
+ author: כותב
170
+ cancel: בטל
171
+ comments_for_html: תגובות עבור %{title}
172
+ email: דואל
173
+ no_feedback: There is no feedback yet. Why don't you create some?
174
+ save: שמור
175
+ select_all: Select all
176
+ url: כתובת
177
+ your_comment: Your comment
178
+ bulkops:
179
+ error: לא מיושם
180
+ success_classification: אומת הסיווג של %{count} פריטים.
181
+ success_deleted: נמחקו %{count} פריטים
182
+ success_deleted_spam: All spam have been deleted
183
+ success_mark_as_ham:
184
+ one: Marked 1 item as Ham
185
+ other: סומנו %{count} פריטים כלא ספאם
186
+ zero: No item selected to mark as Ham
187
+ success_mark_as_spam:
188
+ one: Marked 1 item as Spam
189
+ other: סומנו %{count} פריטים כספאם
190
+ zero: No item selected to mark as Spam
191
+ button:
192
+ delete_all_spam: Delete all spam
193
+ delete_checked_items: מחק פריטים שסומנו
194
+ mark_checked_items_as_ham: סווג פריטים שסומנו כלא-ספאם
195
+ mark_checked_items_as_spam: סווג פריטים שסומנו כספאם
196
+ create:
197
+ success: התגובה נוצרה בהצלחה.
198
+ destroy:
199
+ error: לא נמצאה
200
+ success: נמחקה
201
+ edit:
202
+ action_or_other_html: "%{first_action} או %{second_action}"
203
+ author: Author
204
+ cancel: Cancel
205
+ comments_for_html: תגובות עבור %s
206
+ edit_a_comment: Edit a comment
207
+ email: Email
208
+ save: שמור
209
+ url: Url
210
+ your_comment: Your comment
211
+ ham:
212
+ by: by
213
+ created_on: 'on'
214
+ index:
215
+ all: All
216
+ feedback: משוב
217
+ ham: לא-ספאם
218
+ no_feedback: There is no feedback yet. Why don't you create some?
219
+ presumed_ham: Presumed ham
220
+ presumed_spam: Presumed spam
221
+ select_all: Select all
222
+ spam: ספאם
223
+ unapproved_comments: תגובות לא מאושרות
224
+ spam:
225
+ by: by
226
+ cancel: בטל
227
+ created_on: 'on'
228
+ this_comment_by_was_flagged_as_spam_html: This comment by %{author} was flagged as spam, %{cancel_link}?
229
+ state:
230
+ ham: Ham
231
+ just_marked_as_ham: סומן כלא-ספאם
232
+ just_marked_as_spam: סומן כספאם
233
+ just_presumed_ham: כנראה לא-ספאם
234
+ presumed_ham: לא-ספאם ?
235
+ presumed_spam: ספאם ?
236
+ spam: Spam
237
+ unclassified: לא סווג
238
+ update:
239
+ success: התגובה עודכנה בהצלחה.
240
+ migrations:
241
+ show:
242
+ current_database_version: גרסת בסיס הנתונים הנוכחית
243
+ database_migration: עדכוני בסיס הנתונים
244
+ information: מידע
245
+ may_take_a_moment: ייתכן כי ייקח זמן מה
246
+ migration_pending:
247
+ one: There is one migration pending.
248
+ other: There are %{count} migrations pending.
249
+ migrations: Migrations
250
+ needed_migrations: עדכונים נדרשים
251
+ update_database_now: עדכן את בסיס הנתונים
252
+ you_are_up_to_date: בסיס הנתונים שלך מעודכן !
253
+ notes:
254
+ form:
255
+ cancel: בטל
256
+ compose_new_note: Compose new note
257
+ in_reply_to: In reply to
258
+ no_notes: There are no notes yet. Why don't you create one?
259
+ now: Now
260
+ or: or
261
+ permanent_link: Permanent link
262
+ posse_to_twitter: POSSE to Twitter
263
+ publish: פרסם
264
+ publish_at: פורסם בתאריך
265
+ publish_settings: Publish settings
266
+ tweet_id_like: Tweet id like 123456
267
+ header:
268
+ notes: Notes
269
+ show:
270
+ action_or_other_html: "%{first_action} או %{second_action}"
271
+ are_you_sure: Are you sure you want to delete this note
272
+ cancel: בטל
273
+ delete: מחק
274
+ destroy_confirmation: Destroy confirmation
275
+ pages:
276
+ edit:
277
+ success: הדף עודכן בהצלחה
278
+ form:
279
+ article_filter: מסנן הכתבה
280
+ cancel: בטל
281
+ offline: offline
282
+ online: מוצג
283
+ permanent_link: Permanent link
284
+ publish: פרסם
285
+ publish_settings: Publish settings
286
+ published: published
287
+ save: שמור
288
+ status: מצב
289
+ title: כותרת
290
+ type_your_post: Type your post
291
+ index:
292
+ author: כותב
293
+ manage_pages: נהל דפים
294
+ new_page: New Page
295
+ title: כותרת
296
+ new:
297
+ success: הדף נוצר בהצלחה
298
+ pages:
299
+ no_pages: There are no pages yet. Why don't you start and create one?
300
+ post_types:
301
+ index_and_form:
302
+ cancel: בטל
303
+ default: Default
304
+ description: תיאור
305
+ explain: The template name is the filename Publify will look for when calling an article of that type. It should be in your theme under views/articles/template name.html.erb
306
+ name: שם
307
+ or: or
308
+ post_types: Post Types
309
+ publify_default_post_type: Publify default post type
310
+ save: שמור
311
+ template_name: Template name
312
+ profiles:
313
+ index:
314
+ success: המשתמש עודכן בהצלחה
315
+ your_profile: Your profile
316
+ redirects:
317
+ destroy:
318
+ success: Redirection was successfully deleted.
319
+ index_and_form:
320
+ cancel: בטל
321
+ from: מאת
322
+ leave_empty_to_shorten_a_link: Leave empty to shorten a link
323
+ no_redirects: There are no redirects yet. Why don't you start and create one?
324
+ or: or
325
+ redirects: Redirects
326
+ save: שמור
327
+ to: To
328
+ resources:
329
+ destroy:
330
+ notice: נמחקה
331
+ index:
332
+ are_you_sure: 'האם אתה בטוח? '
333
+ content_type: סוג התוכן
334
+ date: תאריך
335
+ delete: Delete
336
+ file_size: גודל הקובץ
337
+ filename: שם הקובץ
338
+ media_library: Media Library
339
+ medium_size: Medium size
340
+ no_resources: There are no resources yet. Why don't you start and create one?
341
+ original_size: Original size
342
+ right_click_for_link: לחיצה ימנית לקישור
343
+ thumbnail: Thumbnail
344
+ upload: העלה
345
+ upload_a_file_to_your_site: העלה קובץ לאתר שלך
346
+ upload:
347
+ success: הקובץ הועלה
348
+ warning: לא מסוגל להעלות
349
+ seo:
350
+ general:
351
+ canonical_url: Canonical Url
352
+ custom_tracking_code: Custom tracking code
353
+ do_not_index_tags: Do not index tags
354
+ dofollow: Dofollow
355
+ explain: Here you can add anything you want to appear in your application header, such as analytics service tracking code.
356
+ explain_humans_txt: It's an initiative for knowing the people behind a website. It's a TXT file that contains information about the different people who have contributed to building the website. http://humanstxt.org/
357
+ explain_moderate_feedback: You may want to moderate feedback when turning this on
358
+ explain_rss_description: 'You can use the following tags: %author% (author name), %blog_url% (this blog URL), %blog_name% (this blog title) and %permalink_url% (a link to the article you want to protect)'
359
+ explain_tag_index_html: Checking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues
360
+ general_settings: הגדרות כלליות
361
+ google: Google
362
+ google_analytics: Google Analytics
363
+ google_webmaster_tools_validation_link: Google Webmaster Tools validation link
364
+ human: Human
365
+ humans_txt: Human
366
+ indexing: Indexing
367
+ meta_description: Meta description
368
+ meta_keywords: Meta keywords
369
+ read_more_about_html: Read more about %{link}
370
+ robots_txt: Robots.txt
371
+ rss_description_message: RSS description message
372
+ this_will_display: This will display at the bottom of each post in the RSS feed
373
+ use_canonical_url: Use canonical URL
374
+ use_dofollow_in_comments: Use dofollow in comments
375
+ use_meta_keywords: Use meta keywords
376
+ use_rss_description: Use RSS description
377
+ permalinks:
378
+ custom: Custom
379
+ date_and_title: Date and title
380
+ explain: Publify offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links.
381
+ help_on_permalink_settings: Help on permalink settings
382
+ month_and_title: Month and title
383
+ permalink_format: Permalink format
384
+ sample: Here are some examples to get you started.
385
+ title_only: Title only
386
+ you_can_custom_your_url_structure: 'You can custom your URL structure using the following tags:'
387
+ your_article_day: your article day of publication.
388
+ your_article_month: your article month of publication.
389
+ your_article_slug_html: your article slug. <strong>Using this slug is mandatory</strong>.
390
+ your_article_year: your article year of publication.
391
+ show:
392
+ cancel: בטל
393
+ global_settings: Global settings
394
+ or: or
395
+ permalinks: Permalinks
396
+ title_settings: Title settings
397
+ update_settings: Update settings
398
+ titles:
399
+ articles: כתבות
400
+ author_page: Author page
401
+ dated_archives: Dated archives
402
+ description_template: Description template
403
+ help_on_title_settings: Help on title settings
404
+ home: בית
405
+ pages: דפים
406
+ paginated_archives: Paginated archives
407
+ replaced_by_the_archive_date: Replaced by the archive date
408
+ replaced_by_the_content_body: Replaced by the content body
409
+ replaced_with_the_article_categories: Replaced with the article categories (comma separated)
410
+ replaced_with_the_article_page_title: Replaced with the article/page title
411
+ replaced_with_the_article_tags: Replaced with the article tags (comma separated)
412
+ replaced_with_the_category_tag_name: Replaced with the category/tag name
413
+ replaced_with_the_current_date: Replaced with the current date
414
+ replaced_with_the_current_month: Replaced with the current month
415
+ replaced_with_the_current_page_number: Replaced with the current page number
416
+ replaced_with_the_current_search_phrase: Replaced with the current search phrase
417
+ replaced_with_the_current_time: Replaced with the current time
418
+ replaced_with_the_current_year: Replaced with the current year
419
+ replaced_with_the_post_page_excerpt: Replaced with the post/page excerpt
420
+ replaced_with_the_title_of_the_article_page: Replaced with the title of the article/page
421
+ search_results: Search results
422
+ short_statuses: Short statuses
423
+ short_statuses_lists: Short statuses lists
424
+ the_blog_s_name: The blog's name
425
+ the_blog_s_tagline_description: The blog's tagline / description
426
+ these_tags_can_be_included: These tags can be included in your templates and will be replaced when displaying the page.
427
+ title_template: Title template
428
+ settings:
429
+ display:
430
+ cancel: בטל
431
+ custom_url: Custom URL shortener domain
432
+ custom_url_help: If you have a custom domain for URL shortening, enter it here.
433
+ date_format: Date format
434
+ default_archives_show: articles on the archives page
435
+ default_article_show: articles on the homepage
436
+ default_feed_show: most recent articles in feed
437
+ display: Display
438
+ display_settings: Display Settings
439
+ feed_articles: Article excerpts
440
+ feed_excerpts_only: Show only article excerpts in feed
441
+ feed_settings: RSS Feed Settings
442
+ feedburner_help: Enter your FeedBurner ID if you wish to use your Google FeedBurner account instead of using the Publify feed URL.
443
+ feedburner_id: FeedBurner ID
444
+ or: or
445
+ publishing_options: Publishing Options
446
+ status_main_feed: Display statuses in the main feed
447
+ statuses: Statuses
448
+ time_format: Time format
449
+ update_settings: Update settings
450
+ feedback:
451
+ askimet_key: מפתח Akismet
452
+ avatars_provider: Avatars provider
453
+ cancel: בטל
454
+ captcha: Captcha
455
+ comments: תגובות
456
+ comments_filter: מסנן התגובות
457
+ days: ימים
458
+ disable_comments_after: בטל תגובות לאחר
459
+ disable_trackbacks_sitewide: בטל עוקבים-חזרה בכל האתר
460
+ enable_comments_by_default: אפשר תגובות כברירת מחדל
461
+ enable_feedback_moderation: אפשר ביקורת על המשוב
462
+ enable_recaptcha: Enable reCaptcha
463
+ enable_spam_protection: אפשר הגנת ספאם
464
+ enable_trackbacks_by_default: אפשר עוקבים-חזרה כברירת מחדל
465
+ explain_disable_trackbacks: הגדרה זו מאפשרת לך לבטל עוקבים-חזרה לכל כתבה בבלוג שלך. היא לא תסיר עוקבים-חזרה קיימים, אבל תמנע נסיונות להוספת עוקב-חזרה בכל הכתבות הבלוג שלך.
466
+ explain_feedback_moderation: תוכל לאפשר ביקורת על המשוב בכל האתר. אם תבצע זאת, לא תוצג שום תגובה או עוקב-חזרה בבלוג שלך אלא אם תאשר אותה.
467
+ explain_reject_comments: Publify תדחה אוטומטית תגובות ועוקבים-חזרה המכילים את כמות הקישורים מסויימת
468
+ explain_spam_protection: אפשור הגנת ספאם תגרום ל-Publify להשוות כתובות ה-IP של השולחים ואת תוכן השליחה כנגד רשימות שחורות מקומיות או מרוחקות - הגנה טובה כנגד רובוטי ספאם.
469
+ explain_spamfiltering_html: תוכל להשתמש בשירות מסנן ספאם של <a href='http://akismet.com'>Akismet</a>. עליך להירשם Akisemt מפתח API לפני שתוכל להשתמש בשירות. אם כבר יש לך מפתח, רשום אותו כאן.
470
+ feedback: משוב
471
+ feedback_settings: Feedback settings
472
+ max_links: מקסימום קישורים
473
+ none: none
474
+ or: or
475
+ remember_to_set_your_recaptcha: Remember to set your reCaptcha keys inside config/initializers/recaptcha.rb
476
+ set_to_0_to_never_disable_comments: הגדר כ-0 כדי לא לבטל תגובות אף פעם
477
+ set_to_0_to_never_reject_comments: הגדר כ-0 כדי לא לדחות תגובות לעולם
478
+ spam: Spam
479
+ spam_protection: Spam protection
480
+ trackbacks: Trackbacks
481
+ update_settings: Update settings
482
+ index:
483
+ allow_users_to_register: אפשר למשתמשים להירשם
484
+ blog_name: שם הבלוג
485
+ blog_subtitle: כותרת משנה
486
+ blog_url: כתובת הבלוג
487
+ cancel: בטל
488
+ email_address_used_to_notify: כתובת הדואל שתשמש את Publify לשלוח עדכונים
489
+ explain_allow_users_to_register_html: תוכל לאפשר למשתמשים להירשם לבלוג שלך. כברירת מחדל, הם יירשמו כתורמים - חשבון שאינו נותן הרשאות מיוחדות אלא רק את הזכות להחזיק חשבון באתר. אם אינך רוצה שהמשתמשים יוכלו להירשם בעצמם, תוכל להוסיף אותם בעצמך כחללק מדף זה
490
+ general_settings: General settings
491
+ items_to_display_in_admin_lists: Items to display in admin lists
492
+ language: שפה
493
+ or: or
494
+ source_email: דואל המקור
495
+ update_settings: Update settings
496
+ users: משתמשים
497
+ your_blog: הבלוג שלך
498
+ update:
499
+ error: 'Error: %{messages}'
500
+ success: ההגדרה עודכנה.
501
+ write:
502
+ avatar_size: Avatar size
503
+ cancel: בטל
504
+ display: תצוגה
505
+ example: דוגמא
506
+ explain: בעת פרסום במאמר, Publify יכולה לשלוח עוקבים-חזרה לאתרים אליהם אתה מקשר. מומלץ לבטל זאת לבלוגים פרטיים משום שמידע פרטי על האתרים אליהם אתה מקשר עלול לדלוף. לבלוגים ציבוריים, אין טעם לבטל זאת.
507
+ image_medium_size: Image medium size
508
+ image_thumbnail_size: Image thumbnail size
509
+ latitude_longitude: קו רוחב, קו אורך
510
+ media: Media
511
+ or: or
512
+ publish: פרסם
513
+ publish_on_twitter: Publish on Twitter
514
+ send_trackbacks: שלח עוקבים-חזרה
515
+ trackbacks: עוקבים חזרה
516
+ twitter_consumer_key: Twitter consumer key
517
+ twitter_consumer_secret: Twitter consumer secret
518
+ update_settings: Update settings
519
+ urls_to_ping: כתובות לקישור אוטומטי
520
+ write: כתוב
521
+ your_geoloc: קווי הרוחב והאורך שלך
522
+ shared:
523
+ destroy:
524
+ are_you_sure: האם אתה בטוח שברצונך למחוק את %{element} הזו?
525
+ menu:
526
+ all_articles: All articles
527
+ all_pages: All pages
528
+ article_types: Article types
529
+ articles: Articles
530
+ cache: Cache
531
+ choose_theme: Choose theme
532
+ customize_sidebar: Customize sidebar
533
+ design: Design
534
+ display: Display
535
+ documentation: Documentation
536
+ feedback: Feedback
537
+ general_settings: הגדרות כלליות
538
+ global_seo_settings: Global SEO settings
539
+ in_page_plugins: In page plugins
540
+ logged_in_as: Logged in as %{login}
541
+ logout_html: Log out &raquo;
542
+ manage_users: Manage Users
543
+ media_library: Media Library
544
+ new: New
545
+ new_article: New Article
546
+ new_media: New Media
547
+ new_note: New Note
548
+ new_page: New Page
549
+ notes: Notes
550
+ pages: Pages
551
+ permalinks: Permalinks
552
+ profile: דיוקן
553
+ redirects: Redirects
554
+ report_a_bug: Report a bug
555
+ seo: SEO
556
+ settings: Settings
557
+ sidebar_plugins: Sidebar plugins
558
+ tags: Tags
559
+ titles: Titles
560
+ write: Write
561
+ twitter_alert:
562
+ fill_the_twitter_credentials: fill in the OAuth credentials
563
+ how_to_setup_twitter_html: If you want to push short statuses on Twitter, you need to %{twitter_settings_link} Twitter gave you after you %{twitter_registration_link}.
564
+ registered_your_application: registered your application
565
+ sidebar:
566
+ config:
567
+ active_sidebar_items: הפעל פריטי תיבת צד
568
+ available_items: פריטים זמינים
569
+ you_have_no_plugins_installed: You have no plugins installed
570
+ index:
571
+ cancel: בטל
572
+ download_more_plugins_html: You can download and install sidebar plugins from our official <a href='https://github.com/fdv/publify/wiki/Sidebar-plugins'>plugin repository</a>. All you have to do is upload the theme directory in your vendor/plugins directory.
573
+ explain_how_its_works: גרור והשלך כדי לשנות את פריטי תיבת הצד המוצגת בבלוג שלך. כדי להסיר פריטים מתיבת הצד, לחץ על הסר. השינויים נשמרים מיידית אבל לא מופעלים עד שתלחץ על הכפתור 'פרסם'.
574
+ or: or
575
+ publish_changes: פרסם שינויים
576
+ sidebar: תיבת צד
577
+ target:
578
+ drag_some_plugins_here: גרור חלק מהתוספים כדי למלא את תיבת הצד
579
+ tags:
580
+ edit:
581
+ success: התוית עודכנה בהצלחה.
582
+ index_and_form:
583
+ cancel: בטל
584
+ display_name: שם התצוגה
585
+ manage_tags: נהל תוויות
586
+ name: השם
587
+ no_tags: There are no tags yet. Why don't you start and create one?
588
+ or: or
589
+ save: שמור
590
+ themes:
591
+ index:
592
+ active_theme: "%{name} - עיצוב פעיל"
593
+ choose_a_theme: בחר עיצוב
594
+ use_this_theme: Use this theme
595
+ switchto:
596
+ success: Theme selection updated
597
+ users:
598
+ edit:
599
+ edit_user: ערוך משתמש
600
+ form:
601
+ about: Biography
602
+ account_settings: Account Settings
603
+ aim: AIM screen name
604
+ article_filter: Article filter
605
+ author_page: author page
606
+ avatar: Avatar Settings
607
+ avatar_current: Current avatar
608
+ cancel: בטל
609
+ contact_explain_html: This information will be displayed on your %{link}
610
+ contact_settings: Contact Settings
611
+ display_name: Display name
612
+ email: דואל
613
+ firstname: First name
614
+ jabber: Jabber ID
615
+ lastname: Last name
616
+ login: התחבר
617
+ msn: MSN Messenger ID
618
+ nickname: Nickname
619
+ notification_article: when new article is posted
620
+ notification_comment: when new comment is posted
621
+ notification_email: via email
622
+ notification_settings: Notifications
623
+ notifications: Send notification messages
624
+ or: or
625
+ password: Password
626
+ password_confirmation: Password confirmation
627
+ profile: דיוקן
628
+ profile_settings: Profile Settings
629
+ save: שמור
630
+ twitter: Twitter username
631
+ twitter_account: Twitter username
632
+ twitter_oauth: Twitter OAuth token
633
+ twitter_oauth_secret: Twitter OAuth secret
634
+ upload: Upload your profile image
635
+ upload_file: Upload a .jpg, .png or .gif file
636
+ user_status: User Status
637
+ website: Website
638
+ yahoo: Yahoo! Messenger ID
639
+ index:
640
+ articles: כתבות
641
+ comments: תגובות
642
+ email: דואל
643
+ login: התחבר
644
+ name: השם
645
+ new_user: New User
646
+ profile: דיוקן
647
+ state: State
648
+ users: משתמשים
649
+ new:
650
+ add_user: הוסף משתמש
651
+ success: המשתמש נוצר בהצלחה.
652
+ articles:
653
+ archives:
654
+ no_articles_found: לא נמצאו כתבות
655
+ posted_in: פורסם ב-
656
+ article:
657
+ posted_by: נכתב על ידי
658
+ article_excerpt:
659
+ continue_reading: Continue reading
660
+ article_links:
661
+ comments:
662
+ one: 1 comment
663
+ other: "%{count} comments"
664
+ zero: ללא תגובות
665
+ tags: Tags
666
+ trackbacks:
667
+ one: 1 trackback
668
+ other: "%{count} trackbacks"
669
+ zero: no trackbacks
670
+ comment_errors:
671
+ message: Oops, something wrong happened, the comment could not be saved.
672
+ comment_form:
673
+ comment_markup_help: עזרה על שפת הטקסט
674
+ leave_url_email: השאר כתובת/דואל
675
+ preview_comment: תצוגה מקדימה של התגובה
676
+ your_blog: הבלוג שלך
677
+ your_email: הדואל שלך
678
+ your_message: התגובה שלך
679
+ your_name: השם שלך
680
+ comment_preview:
681
+ is_about_to_say: עומד לומר
682
+ index:
683
+ page: page
684
+ password_form:
685
+ submit: Submit
686
+ read:
687
+ comments: תגובות
688
+ comments_are_disabled: התגובות מבוטלות
689
+ edit: Edit
690
+ leave_a_response: הגב
691
+ rss_feed: מזין RSS לכתבה זו
692
+ trackback_uri: Trackback URI
693
+ trackbacks: Trackbacks
694
+ use_the_following_link_to_trackback: השתמש בקישור הבא כדי לעקוב-חזרה מהאתר שלך
695
+ search:
696
+ next_page: Next page
697
+ previous_page: Previous page
698
+ trackback:
699
+ from: From
700
+ authors:
701
+ show:
702
+ aim: 'AIM:'
703
+ contact_information: Contact information
704
+ jabber: 'Jabber:'
705
+ msn: 'MSN:'
706
+ next_page: הדף הבא
707
+ posted_in: נשלח ב-
708
+ previous_page: הדף הקודם
709
+ this_author_has_not_published_any_article_yet: This author has not published any article yet
710
+ twitter: 'Twitter:'
711
+ web_site: 'Web site:'
712
+ yahoo: 'Yahoo:'
713
+ comments:
714
+ comment:
715
+ said: said
716
+ this_comment_has_been_flagged_for_moderator_approval: תגובה זו הועברה לביקורת. היא לא תופיע בבלוג עד אשר הכותב יאשר אותה
717
+ date:
718
+ abbr_month_names:
719
+ -
720
+ - Jan
721
+ - Feb
722
+ - Mar
723
+ - Apr
724
+ - May
725
+ - Jun
726
+ - Jul
727
+ - Aug
728
+ - Sep
729
+ - Oct
730
+ - Nov
731
+ - Dec
732
+ month_names:
733
+ -
734
+ - January
735
+ - February
736
+ - March
737
+ - April
738
+ - May
739
+ - June
740
+ - July
741
+ - August
742
+ - September
743
+ - October
744
+ - November
745
+ - December
746
+ devise_custom:
747
+ characters_minimum: Minimum %{min} characters
748
+ errors:
749
+ article_type_already_exist: This article type already exists
750
+ cant_end_with_rss_or_atom: Can't end in .rss or .atom. These are reserved to be used for feed URLs
751
+ no_notes_found: No notes found...
752
+ no_posts_found: No posts found...
753
+ page_not_found: Page not found
754
+ permalink_need_a_title: 'You need a permalink format with an identifier : %%title%%'
755
+ problem_sending_to_twitter: Oooops something wrong happened
756
+ render_sidebar: It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually
757
+ the_page_you_are_looking_for: The page you are looking for has moved or does not exist.
758
+ generic:
759
+ change: Change
760
+ save: שמור
761
+ helper:
762
+ at: at
763
+ langs:
764
+ da_DK: Danish
765
+ de_DE: German
766
+ en_US: English (US)
767
+ es_MX: Spanish (Mexican)
768
+ fr_FR: French
769
+ he_IL: Hebrew
770
+ it_IT: Italian
771
+ ja_JP: Japanese
772
+ lt_LT: Lithuanian
773
+ nb_NO: Norwegian
774
+ nl_NL: Nederland
775
+ pl_PL: Polish
776
+ pt_BR: Portuguese (Brazilian)
777
+ ro_RO: Romanian
778
+ ru_RU: Russian
779
+ zh_CN: Simple Chinese
780
+ zh_TW: Chinese
781
+ layouts:
782
+ administration:
783
+ powered_by: is proudly powered by
784
+ default:
785
+ designed_by: עוצב על ידי %{designed_by}
786
+ powered_by_html: מופעל על ידי %{powered_by}
787
+ notes:
788
+ index:
789
+ next_page: Next page
790
+ previous_page: Previous page
791
+ note:
792
+ view_on_twitter: View on Twitter
793
+ notice:
794
+ note_successfully_created: Note was successfully created
795
+ pagination:
796
+ next_page: Next page
797
+ previous_page: Previous page
798
+ profile:
799
+ admin: מנהל
800
+ contributor: תורם
801
+ publisher: כותב
802
+ setup:
803
+ article:
804
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
805
+ title: Hello World!
806
+ index:
807
+ blog_name: Blog name
808
+ welcome_to_your_blog_setup: Welcome to your blog setup
809
+ your_mail: Your email
810
+ page:
811
+ about: אודות
812
+ body: This is an example of a Publify page. You can edit this to write information about yourself or your site so readers know who you are. You can create as many pages as this one as you like and manage all of your content inside Publify.
813
+ tags:
814
+ index:
815
+ next_page: Next page
816
+ previous_page: Previous page
817
+ there_is_no_tags: There is no tag
818
+ time:
819
+ formats:
820
+ default: "%m/%d/%Y %H:%M"
821
+ letters_month_with_year: "%m %Y"
822
+ short: "%m/%d/%y"
823
+ with_spaces: "%d %B %y"
824
+ user:
825
+ status:
826
+ active: Active
827
+ inactive: Inactive