publify_core 9.1.0 → 9.2.0

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 (357) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -1
  3. data/app/assets/javascripts/bootstrap-sprockets.js +8 -0
  4. data/app/assets/javascripts/bootstrap/affix.js +164 -0
  5. data/app/assets/javascripts/bootstrap/alert.js +95 -0
  6. data/app/assets/javascripts/bootstrap/button.js +125 -0
  7. data/app/assets/javascripts/bootstrap/collapse.js +212 -0
  8. data/app/assets/javascripts/bootstrap/dropdown.js +165 -0
  9. data/app/assets/javascripts/bootstrap/modal.js +358 -0
  10. data/app/assets/javascripts/bootstrap/tab.js +155 -0
  11. data/app/assets/javascripts/bootstrap/transition.js +59 -0
  12. data/app/assets/javascripts/lightbox.js +4 -4
  13. data/app/assets/javascripts/publify_admin.js +1 -35
  14. data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
  15. data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  16. data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  17. data/app/assets/stylesheets/_bootstrap.scss +42 -0
  18. data/app/assets/stylesheets/administration_structure.css.scss +1 -45
  19. data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  20. data/app/assets/stylesheets/bootstrap/_button-groups.scss +242 -0
  21. data/app/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  22. data/app/assets/stylesheets/bootstrap/_close.scss +37 -0
  23. data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
  24. data/app/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
  25. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +213 -0
  26. data/app/assets/stylesheets/bootstrap/_forms.scss +586 -0
  27. data/app/assets/stylesheets/bootstrap/_grid.scss +94 -0
  28. data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
  29. data/app/assets/stylesheets/bootstrap/_media.scss +66 -0
  30. data/app/assets/stylesheets/bootstrap/_mixins.scss +37 -0
  31. data/app/assets/stylesheets/bootstrap/_modals.scss +150 -0
  32. data/app/assets/stylesheets/bootstrap/_navbar.scss +479 -0
  33. data/app/assets/stylesheets/bootstrap/_navs.scss +242 -0
  34. data/app/assets/stylesheets/bootstrap/_normalize.scss +427 -0
  35. data/app/assets/stylesheets/bootstrap/_pagination.scss +86 -0
  36. data/app/assets/stylesheets/bootstrap/_panels.scss +222 -0
  37. data/app/assets/stylesheets/bootstrap/_print.scss +99 -0
  38. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +160 -0
  39. data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
  40. data/app/assets/stylesheets/bootstrap/_theme.scss +224 -0
  41. data/app/assets/stylesheets/bootstrap/_type.scss +296 -0
  42. data/app/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  43. data/app/assets/stylesheets/bootstrap/_variables.scss +638 -0
  44. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  45. data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +15 -0
  46. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  47. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  48. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +56 -0
  49. data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  50. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  51. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +82 -0
  52. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +56 -0
  53. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  54. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  55. data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  56. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +28 -0
  57. data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  58. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  59. data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  60. data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +7 -0
  61. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  62. data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +20 -0
  63. data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  64. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  65. data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +17 -0
  66. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  67. data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  68. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  69. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  70. data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  71. data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  72. data/app/assets/stylesheets/lightbox.css +3 -3
  73. data/app/assets/stylesheets/publify_admin.css.scss +0 -1
  74. data/app/controllers/accounts_controller.rb +2 -0
  75. data/app/controllers/admin/base_controller.rb +8 -5
  76. data/app/controllers/admin/content_controller.rb +37 -24
  77. data/app/controllers/admin/dashboard_controller.rb +16 -64
  78. data/app/controllers/admin/feedback_controller.rb +45 -38
  79. data/app/controllers/admin/notes_controller.rb +15 -9
  80. data/app/controllers/admin/pages_controller.rb +18 -15
  81. data/app/controllers/admin/post_types_controller.rb +7 -5
  82. data/app/controllers/admin/profiles_controller.rb +4 -2
  83. data/app/controllers/admin/redirects_controller.rb +9 -5
  84. data/app/controllers/admin/resources_controller.rb +7 -4
  85. data/app/controllers/admin/seo_controller.rb +14 -10
  86. data/app/controllers/admin/settings_controller.rb +7 -5
  87. data/app/controllers/admin/sidebar_controller.rb +7 -4
  88. data/app/controllers/admin/tags_controller.rb +6 -3
  89. data/app/controllers/admin/themes_controller.rb +10 -7
  90. data/app/controllers/admin/users_controller.rb +9 -6
  91. data/app/controllers/articles_controller.rb +49 -33
  92. data/app/controllers/authors_controller.rb +6 -3
  93. data/app/controllers/base_controller.rb +9 -5
  94. data/app/controllers/comments_controller.rb +12 -8
  95. data/app/controllers/content_controller.rb +4 -2
  96. data/app/controllers/feedback_controller.rb +4 -2
  97. data/app/controllers/notes_controller.rb +5 -3
  98. data/app/controllers/setup_controller.rb +14 -10
  99. data/app/controllers/tags_controller.rb +6 -4
  100. data/app/controllers/text_controller.rb +2 -4
  101. data/app/controllers/textfilter_controller.rb +2 -0
  102. data/app/controllers/theme_controller.rb +14 -12
  103. data/app/controllers/xml_controller.rb +2 -0
  104. data/app/helpers/admin/base_helper.rb +28 -28
  105. data/app/helpers/admin/feedback_helper.rb +34 -24
  106. data/app/helpers/articles_helper.rb +4 -2
  107. data/app/helpers/authors_helper.rb +6 -3
  108. data/app/helpers/base_helper.rb +50 -34
  109. data/app/helpers/blog_helper.rb +4 -2
  110. data/app/helpers/xml_helper.rb +2 -0
  111. data/app/jobs/application_job.rb +2 -0
  112. data/app/mailers/notification_mailer.rb +5 -3
  113. data/app/models/ability.rb +25 -23
  114. data/app/models/archives_sidebar.rb +14 -11
  115. data/app/models/article.rb +44 -32
  116. data/app/models/article/factory.rb +14 -6
  117. data/app/models/blog.rb +85 -65
  118. data/app/models/comment.rb +10 -7
  119. data/app/models/config_manager.rb +4 -2
  120. data/app/models/content.rb +34 -40
  121. data/app/models/content_base.rb +9 -3
  122. data/app/models/feedback.rb +19 -16
  123. data/app/models/meta_sidebar.rb +5 -2
  124. data/app/models/note.rb +25 -23
  125. data/app/models/page.rb +8 -6
  126. data/app/models/page_sidebar.rb +4 -2
  127. data/app/models/ping.rb +2 -0
  128. data/app/models/post_type.rb +3 -1
  129. data/app/models/redirect.rb +11 -6
  130. data/app/models/redirection.rb +2 -0
  131. data/app/models/resource.rb +4 -2
  132. data/app/models/search_sidebar.rb +4 -2
  133. data/app/models/sidebar.rb +10 -5
  134. data/app/models/static_sidebar.rb +15 -12
  135. data/app/models/tag.rb +14 -10
  136. data/app/models/tag_sidebar.rb +6 -3
  137. data/app/models/text_filter.rb +85 -11
  138. data/app/models/trackback.rb +7 -11
  139. data/app/models/trigger.rb +6 -3
  140. data/app/models/user.rb +43 -42
  141. data/app/services/title_builder.rb +56 -45
  142. data/app/uploaders/resource_uploader.rb +7 -3
  143. data/app/views/accounts/confirm.html.erb +3 -3
  144. data/app/views/admin/content/_article_list.html.erb +23 -8
  145. data/app/views/admin/content/_form.html.erb +71 -47
  146. data/app/views/admin/content/edit.html.erb +1 -1
  147. data/app/views/admin/content/index.html.erb +25 -15
  148. data/app/views/admin/content/new.html.erb +2 -2
  149. data/app/views/admin/dashboard/_comment.html.erb +5 -5
  150. data/app/views/admin/dashboard/_comments.html.erb +2 -2
  151. data/app/views/admin/dashboard/_drafts.html.erb +5 -5
  152. data/app/views/admin/dashboard/_overview.html.erb +7 -9
  153. data/app/views/admin/dashboard/_welcome.html.erb +11 -11
  154. data/app/views/admin/dashboard/index.html.erb +12 -7
  155. data/app/views/admin/feedback/_button.html.erb +6 -6
  156. data/app/views/admin/feedback/_feedback.html.erb +3 -3
  157. data/app/views/admin/feedback/_ham.html.erb +27 -9
  158. data/app/views/admin/feedback/_spam.html.erb +26 -16
  159. data/app/views/admin/feedback/article.html.erb +20 -21
  160. data/app/views/admin/feedback/edit.html.erb +14 -15
  161. data/app/views/admin/feedback/{ham.js → ham.js.erb} +0 -0
  162. data/app/views/admin/feedback/index.html.erb +25 -23
  163. data/app/views/admin/feedback/{spam.js → spam.js.erb} +0 -0
  164. data/app/views/admin/migrations/show.html.erb +10 -11
  165. data/app/views/admin/notes/_form.html.erb +13 -13
  166. data/app/views/admin/notes/_list.html.erb +19 -8
  167. data/app/views/admin/notes/_note.html.erb +12 -7
  168. data/app/views/admin/notes/edit.html.erb +6 -1
  169. data/app/views/admin/notes/index.html.erb +5 -1
  170. data/app/views/admin/notes/show.html.erb +2 -2
  171. data/app/views/admin/pages/_form.html.erb +86 -77
  172. data/app/views/admin/pages/_pages.html.erb +11 -4
  173. data/app/views/admin/pages/edit.html.erb +3 -1
  174. data/app/views/admin/pages/index.html.erb +10 -6
  175. data/app/views/admin/pages/new.html.erb +3 -1
  176. data/app/views/admin/post_types/_index_and_form.html.erb +15 -16
  177. data/app/views/admin/post_types/edit.html.erb +1 -1
  178. data/app/views/admin/post_types/index.html.erb +1 -1
  179. data/app/views/admin/profiles/index.html.erb +2 -3
  180. data/app/views/admin/redirects/_index_and_form.html.erb +10 -11
  181. data/app/views/admin/redirects/edit.html.erb +1 -1
  182. data/app/views/admin/redirects/index.html.erb +1 -1
  183. data/app/views/admin/resources/index.html.erb +19 -16
  184. data/app/views/admin/seo/_general.html.erb +23 -47
  185. data/app/views/admin/seo/_permalinks.html.erb +14 -14
  186. data/app/views/admin/seo/_titles.html.erb +63 -64
  187. data/app/views/admin/seo/show.html.erb +14 -19
  188. data/app/views/admin/settings/display.html.erb +22 -25
  189. data/app/views/admin/settings/feedback.html.erb +31 -32
  190. data/app/views/admin/settings/index.html.erb +23 -24
  191. data/app/views/admin/settings/write.html.erb +21 -22
  192. data/app/views/admin/shared/_edit.html.erb +3 -3
  193. data/app/views/admin/shared/_menu.html.erb +26 -26
  194. data/app/views/admin/shared/_twitter_alert.html.erb +1 -1
  195. data/app/views/admin/sidebar/_config.html.erb +5 -5
  196. data/app/views/admin/sidebar/_target_sidebar.html.erb +4 -4
  197. data/app/views/admin/sidebar/index.html.erb +7 -7
  198. data/app/views/admin/tags/_index_and_form.html.erb +11 -12
  199. data/app/views/admin/tags/edit.html.erb +1 -1
  200. data/app/views/admin/tags/index.html.erb +1 -1
  201. data/app/views/admin/themes/index.html.erb +5 -6
  202. data/app/views/admin/users/_form.html.erb +34 -34
  203. data/app/views/admin/users/edit.html.erb +2 -2
  204. data/app/views/admin/users/index.html.erb +10 -12
  205. data/app/views/admin/users/new.html.erb +2 -2
  206. data/app/views/archives_sidebar/_content.html.erb +2 -2
  207. data/app/views/articles/_archives_article.html.erb +3 -3
  208. data/app/views/articles/_article.html.erb +7 -9
  209. data/app/views/articles/_article_author.html.erb +4 -0
  210. data/app/views/articles/_article_content.html.erb +2 -2
  211. data/app/views/articles/_article_excerpt.html.erb +2 -2
  212. data/app/views/articles/_article_links.html.erb +1 -1
  213. data/app/views/articles/_comment_errors.html.erb +1 -1
  214. data/app/views/articles/_comment_form.html.erb +12 -12
  215. data/app/views/articles/_comment_preview.html.erb +3 -3
  216. data/app/views/articles/_password_form.html.erb +4 -4
  217. data/app/views/articles/_trackback.html.erb +2 -2
  218. data/app/views/articles/archives.html.erb +1 -1
  219. data/app/views/articles/feedback_atom_feed.atom.builder +3 -1
  220. data/app/views/articles/feedback_rss_feed.rss.builder +9 -7
  221. data/app/views/articles/index_atom_feed.atom.builder +5 -3
  222. data/app/views/articles/index_rss_feed.rss.builder +10 -8
  223. data/app/views/articles/live_search.html.erb +3 -3
  224. data/app/views/articles/read.html.erb +16 -8
  225. data/app/views/articles/search.html.erb +2 -2
  226. data/app/views/articles/trackback.xml.builder +3 -1
  227. data/app/views/articles/view_page.html.erb +1 -1
  228. data/app/views/authors/show.html.erb +9 -9
  229. data/app/views/authors/show_atom_feed.atom.builder +4 -2
  230. data/app/views/authors/show_rss_feed.rss.builder +10 -8
  231. data/app/views/comments/_comment.html.erb +3 -3
  232. data/app/views/devise/mailer/reset_password_instructions.html.erb +7 -9
  233. data/app/views/devise/passwords/edit.html.erb +4 -4
  234. data/app/views/devise/passwords/new.html.erb +1 -1
  235. data/app/views/devise/registrations/new.html.erb +5 -5
  236. data/app/views/devise/sessions/new.html.erb +3 -3
  237. data/app/views/errors/404.html.erb +2 -2
  238. data/app/views/feedback/index.atom.builder +3 -1
  239. data/app/views/feedback/index.rss.builder +9 -7
  240. data/app/views/layouts/accounts.html.erb +26 -26
  241. data/app/views/layouts/administration.html.erb +31 -31
  242. data/app/views/layouts/default.html.erb +3 -3
  243. data/app/views/layouts/editor.html.erb +5 -19
  244. data/app/views/meta_sidebar/_content.html.erb +2 -2
  245. data/app/views/notes/_note.html.erb +1 -1
  246. data/app/views/notes/index.html.erb +1 -1
  247. data/app/views/notes/show_in_reply.html.erb +1 -1
  248. data/app/views/notification_mailer/_mail_footer.html.erb +3 -3
  249. data/app/views/notification_mailer/article.html.erb +2 -2
  250. data/app/views/notification_mailer/comment.html.erb +5 -5
  251. data/app/views/notification_mailer/notif_user.html.erb +1 -1
  252. data/app/views/page_sidebar/_content.html.erb +1 -1
  253. data/app/views/search_sidebar/_content.html.erb +2 -2
  254. data/app/views/settings/install.html.erb +2 -2
  255. data/app/views/setup/index.html.erb +7 -7
  256. data/app/views/shared/_atom_header.atom.builder +4 -2
  257. data/app/views/shared/_atom_item_article.atom.builder +11 -6
  258. data/app/views/shared/_atom_item_comment.atom.builder +4 -2
  259. data/app/views/shared/_atom_item_trackback.atom.builder +4 -2
  260. data/app/views/shared/_page_header.html.erb +9 -12
  261. data/app/views/shared/_rss_item_article.rss.builder +6 -3
  262. data/app/views/shared/_rss_item_comment.rss.builder +3 -1
  263. data/app/views/shared/_rss_item_trackback.rss.builder +3 -1
  264. data/app/views/sidebar/display_plugins.html.erb +1 -1
  265. data/app/views/tag_sidebar/_content.html.erb +1 -1
  266. data/app/views/tags/index.html.erb +1 -1
  267. data/app/views/xml/_googlesitemap_item_article.googlesitemap.builder +2 -0
  268. data/app/views/xml/_googlesitemap_item_category.googlesitemap.builder +2 -0
  269. data/app/views/xml/_googlesitemap_item_page.googlesitemap.builder +2 -0
  270. data/app/views/xml/_googlesitemap_item_tag.googlesitemap.builder +2 -0
  271. data/app/views/xml/sitemap.googlesitemap.builder +4 -2
  272. data/config/i18n-tasks.yml +0 -5
  273. data/config/initializers/devise.rb +10 -4
  274. data/config/initializers/mime_types.rb +3 -1
  275. data/config/locales/da.yml +134 -71
  276. data/config/locales/de.yml +142 -75
  277. data/config/locales/en.yml +128 -66
  278. data/config/locales/es-MX.yml +135 -69
  279. data/config/locales/fr.yml +167 -86
  280. data/config/locales/he.yml +128 -70
  281. data/config/locales/it.yml +136 -72
  282. data/config/locales/ja.yml +110 -64
  283. data/config/locales/lt.yml +153 -74
  284. data/config/locales/nb-NO.yml +123 -65
  285. data/config/locales/nl.yml +140 -75
  286. data/config/locales/pl.yml +160 -69
  287. data/config/locales/pt-BR.yml +137 -70
  288. data/config/locales/ro.yml +148 -70
  289. data/config/locales/ru.yml +161 -69
  290. data/config/locales/zh-CN.yml +106 -59
  291. data/config/locales/zh-TW.yml +109 -61
  292. data/config/routes.rb +68 -63
  293. data/db/migrate/113_initial_schema.rb +192 -190
  294. data/db/migrate/114_fixes_buggy_articles_and_notes.rb +9 -6
  295. data/db/migrate/115_drops_categories_for_tags.rb +3 -1
  296. data/db/migrate/20150207131657_add_missing_indexes.rb +2 -0
  297. data/db/migrate/20150807134129_simplify_redirect_relations.rb +8 -1
  298. data/db/migrate/20150808052637_add_blog_ids.rb +4 -2
  299. data/db/migrate/20150808191127_add_blog_id_to_redirects.rb +2 -0
  300. data/db/migrate/20150810094754_add_blog_id_to_tags.rb +2 -0
  301. data/db/migrate/20160108111120_add_devise_to_users.rb +4 -2
  302. data/db/migrate/20160108184201_move_last_connection_to_last_sign_in_at.rb +2 -0
  303. data/db/migrate/20160110094906_remove_profiles_rights.rb +2 -0
  304. data/db/migrate/20160605103918_replace_profile_id_with_string.rb +2 -0
  305. data/db/migrate/20160605154632_remove_profiles.rb +10 -5
  306. data/db/migrate/20160701061851_demand_blog_id_on_contents.rb +2 -0
  307. data/db/migrate/20160701062604_add_blog_id_to_resources.rb +2 -0
  308. data/db/migrate/20170528093024_move_resources_to_content.rb +2 -0
  309. data/db/migrate/20170528094923_move_tags_to_content.rb +2 -0
  310. data/db/migrate/20170528201606_remove_separate_published_flag.rb +2 -0
  311. data/db/migrate/20170605071626_remove_extra_state_columns_from_feedback.rb +2 -0
  312. data/db/migrate/20170702105201_remove_published_at_from_feedback.rb +2 -0
  313. data/db/migrate/20190208151235_add_text_filter_name_fields.rb +9 -0
  314. data/db/migrate/20190208152646_move_text_filter_to_name.rb +97 -0
  315. data/db/migrate/20190209155717_remove_text_filter_ids.rb +19 -0
  316. data/db/migrate/20190209160610_remove_text_filters.rb +17 -0
  317. data/db/migrate/20200413140440_add_unique_indexes.rb +10 -0
  318. data/db/seeds.rb +9 -19
  319. data/lib/email_notify.rb +3 -1
  320. data/lib/format.rb +4 -2
  321. data/lib/publify_core.rb +36 -35
  322. data/lib/publify_core/engine.rb +8 -6
  323. data/lib/publify_core/lang.rb +5 -1
  324. data/lib/publify_core/testing_support/dns_mock.rb +15 -0
  325. data/lib/publify_core/testing_support/factories.rb +240 -0
  326. data/lib/publify_core/testing_support/feed_assertions.rb +48 -0
  327. data/lib/publify_core/testing_support/fixtures/exploit.svg +4 -0
  328. data/lib/publify_core/testing_support/fixtures/fakepng.png +1 -0
  329. data/lib/publify_core/testing_support/fixtures/otherfile.txt +1 -0
  330. data/lib/publify_core/testing_support/fixtures/testfile.png +0 -0
  331. data/lib/publify_core/testing_support/fixtures/testfile.txt +1 -0
  332. data/lib/publify_core/testing_support/upload_fixtures.rb +15 -0
  333. data/lib/publify_core/version.rb +3 -1
  334. data/lib/publify_guid.rb +3 -1
  335. data/lib/publify_plugins.rb +10 -5
  336. data/lib/publify_textfilter_markdown.rb +38 -25
  337. data/lib/publify_textfilter_none.rb +5 -3
  338. data/lib/publify_textfilter_smartypants.rb +5 -3
  339. data/lib/publify_textfilter_textile.rb +7 -4
  340. data/lib/publify_textfilter_twitterfilter.rb +13 -7
  341. data/lib/publify_time.rb +4 -0
  342. data/lib/sidebar_field.rb +15 -13
  343. data/lib/sidebar_registry.rb +5 -3
  344. data/lib/spam_protection.rb +16 -13
  345. data/lib/tasks/i18n.rake +9 -0
  346. data/lib/tasks/manifest.rake +30 -0
  347. data/lib/tasks/publify_core_tasks.rake +2 -0
  348. data/lib/text_filter_plugin.rb +27 -25
  349. data/lib/theme.rb +5 -3
  350. data/lib/transforms.rb +22 -19
  351. metadata +217 -87
  352. data/app/assets/javascripts/widearea.js +0 -486
  353. data/app/assets/stylesheets/widearea.css +0 -133
  354. data/app/controllers/admin/textfilters_controller.rb +0 -6
  355. data/app/views/admin/dashboard/_inbound.html.erb +0 -31
  356. data/app/views/admin/notes/_header.html.erb +0 -6
  357. data/app/views/articles/_protected_article_content.html.erb +0 -6
@@ -5,7 +5,8 @@ zh-CN:
5
5
  back_to_login: Back to login
6
6
  confirm:
7
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
8
+ dont_lose_the_mail_sent: Don't lose the mail sent at %{email} or you won't be
9
+ able to login anymore
9
10
  login: 'Login: %{login}'
10
11
  proceed_to: Proceed to %{link}
11
12
  success: You have successfully signed up.
@@ -29,6 +30,7 @@ zh-CN:
29
30
  access_granted:
30
31
  error: 错误,不允许进行此操作
31
32
  article_list:
33
+ feedback: 回应
32
34
  no_articles: 这儿并不存在articles。让我们开始创建它。
33
35
  autosave:
34
36
  success: Article was successfully saved
@@ -37,9 +39,10 @@ zh-CN:
37
39
  form:
38
40
  allow_comments: 允许评论
39
41
  allow_comments_status:
40
- one: enabled
41
- zero: disabled
42
+ disabled: disabled
43
+ enabled: enabled
42
44
  allowed_comments_html: Comments are %{allow_comment}
45
+ article_filter: Article filter
43
46
  article_type: Article type
44
47
  cancel: 取消
45
48
  default: Default
@@ -57,20 +60,28 @@ zh-CN:
57
60
  save_as_draft: 保存为草稿
58
61
  status: 状态
59
62
  tags: 标签
60
- tags_explanation_html: Separate tags with commas. Use double quotes (") around multi-word tags, e.g. "opera house".
63
+ tags_explanation_html: Separate tags with commas. Use double quotes (")
64
+ around multi-word tags, e.g. "opera house".
61
65
  title: 标题
62
66
  type_your_post: Type your post
63
67
  visibility: Visibility
64
68
  index:
69
+ actions: Actions
65
70
  all_articles: 所有文章
71
+ author: 作者
72
+ created_at: Created at
66
73
  drafts: 草稿
74
+ feedback: 回应
67
75
  manage_articles: 文章管理
68
76
  new_article: 新文章
69
77
  publication_date: Publication date
70
78
  publication_pending: Publication pending
71
79
  published: 已发表
80
+ published_at: Publication date
72
81
  search: 搜索
73
82
  select_an_author: Select an author
83
+ text_filter: Text filter
84
+ title: 标题
74
85
  withdrawn: Withdrawn
75
86
  update:
76
87
  success: 文章更新成功
@@ -83,14 +94,10 @@ zh-CN:
83
94
  drafts:
84
95
  no_drafts_yet: No drafts yet, why don't you start and write one
85
96
  your_drafts: Your drafts
86
- inbound:
87
- at: at
88
- at_an_unknown_date: at an unknown date
89
- inbound_links: 导入链接
90
- made_a_link_to_you_on: 连接到你,并且说
91
- no_one_made_link_to_you_yet: 目前没有人链接到你
92
- you_have_no_internet_connection: 你没有连接到网络
93
97
  index:
98
+ textile_deprecated_html: The Textile text filter has been deprecated and will
99
+ be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
100
+ rake task to convert it to Markdown, or convert your content manually.
94
101
  welcome_back: 欢迎回來, %{user_name}!
95
102
  overview:
96
103
  change_your_blog_presentation: 修改你的博客外观
@@ -102,10 +109,6 @@ zh-CN:
102
109
  update_your_profile_or_change_your_password: 更新资料或者修改密码
103
110
  write_a_page: 写一个页面
104
111
  write_a_post: 写一篇文章
105
- publify_version:
106
- 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>
107
- 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>?
108
- 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>?
109
112
  welcome:
110
113
  approved_count:
111
114
  one: 1 approved
@@ -186,7 +189,7 @@ zh-CN:
186
189
  success: 删除
187
190
  edit:
188
191
  action_or_other_html: "%{first_action} 或 %{second_action}"
189
- author: Author
192
+ author: 作者
190
193
  cancel: Cancel
191
194
  comments_for_html: Comments for %{article_link}
192
195
  edit_a_comment: Edit a comment
@@ -194,11 +197,12 @@ zh-CN:
194
197
  save: 保存
195
198
  url: Url
196
199
  your_comment: Your comment
197
- ham:
198
- by: by
199
- created_on: 'on'
200
200
  index:
201
+ actions: Actions
201
202
  all: All
203
+ author: 作者
204
+ content: Content
205
+ created_at: Created at
202
206
  feedback: 回应
203
207
  ham: Ham
204
208
  no_feedback: 这儿并不存在Feedback。让我们开始创建它。
@@ -206,12 +210,8 @@ zh-CN:
206
210
  presumed_spam: Presumed spam
207
211
  select_all: Select all
208
212
  spam: Spam
213
+ status: 状态
209
214
  unapproved_comments: Unapproved comments
210
- spam:
211
- by: by
212
- cancel: 取消
213
- created_on: 'on'
214
- this_comment_by_was_flagged_as_spam_html: This comment by %{author} was flagged as spam, %{cancel_link}?
215
215
  state:
216
216
  ham: Ham
217
217
  just_marked_as_ham: Just Marked As Ham
@@ -237,6 +237,8 @@ zh-CN:
237
237
  update_database_now: 現在更新資料庫
238
238
  you_are_up_to_date: 你現在是最新的狀態
239
239
  notes:
240
+ edit:
241
+ notes: Notes
240
242
  form:
241
243
  cancel: 取消
242
244
  compose_new_note: Compose new note
@@ -250,8 +252,14 @@ zh-CN:
250
252
  publish_at: 公开
251
253
  publish_settings: 发布设定
252
254
  tweet_id_like: Tweet id like 123456
253
- header:
255
+ index:
254
256
  notes: Notes
257
+ list:
258
+ actions: Actions
259
+ author: 作者
260
+ created_at: Created at
261
+ text_filter: Text filter
262
+ title: 标题
255
263
  show:
256
264
  action_or_other_html: "%{first_action} 或 %{second_action}"
257
265
  are_you_sure: Are you sure you want to delete this note
@@ -273,9 +281,12 @@ zh-CN:
273
281
  title: 标题
274
282
  type_your_post: Type your post
275
283
  index:
284
+ actions: Actions
276
285
  author: 作者
286
+ created_at: Created at
277
287
  manage_pages: 管理页面
278
288
  new_page: 新页面
289
+ text_filter: Text filter
279
290
  title: 标题
280
291
  new:
281
292
  success: 页面创建成功
@@ -286,7 +297,9 @@ zh-CN:
286
297
  cancel: 取消
287
298
  default: Default
288
299
  description: 说明
289
- 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
300
+ explain: The template name is the filename Publify will look for when calling
301
+ an article of that type. It should be in your theme under views/articles/template
302
+ name.html.erb
290
303
  name: 名字
291
304
  or: or
292
305
  post_types: Post Types
@@ -316,7 +329,7 @@ zh-CN:
316
329
  are_you_sure: 你确认?
317
330
  content_type: 內容類型
318
331
  date: 日期
319
- delete: Delete
332
+ delete: 删除
320
333
  file_size: 檔案大小
321
334
  filename: 檔案名稱
322
335
  media_library: Media Library
@@ -332,42 +345,47 @@ zh-CN:
332
345
  warning: No file selected
333
346
  seo:
334
347
  general:
335
- canonical_url: Canonical Url
336
348
  custom_tracking_code: Custom tracking code
337
349
  do_not_index_tags: Do not index tags
338
350
  dofollow: Dofollow
339
- explain: Here you can add anything you want to appear in your application header, such as analytics service tracking code.
340
- 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/
341
- explain_moderate_feedback: You may want to moderate feedback when turning this on
342
- 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)'
343
- 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
351
+ explain: Here you can add anything you want to appear in your application
352
+ header, such as analytics service tracking code.
353
+ explain_moderate_feedback: You may want to moderate feedback when turning
354
+ this on
355
+ explain_rss_description: 'You can use the following tags: %author% (author
356
+ name), %blog_url% (this blog URL), %blog_name% (this blog title) and %permalink_url%
357
+ (a link to the article you want to protect)'
358
+ explain_tag_index_html: Checking this box will add <code>noindex, follow</code>
359
+ meta tags in every tags page, removing them from search engines and preventing
360
+ duplicate content issues
344
361
  general_settings: 一般設定
345
362
  google: Google
346
363
  google_analytics: Google Analytics
347
- google_webmaster_tools_validation_link: Google Webmaster Tools validation link
348
- human: Human
349
- humans_txt: Human
364
+ google_webmaster_tools_validation_link: Google Webmaster Tools validation
365
+ link
350
366
  indexing: Indexing
351
367
  meta_description: Meta description
352
368
  meta_keywords: Meta keywords
353
- read_more_about_html: Read more about %{link}
354
369
  robots_txt: Robots.txt
355
370
  rss_description_message: RSS description message
356
- this_will_display: This will display at the bottom of each post in the RSS feed
357
- use_canonical_url: Use canonical URL
371
+ this_will_display: This will display at the bottom of each post in the RSS
372
+ feed
358
373
  use_dofollow_in_comments: Use dofollow in comments
359
374
  use_meta_keywords: Use meta keywords
360
375
  use_rss_description: Use RSS description
361
376
  permalinks:
362
377
  custom: Custom
363
378
  date_and_title: Date and title
364
- 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.
379
+ explain: Publify offers you the ability to create a custom URL structure for
380
+ your permalinks and archives. This can improve the aesthetics, usability,
381
+ and forward-compatibility of your links.
365
382
  help_on_permalink_settings: Help on permalink settings
366
383
  month_and_title: Month and title
367
384
  permalink_format: Permalink format
368
385
  sample: Here are some examples to get you started.
369
386
  title_only: Title only
370
- you_can_custom_your_url_structure: 'You can custom your URL structure using the following tags:'
387
+ you_can_custom_your_url_structure: 'You can custom your URL structure using
388
+ the following tags:'
371
389
  your_article_day: your article day of publication.
372
390
  your_article_month: your article month of publication.
373
391
  your_article_slug_html: your article slug. <strong>Using this slug is mandatory</strong>.
@@ -390,30 +408,35 @@ zh-CN:
390
408
  paginated_archives: Paginated archives
391
409
  replaced_by_the_archive_date: Replaced by the archive date
392
410
  replaced_by_the_content_body: Replaced by the content body
393
- replaced_with_the_article_categories: Replaced with the article categories (comma separated)
411
+ replaced_with_the_article_categories: Replaced with the article categories
412
+ (comma separated)
394
413
  replaced_with_the_article_page_title: Replaced with the article/page title
395
414
  replaced_with_the_article_tags: Replaced with the article tags (comma separated)
396
415
  replaced_with_the_category_tag_name: Replaced with the category/tag name
397
416
  replaced_with_the_current_date: Replaced with the current date
398
417
  replaced_with_the_current_month: Replaced with the current month
399
418
  replaced_with_the_current_page_number: Replaced with the current page number
400
- replaced_with_the_current_search_phrase: Replaced with the current search phrase
419
+ replaced_with_the_current_search_phrase: Replaced with the current search
420
+ phrase
401
421
  replaced_with_the_current_time: Replaced with the current time
402
422
  replaced_with_the_current_year: Replaced with the current year
403
423
  replaced_with_the_post_page_excerpt: Replaced with the post/page excerpt
404
- replaced_with_the_title_of_the_article_page: Replaced with the title of the article/page
424
+ replaced_with_the_title_of_the_article_page: Replaced with the title of the
425
+ article/page
405
426
  search_results: Search results
406
427
  short_statuses: Short statuses
407
428
  short_statuses_lists: Short statuses lists
408
429
  the_blog_s_name: The blog's name
409
430
  the_blog_s_tagline_description: The blog's tagline / description
410
- these_tags_can_be_included: These tags can be included in your templates and will be replaced when displaying the page.
431
+ these_tags_can_be_included: These tags can be included in your templates and
432
+ will be replaced when displaying the page.
411
433
  title_template: Title template
412
434
  settings:
413
435
  display:
414
436
  cancel: 取消
415
437
  custom_url: Custom URL shortener domain
416
- custom_url_help: If you have a custom domain for URL shortening, enter it here.
438
+ custom_url_help: If you have a custom domain for URL shortening, enter it
439
+ here.
417
440
  date_format: Date format
418
441
  default_archives_show: articles on the archives page
419
442
  default_article_show: articles on the homepage
@@ -445,13 +468,15 @@ zh-CN:
445
468
  explain_feedback_moderation: 你可以設定網點範圍有限度的反饋。這麼做將不會有任何评论引用出現在你的博客,除非你使之生效
446
469
  explain_reject_comments: Publify會自動回絕评论和引用,包含某些可靠的連結總數
447
470
  explain_spam_protection: publify會根據張貼者IP的位址內容還有黑名單來有效防止垃圾郵件。好的防禦可以抑制垃圾郵寄
448
- explain_spamfiltering_html: Publify隨意的使用 <a href='http://akismet.com'>Akismet</a> 篩選垃圾郵件服務。
471
+ explain_spamfiltering_html: Publify隨意的使用 <a href='http://akismet.com'>Akismet</a>
472
+ 篩選垃圾郵件服務。
449
473
  feedback: 回应
450
474
  feedback_settings: Feedback settings
451
475
  max_links: 最大的連結值
452
476
  none: none
453
477
  or: or
454
- remember_to_set_your_recaptcha: Remember to set your reCaptcha keys inside config/initializers/recaptcha.rb
478
+ remember_to_set_your_recaptcha: Remember to set your reCaptcha keys inside
479
+ config/initializers/recaptcha.rb
455
480
  set_to_0_to_never_disable_comments: 設定0為絕不失效的评论
456
481
  set_to_0_to_never_reject_comments: 設定0回絕不回絕的评论
457
482
  spam: Spam
@@ -464,7 +489,10 @@ zh-CN:
464
489
  blog_url: 博客URL
465
490
  cancel: 取消
466
491
  email_address_used_to_notify: email位址使用publify發出通知
467
- explain_allow_users_to_register_html: This will allow users to register themselves as contributors, an unprivileged account level which grants them no rights beyond owning a profile on the site. If you don't want users to register, you can add them via <em>Manage users</em> under <em>Settings</em>.
492
+ explain_allow_users_to_register_html: This will allow users to register themselves
493
+ as contributors, an unprivileged account level which grants them no rights
494
+ beyond owning a profile on the site. If you don't want users to register,
495
+ you can add them via <em>Manage users</em> under <em>Settings</em>.
468
496
  general_settings: 一般設定
469
497
  items_to_display_in_admin_lists: Items to display in admin lists
470
498
  language: 言語
@@ -506,9 +534,10 @@ zh-CN:
506
534
  design: Design
507
535
  display: Display
508
536
  documentation: Documentation
509
- feedback: Feedback
537
+ feedback: 回应
510
538
  general_settings: General settings
511
539
  global_seo_settings: Global SEO settings
540
+ home: 首页
512
541
  in_page_plugins: In page plugins
513
542
  logged_in_as: Logged in as %{login}
514
543
  logout_html: 登出 &raquo;
@@ -533,7 +562,8 @@ zh-CN:
533
562
  write: Write
534
563
  twitter_alert:
535
564
  fill_the_twitter_credentials: fill in the OAuth credentials
536
- 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}.
565
+ how_to_setup_twitter_html: If you want to push short statuses on Twitter,
566
+ you need to %{twitter_settings_link} Twitter gave you after you %{twitter_registration_link}.
537
567
  registered_your_application: registered your application
538
568
  sidebar:
539
569
  config:
@@ -542,7 +572,10 @@ zh-CN:
542
572
  you_have_no_plugins_installed: You have no plugins installed
543
573
  index:
544
574
  cancel: 取消
545
- 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.
575
+ download_more_plugins_html: You can download and install sidebar plugins from
576
+ our official <a href='https://github.com/fdv/publify/wiki/Sidebar-plugins'>plugin
577
+ repository</a>. All you have to do is upload the theme directory in your
578
+ vendor/plugins directory.
546
579
  explain_how_its_works: 在這個博客顯示拖曳改變的sidebar選項。從sidebar選項移除會立即存檔,但是不會執行直到你輸入<公開>鍵
547
580
  or: or
548
581
  publish_changes: 公開變更
@@ -560,6 +593,7 @@ zh-CN:
560
593
  no_tags: 这儿并不存在Tags。让我们开始创建它。
561
594
  or: or
562
595
  save: 保存
596
+ view: View
563
597
  themes:
564
598
  index:
565
599
  active_theme: "%{name} - 執行中主題"
@@ -627,7 +661,7 @@ zh-CN:
627
661
  no_articles_found: 没有找到任何文章
628
662
  archives_article:
629
663
  posted_in: 发表在
630
- article:
664
+ article_author:
631
665
  posted_by: 貼上
632
666
  article_excerpt:
633
667
  continue_reading: Continue reading
@@ -672,7 +706,8 @@ zh-CN:
672
706
  contact_information: Contact information
673
707
  jabber: 'Jabber:'
674
708
  msn: 'MSN:'
675
- this_author_has_not_published_any_article_yet: This author has not published any article yet
709
+ this_author_has_not_published_any_article_yet: This author has not published
710
+ any article yet
676
711
  twitter: 'Twitter:'
677
712
  web_site: 'Web site:'
678
713
  yahoo: 'Yahoo:'
@@ -713,17 +748,26 @@ zh-CN:
713
748
  characters_minimum: Minimum %{min} characters
714
749
  errors:
715
750
  article_type_already_exist: This article type already exists
716
- cant_end_with_rss_or_atom: Can't end in .rss or .atom. These are reserved for feed URLs
751
+ cant_end_with_rss_or_atom: Can't end in .rss or .atom. These are reserved for
752
+ feed URLs
717
753
  no_notes_found: No notes found...
718
754
  no_posts_found: No posts found...
719
755
  page_not_found: Page not found
720
756
  permalink_need_a_title: 'You need a permalink format with an identifier : %%title%%'
721
757
  problem_sending_to_twitter: Oooops something went wrong!
722
- 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
723
- the_page_you_are_looking_for: The page you are looking for has moved or does not exist.
758
+ render_sidebar: It seems something went wrong. Maybe some of your sidebars are
759
+ actually missing and you should either reinstall them or remove them manually
760
+ the_page_you_are_looking_for: The page you are looking for has moved or does not
761
+ exist.
724
762
  generic:
725
763
  change: Change
764
+ conversation: Conversation
765
+ delete: 删除
766
+ edit: 修改
767
+ mark_as_ham: Mark as ham
768
+ mark_as_spam: Mark as spam
726
769
  save: 保存
770
+ short_url: Short url
727
771
  helper:
728
772
  at: at
729
773
  langs:
@@ -761,7 +805,8 @@ zh-CN:
761
805
  publisher: Blog publisher
762
806
  setup:
763
807
  article:
764
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
808
+ body: Welcome to Publify. This is your first article. Edit or delete it, then
809
+ start blogging!
765
810
  title: Hello World!
766
811
  index:
767
812
  blog_name: Blog name
@@ -770,7 +815,9 @@ zh-CN:
770
815
  your_mail: Your email
771
816
  page:
772
817
  about: 关于
773
- 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.
818
+ body: This is an example of a Publify page. You can edit this to write information
819
+ about yourself or your site so readers know who you are. You can create as
820
+ many pages as this one as you like and manage all of your content inside Publify.
774
821
  tags:
775
822
  index:
776
823
  there_are_no_tags: There are no tags
@@ -5,7 +5,8 @@ zh-TW:
5
5
  back_to_login: Back to login
6
6
  confirm:
7
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
8
+ dont_lose_the_mail_sent: Don't lose the mail sent at %{email} or you won't be
9
+ able to login anymore
9
10
  login: 'Login: %{login}'
10
11
  proceed_to: Proceed to %{link}
11
12
  success: You have successfully signed up.
@@ -29,6 +30,7 @@ zh-TW:
29
30
  access_granted:
30
31
  error: Error, you are not allowed to perform this action
31
32
  article_list:
33
+ feedback: 回應
32
34
  no_articles: There are no articles yet. Why don't you create one?
33
35
  autosave:
34
36
  success: Article was successfully saved
@@ -37,9 +39,10 @@ zh-TW:
37
39
  form:
38
40
  allow_comments: 允許評論
39
41
  allow_comments_status:
40
- one: enabled
41
- zero: disabled
42
+ disabled: disabled
43
+ enabled: enabled
42
44
  allowed_comments_html: Comments are %{allow_comment}
45
+ article_filter: 篩選文章
43
46
  article_type: Article type
44
47
  cancel: 取消
45
48
  default: Default
@@ -57,20 +60,28 @@ zh-TW:
57
60
  save_as_draft: Save as draft
58
61
  status: 身分
59
62
  tags: 標示標籤
60
- tags_explanation_html: Separate tags with commas. Use double quotes (&quot;) around multi-word tags, e.g. &quot;opera house&quot;.
63
+ tags_explanation_html: Separate tags with commas. Use double quotes (&quot;)
64
+ around multi-word tags, e.g. &quot;opera house&quot;.
61
65
  title: 標題
62
66
  type_your_post: Type your post
63
67
  visibility: Visibility
64
68
  index:
69
+ actions: Actions
65
70
  all_articles: All articles
71
+ author: 作者
72
+ created_at: Created at
66
73
  drafts: Drafts
74
+ feedback: 回應
67
75
  manage_articles: Manage articles
68
76
  new_article: New article
69
77
  publication_date: Publication date
70
78
  publication_pending: Publication pending
71
79
  published: 已公開的
80
+ published_at: Publication date
72
81
  search: Search
73
82
  select_an_author: Select an author
83
+ text_filter: Text filter
84
+ title: 標題
74
85
  withdrawn: Withdrawn
75
86
  update:
76
87
  success: Article was successfully updated
@@ -83,14 +94,10 @@ zh-TW:
83
94
  drafts:
84
95
  no_drafts_yet: No drafts yet, why don't you write one
85
96
  your_drafts: Your drafts
86
- inbound:
87
- at: at
88
- at_an_unknown_date: at an unknown date
89
- inbound_links: 導入連結
90
- made_a_link_to_you_on: 連結到你,並且說
91
- no_one_made_link_to_you_yet: 目前沒有人連結到你
92
- you_have_no_internet_connection: 你沒有連結到網路
93
97
  index:
98
+ textile_deprecated_html: The Textile text filter has been deprecated and will
99
+ be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
100
+ rake task to convert it to Markdown, or convert your content manually.
94
101
  welcome_back: 歡迎回來, %{user_name}!
95
102
  overview:
96
103
  change_your_blog_presentation: 修改你的部落格外觀
@@ -102,16 +109,13 @@ zh-TW:
102
109
  update_your_profile_or_change_your_password: 更新資料或者修改密碼
103
110
  write_a_page: 寫一個頁面
104
111
  write_a_post: 寫一篇文章
105
- publify_version:
106
- 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>
107
- 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>?
108
- 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>?
109
112
  welcome:
110
113
  approved_count:
111
114
  one: 1 approved
112
115
  other: "%{count} approved"
113
116
  zero: no approved
114
- articles_and_comments_count_since: "%{articles_count} articles and %{comments_count} comments were posted since your last connexion"
117
+ articles_and_comments_count_since: "%{articles_count} articles and %{comments_count}
118
+ comments were posted since your last connexion"
115
119
  articles_count:
116
120
  one: 1 article
117
121
  other: "%{count} articles"
@@ -186,7 +190,7 @@ zh-TW:
186
190
  success: Deleted
187
191
  edit:
188
192
  action_or_other_html: "%{first_action} 或 %{second_action}"
189
- author: Author
193
+ author: 作者
190
194
  cancel: Cancel
191
195
  comments_for_html: Comments for %{article_link}
192
196
  edit_a_comment: Edit a comment
@@ -194,11 +198,12 @@ zh-TW:
194
198
  save: 存檔
195
199
  url: Url
196
200
  your_comment: Your comment
197
- ham:
198
- by: by
199
- created_on: 'on'
200
201
  index:
202
+ actions: Actions
201
203
  all: All
204
+ author: 作者
205
+ content: Content
206
+ created_at: Created at
202
207
  feedback: 回應
203
208
  ham: Ham
204
209
  no_feedback: There is no feedback yet. Why don't you create some?
@@ -206,12 +211,8 @@ zh-TW:
206
211
  presumed_spam: Presumed spam
207
212
  select_all: Select all
208
213
  spam: Spam
214
+ status: 身分
209
215
  unapproved_comments: Unapproved comments
210
- spam:
211
- by: by
212
- cancel: 取消
213
- created_on: 'on'
214
- this_comment_by_was_flagged_as_spam_html: This comment by %{author} was flagged as spam, %{cancel_link}?
215
216
  state:
216
217
  ham: Ham
217
218
  just_marked_as_ham: Just Marked As Ham
@@ -237,6 +238,8 @@ zh-TW:
237
238
  update_database_now: 現在更新資料庫
238
239
  you_are_up_to_date: 你現在是最新的狀態
239
240
  notes:
241
+ edit:
242
+ notes: Notes
240
243
  form:
241
244
  cancel: 取消
242
245
  compose_new_note: Compose new note
@@ -250,8 +253,14 @@ zh-TW:
250
253
  publish_at: 公開
251
254
  publish_settings: Publish settings
252
255
  tweet_id_like: Tweet id like 123456
253
- header:
256
+ index:
254
257
  notes: Notes
258
+ list:
259
+ actions: Actions
260
+ author: 作者
261
+ created_at: Created at
262
+ text_filter: Text filter
263
+ title: 標題
255
264
  show:
256
265
  action_or_other_html: "%{first_action} 或 %{second_action}"
257
266
  are_you_sure: Are you sure you want to delete this note
@@ -273,9 +282,12 @@ zh-TW:
273
282
  title: 標題
274
283
  type_your_post: Type your post
275
284
  index:
285
+ actions: Actions
276
286
  author: 作者
287
+ created_at: Created at
277
288
  manage_pages: 管理頁面
278
289
  new_page: New Page
290
+ text_filter: Text filter
279
291
  title: 標題
280
292
  new:
281
293
  success: New page created
@@ -286,7 +298,9 @@ zh-TW:
286
298
  cancel: 取消
287
299
  default: Default
288
300
  description: 説明
289
- 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
301
+ explain: The template name is the filename Publify will look for when calling
302
+ an article of that type. It should be in your theme under views/articles/template
303
+ name.html.erb
290
304
  name: 名字
291
305
  or: or
292
306
  post_types: Post Types
@@ -316,7 +330,7 @@ zh-TW:
316
330
  are_you_sure: Are you sure?
317
331
  content_type: 內容類型
318
332
  date: Date
319
- delete: Delete
333
+ delete: 刪除
320
334
  file_size: 檔案大小
321
335
  filename: 檔案名稱
322
336
  media_library: Media Library
@@ -332,42 +346,47 @@ zh-TW:
332
346
  warning: 不能被上傳
333
347
  seo:
334
348
  general:
335
- canonical_url: Canonical Url
336
349
  custom_tracking_code: Custom tracking code
337
350
  do_not_index_tags: Do not index tags
338
351
  dofollow: Dofollow
339
- explain: Here you can add anything you want to appear in your application header, such as analytics service tracking code.
340
- 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/
341
- explain_moderate_feedback: You may want to moderate feedback when turning this on
342
- 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)'
343
- 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
352
+ explain: Here you can add anything you want to appear in your application
353
+ header, such as analytics service tracking code.
354
+ explain_moderate_feedback: You may want to moderate feedback when turning
355
+ this on
356
+ explain_rss_description: 'You can use the following tags: %author% (author
357
+ name), %blog_url% (this blog URL), %blog_name% (this blog title) and %permalink_url%
358
+ (a link to the article you want to protect)'
359
+ explain_tag_index_html: Checking this box will add <code>noindex, follow</code>
360
+ meta tags in every tags page, removing them from search engines and preventing
361
+ duplicate content issues
344
362
  general_settings: 一般設定
345
363
  google: Google
346
364
  google_analytics: Google Analytics
347
- google_webmaster_tools_validation_link: Google Webmaster Tools validation link
348
- human: Human
349
- humans_txt: Human
365
+ google_webmaster_tools_validation_link: Google Webmaster Tools validation
366
+ link
350
367
  indexing: Indexing
351
368
  meta_description: Meta description
352
369
  meta_keywords: Meta keywords
353
- read_more_about_html: Read more about %{link}
354
370
  robots_txt: Robots.txt
355
371
  rss_description_message: RSS description message
356
- this_will_display: This will display at the bottom of each post in the RSS feed
357
- use_canonical_url: Use canonical URL
372
+ this_will_display: This will display at the bottom of each post in the RSS
373
+ feed
358
374
  use_dofollow_in_comments: Use dofollow in comments
359
375
  use_meta_keywords: Use meta keywords
360
376
  use_rss_description: Use RSS description
361
377
  permalinks:
362
378
  custom: Custom
363
379
  date_and_title: Date and title
364
- 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.
380
+ explain: Publify offers you the ability to create a custom URL structure for
381
+ your permalinks and archives. This can improve the aesthetics, usability,
382
+ and forward-compatibility of your links.
365
383
  help_on_permalink_settings: Help on permalink settings
366
384
  month_and_title: Month and title
367
385
  permalink_format: Permalink format
368
386
  sample: Here are some examples to get you started.
369
387
  title_only: Title only
370
- you_can_custom_your_url_structure: 'You can customize your URL structure using the following tags:'
388
+ you_can_custom_your_url_structure: 'You can customize your URL structure using
389
+ the following tags:'
371
390
  your_article_day: your article day of publication.
372
391
  your_article_month: your article month of publication.
373
392
  your_article_slug_html: your article slug. <strong>Using this slug is mandatory</strong>.
@@ -390,30 +409,35 @@ zh-TW:
390
409
  paginated_archives: Paginated archives
391
410
  replaced_by_the_archive_date: Replaced by the archive date
392
411
  replaced_by_the_content_body: Replaced by the content body
393
- replaced_with_the_article_categories: Replaced with the article categories (comma separated)
412
+ replaced_with_the_article_categories: Replaced with the article categories
413
+ (comma separated)
394
414
  replaced_with_the_article_page_title: Replaced with the article/page title
395
415
  replaced_with_the_article_tags: Replaced with the article tags (comma separated)
396
416
  replaced_with_the_category_tag_name: Replaced with the category/tag name
397
417
  replaced_with_the_current_date: Replaced with the current date
398
418
  replaced_with_the_current_month: Replaced with the current month
399
419
  replaced_with_the_current_page_number: Replaced with the current page number
400
- replaced_with_the_current_search_phrase: Replaced with the current search phrase
420
+ replaced_with_the_current_search_phrase: Replaced with the current search
421
+ phrase
401
422
  replaced_with_the_current_time: Replaced with the current time
402
423
  replaced_with_the_current_year: Replaced with the current year
403
424
  replaced_with_the_post_page_excerpt: Replaced with the post/page excerpt
404
- replaced_with_the_title_of_the_article_page: Replaced with the title of the article/page
425
+ replaced_with_the_title_of_the_article_page: Replaced with the title of the
426
+ article/page
405
427
  search_results: Search results
406
428
  short_statuses: Short statuses
407
429
  short_statuses_lists: Short statuses lists
408
430
  the_blog_s_name: The blog's name
409
431
  the_blog_s_tagline_description: The blog's tagline / description
410
- these_tags_can_be_included: These tags can be included in your templates and will be replaced when displaying the page.
432
+ these_tags_can_be_included: These tags can be included in your templates and
433
+ will be replaced when displaying the page.
411
434
  title_template: Title template
412
435
  settings:
413
436
  display:
414
437
  cancel: 取消
415
438
  custom_url: Custom URL shortener domain
416
- custom_url_help: If you have a custom domain for URL shortening, enter it here.
439
+ custom_url_help: If you have a custom domain for URL shortening, enter it
440
+ here.
417
441
  date_format: Date format
418
442
  default_archives_show: articles on the archives page
419
443
  default_article_show: articles on the homepage
@@ -445,13 +469,15 @@ zh-TW:
445
469
  explain_feedback_moderation: 你可以設定網點範圍有限度的反饋。這麼做將不會有任何評論引用出現在你的部落格,除非你使之生效
446
470
  explain_reject_comments: Publify會自動回絕評論和引用,包含某些可靠的連結總數
447
471
  explain_spam_protection: publify會根據張貼者IP的位址內容還有黑名單來有效防止垃圾郵件。好的防禦可以抑制垃圾郵寄
448
- explain_spamfiltering_html: Publify隨意的使用 <a href='http://akismet.com'>Akismet</a> 篩選垃圾郵件服務。
472
+ explain_spamfiltering_html: Publify隨意的使用 <a href='http://akismet.com'>Akismet</a>
473
+ 篩選垃圾郵件服務。
449
474
  feedback: 回應
450
475
  feedback_settings: Feedback settings
451
476
  max_links: 最大的連結值
452
477
  none: none
453
478
  or: or
454
- remember_to_set_your_recaptcha: Remember to set your reCaptcha keys inside config/initializers/recaptcha.rb
479
+ remember_to_set_your_recaptcha: Remember to set your reCaptcha keys inside
480
+ config/initializers/recaptcha.rb
455
481
  set_to_0_to_never_disable_comments: 設定0為絕不失效的評論
456
482
  set_to_0_to_never_reject_comments: 設定0回絕不回絕的評論
457
483
  spam: Spam
@@ -464,7 +490,10 @@ zh-TW:
464
490
  blog_url: 部落格URL
465
491
  cancel: 取消
466
492
  email_address_used_to_notify: email位址使用publify發出通知
467
- explain_allow_users_to_register_html: This will allow users to register themselves as contributors, an unprivileged account level which grants them no rights beyond owning a profile on the site. If you don't want users to register, you can add them via <em>Manage users</em> under <em>Settings</em>.
493
+ explain_allow_users_to_register_html: This will allow users to register themselves
494
+ as contributors, an unprivileged account level which grants them no rights
495
+ beyond owning a profile on the site. If you don't want users to register,
496
+ you can add them via <em>Manage users</em> under <em>Settings</em>.
468
497
  general_settings: 一般設定
469
498
  items_to_display_in_admin_lists: Items to display in admin lists
470
499
  language: 言語
@@ -506,9 +535,10 @@ zh-TW:
506
535
  design: Design
507
536
  display: Display
508
537
  documentation: Documentation
509
- feedback: Feedback
538
+ feedback: 回應
510
539
  general_settings: General settings
511
540
  global_seo_settings: Global SEO settings
541
+ home: Home
512
542
  in_page_plugins: In page plugins
513
543
  logged_in_as: Logged in as %{login}
514
544
  logout_html: 登出 &raquo;
@@ -533,7 +563,8 @@ zh-TW:
533
563
  write: Write
534
564
  twitter_alert:
535
565
  fill_the_twitter_credentials: fill in the OAuth credentials
536
- 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}.
566
+ how_to_setup_twitter_html: If you want to push short statuses on Twitter,
567
+ you need to %{twitter_settings_link} Twitter gave you after you %{twitter_registration_link}.
537
568
  registered_your_application: registered your application
538
569
  sidebar:
539
570
  config:
@@ -542,7 +573,10 @@ zh-TW:
542
573
  you_have_no_plugins_installed: You have no plugins installed
543
574
  index:
544
575
  cancel: 取消
545
- 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.
576
+ download_more_plugins_html: You can download and install sidebar plugins from
577
+ our official <a href='https://github.com/fdv/publify/wiki/Sidebar-plugins'>plugin
578
+ repository</a>. All you have to do is upload the theme directory in your
579
+ vendor/plugins directory.
546
580
  explain_how_its_works: 在這個部落格顯示拖曳改變的sidebar選項。從sidebar選項移除會立即存檔,但是不會執行直到你輸入<公開>鍵
547
581
  or: or
548
582
  publish_changes: 公開變更
@@ -560,6 +594,7 @@ zh-TW:
560
594
  no_tags: There are no tags yet. Why don't you start and create one?
561
595
  or: or
562
596
  save: 存檔
597
+ view: View
563
598
  themes:
564
599
  index:
565
600
  active_theme: "%{name} - 執行中主題"
@@ -627,7 +662,7 @@ zh-TW:
627
662
  no_articles_found: 沒有找到任何文章
628
663
  archives_article:
629
664
  posted_in: posted in
630
- article:
665
+ article_author:
631
666
  posted_by: 貼上
632
667
  article_excerpt:
633
668
  continue_reading: Continue reading
@@ -647,7 +682,7 @@ zh-TW:
647
682
  comment_markup_help: 評論顯示協助
648
683
  leave_url_email: leave url/email
649
684
  preview_comment: 預覽評論
650
- your_blog: your blog
685
+ your_blog: 你的部落格
651
686
  your_email: 你的email
652
687
  your_message: 你的訊息
653
688
  your_name: 你的名稱
@@ -672,7 +707,8 @@ zh-TW:
672
707
  contact_information: Contact information
673
708
  jabber: 'Jabber:'
674
709
  msn: 'MSN:'
675
- this_author_has_not_published_any_article_yet: This author has not published any article yet
710
+ this_author_has_not_published_any_article_yet: This author has not published
711
+ any article yet
676
712
  twitter: 'Twitter:'
677
713
  web_site: 'Web site:'
678
714
  yahoo: 'Yahoo:'
@@ -713,17 +749,26 @@ zh-TW:
713
749
  characters_minimum: Minimum %{min} characters
714
750
  errors:
715
751
  article_type_already_exist: This article type already exists
716
- cant_end_with_rss_or_atom: Can't end in .rss or .atom. These are reserved for feed URLs
752
+ cant_end_with_rss_or_atom: Can't end in .rss or .atom. These are reserved for
753
+ feed URLs
717
754
  no_notes_found: No notes found...
718
755
  no_posts_found: No posts found...
719
756
  page_not_found: Page not found
720
757
  permalink_need_a_title: 'You need a permalink format with an identifier : %%title%%'
721
758
  problem_sending_to_twitter: Oooops something went wrong!
722
- 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
723
- the_page_you_are_looking_for: The page you are looking for has moved or does not exist.
759
+ render_sidebar: It seems something went wrong. Maybe some of your sidebars are
760
+ actually missing and you should either reinstall them or remove them manually
761
+ the_page_you_are_looking_for: The page you are looking for has moved or does not
762
+ exist.
724
763
  generic:
725
764
  change: Change
765
+ conversation: Conversation
766
+ delete: 刪除
767
+ edit: 修改
768
+ mark_as_ham: Mark as ham
769
+ mark_as_spam: Mark as spam
726
770
  save: 存檔
771
+ short_url: Short url
727
772
  helper:
728
773
  at: at
729
774
  langs:
@@ -761,7 +806,8 @@ zh-TW:
761
806
  publisher: Blog publisher
762
807
  setup:
763
808
  article:
764
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
809
+ body: Welcome to Publify. This is your first article. Edit or delete it, then
810
+ start blogging!
765
811
  title: Hello World!
766
812
  index:
767
813
  blog_name: Blog name
@@ -770,7 +816,9 @@ zh-TW:
770
816
  your_mail: Your email
771
817
  page:
772
818
  about: About
773
- 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.
819
+ body: This is an example of a Publify page. You can edit this to write information
820
+ about yourself or your site so readers know who you are. You can create as
821
+ many pages as this one as you like and manage all of your content inside Publify.
774
822
  tags:
775
823
  index:
776
824
  there_are_no_tags: There are no tags