publify_core 9.0.0.pre6 → 9.0.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 (176) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +44 -0
  3. data/README.md +9 -0
  4. data/app/controllers/admin/base_controller.rb +0 -6
  5. data/app/controllers/admin/content_controller.rb +34 -15
  6. data/app/controllers/admin/dashboard_controller.rb +4 -9
  7. data/app/controllers/admin/feedback_controller.rb +1 -0
  8. data/app/controllers/admin/notes_controller.rb +1 -1
  9. data/app/controllers/admin/pages_controller.rb +3 -7
  10. data/app/controllers/admin/sidebar_controller.rb +1 -0
  11. data/app/controllers/admin/tags_controller.rb +1 -0
  12. data/app/controllers/articles_controller.rb +50 -55
  13. data/app/controllers/comments_controller.rb +2 -3
  14. data/app/controllers/content_controller.rb +8 -17
  15. data/app/controllers/feedback_controller.rb +5 -39
  16. data/app/controllers/notes_controller.rb +1 -3
  17. data/app/controllers/setup_controller.rb +14 -18
  18. data/app/controllers/tags_controller.rb +13 -15
  19. data/app/controllers/theme_controller.rb +7 -5
  20. data/app/controllers/xml_controller.rb +11 -59
  21. data/app/helpers/authors_helper.rb +2 -2
  22. data/app/helpers/base_helper.rb +11 -4
  23. data/app/helpers/xml_helper.rb +2 -2
  24. data/app/jobs/application_job.rb +2 -0
  25. data/app/models/archives_sidebar.rb +8 -11
  26. data/app/models/article.rb +53 -72
  27. data/app/models/article/factory.rb +1 -1
  28. data/app/models/blog.rb +17 -40
  29. data/app/models/comment.rb +4 -3
  30. data/app/models/content.rb +18 -21
  31. data/app/models/content_base.rb +0 -5
  32. data/app/models/feedback.rb +76 -54
  33. data/app/models/meta_sidebar.rb +1 -0
  34. data/app/models/note.rb +7 -0
  35. data/app/models/page.rb +10 -5
  36. data/app/models/ping.rb +0 -113
  37. data/app/models/post_type.rb +1 -0
  38. data/app/models/redirect.rb +1 -1
  39. data/app/models/resource.rb +1 -19
  40. data/app/models/sidebar.rb +1 -1
  41. data/app/models/static_sidebar.rb +1 -0
  42. data/app/models/tag.rb +13 -9
  43. data/app/models/tag_sidebar.rb +4 -4
  44. data/app/models/trackback.rb +1 -8
  45. data/app/models/trigger.rb +1 -15
  46. data/app/models/user.rb +2 -9
  47. data/app/uploaders/resource_uploader.rb +33 -2
  48. data/app/views/accounts/confirm.html.erb +0 -1
  49. data/app/views/admin/content/_article_list.html.erb +1 -1
  50. data/app/views/admin/content/_form.html.erb +3 -7
  51. data/app/views/admin/pages/_form.html.erb +2 -2
  52. data/app/views/admin/seo/_general.html.erb +33 -28
  53. data/app/views/admin/seo/_permalinks.html.erb +2 -2
  54. data/app/views/admin/seo/_titles.html.erb +36 -36
  55. data/app/views/admin/settings/display.html.erb +20 -27
  56. data/app/views/admin/settings/feedback.html.erb +44 -51
  57. data/app/views/admin/settings/index.html.erb +14 -14
  58. data/app/views/admin/settings/write.html.erb +12 -30
  59. data/app/views/admin/tags/_index_and_form.html.erb +1 -1
  60. data/app/views/articles/_archives_article.html.erb +9 -0
  61. data/app/views/articles/_article.html.erb +8 -6
  62. data/app/views/articles/_article_collection.html.erb +1 -1
  63. data/app/views/articles/_article_excerpt.html.erb +10 -8
  64. data/app/views/articles/_article_links.html.erb +4 -2
  65. data/app/views/articles/_comment_list.html.erb +5 -5
  66. data/app/views/articles/_full_article_content.html.erb +4 -2
  67. data/app/views/articles/archives.html.erb +10 -20
  68. data/app/views/articles/feedback_atom_feed.atom.builder +5 -5
  69. data/app/views/articles/feedback_rss_feed.rss.builder +12 -13
  70. data/app/views/articles/index_atom_feed.atom.builder +3 -4
  71. data/app/views/articles/index_rss_feed.rss.builder +9 -10
  72. data/app/views/articles/read.html.erb +5 -31
  73. data/app/views/articles/search.html.erb +1 -1
  74. data/app/views/articles/trackback.xml.builder +1 -1
  75. data/app/views/authors/show.html.erb +11 -21
  76. data/app/views/authors/show_atom_feed.atom.builder +3 -4
  77. data/app/views/authors/show_rss_feed.rss.builder +9 -10
  78. data/app/views/comments/_comment.html.erb +17 -16
  79. data/app/views/feedback/index.atom.builder +7 -0
  80. data/app/views/feedback/index.rss.builder +19 -0
  81. data/app/views/notes/_note.html.erb +16 -15
  82. data/app/views/notes/index.html.erb +1 -1
  83. data/app/views/notification_mailer/_mail_footer.html.erb +0 -2
  84. data/app/views/notification_mailer/_mail_header.html.erb +2 -0
  85. data/app/views/notification_mailer/article.html.erb +4 -3
  86. data/app/views/notification_mailer/comment.html.erb +7 -6
  87. data/app/views/notification_mailer/notif_user.html.erb +3 -8
  88. data/app/views/setup/index.html.erb +4 -0
  89. data/app/views/shared/_atom_header.atom.builder +3 -3
  90. data/app/views/shared/_atom_item_article.atom.builder +26 -19
  91. data/app/views/shared/_atom_item_comment.atom.builder +3 -5
  92. data/app/views/shared/_atom_item_trackback.atom.builder +3 -4
  93. data/app/views/shared/_page_header.html.erb +1 -1
  94. data/app/views/shared/_rss_item_article.rss.builder +10 -15
  95. data/app/views/shared/_rss_item_comment.rss.builder +1 -2
  96. data/app/views/shared/_rss_item_trackback.rss.builder +1 -1
  97. data/app/views/tags/index.html.erb +2 -2
  98. data/app/views/xml/sitemap.googlesitemap.builder +7 -0
  99. data/config/initializers/mime_types.rb +0 -1
  100. data/config/locales/da.yml +8 -37
  101. data/config/locales/de.yml +7 -36
  102. data/config/locales/en.yml +7 -36
  103. data/config/locales/es-MX.yml +8 -37
  104. data/config/locales/fr.yml +7 -36
  105. data/config/locales/he.yml +4 -33
  106. data/config/locales/it.yml +7 -36
  107. data/config/locales/ja.yml +5 -34
  108. data/config/locales/lt.yml +7 -36
  109. data/config/locales/nb-NO.yml +7 -36
  110. data/config/locales/nl.yml +9 -38
  111. data/config/locales/pl.yml +8 -37
  112. data/config/locales/pt-BR.yml +8 -37
  113. data/config/locales/ro.yml +9 -38
  114. data/config/locales/ru.yml +7 -36
  115. data/config/locales/zh-CN.yml +6 -35
  116. data/config/locales/zh-TW.yml +7 -36
  117. data/config/routes.rb +6 -28
  118. data/db/migrate/113_initial_schema.rb +191 -191
  119. data/db/migrate/114_fixes_buggy_articles_and_notes.rb +6 -7
  120. data/db/migrate/115_drops_categories_for_tags.rb +3 -3
  121. data/db/migrate/20150207131657_add_missing_indexes.rb +1 -1
  122. data/db/migrate/20150807134129_simplify_redirect_relations.rb +1 -1
  123. data/db/migrate/20150808052637_add_blog_ids.rb +3 -5
  124. data/db/migrate/20150808191127_add_blog_id_to_redirects.rb +1 -1
  125. data/db/migrate/20150810094754_add_blog_id_to_tags.rb +1 -1
  126. data/db/migrate/20160108111120_add_devise_to_users.rb +3 -3
  127. data/db/migrate/20160108184201_move_last_connection_to_last_sign_in_at.rb +1 -1
  128. data/db/migrate/20160110094906_remove_profiles_rights.rb +1 -1
  129. data/db/migrate/20160605103918_replace_profile_id_with_string.rb +1 -3
  130. data/db/migrate/20160605154632_remove_profiles.rb +2 -2
  131. data/db/migrate/20160701061851_demand_blog_id_on_contents.rb +1 -1
  132. data/db/migrate/20160701062604_add_blog_id_to_resources.rb +1 -1
  133. data/db/migrate/20170528093024_move_resources_to_content.rb +5 -0
  134. data/db/migrate/20170528094923_move_tags_to_content.rb +6 -0
  135. data/db/migrate/20170528201606_remove_separate_published_flag.rb +5 -0
  136. data/db/migrate/20170605071626_remove_extra_state_columns_from_feedback.rb +6 -0
  137. data/db/migrate/20170702105201_remove_published_at_from_feedback.rb +5 -0
  138. data/db/seeds.rb +1 -1
  139. data/lib/publify_core.rb +0 -1
  140. data/lib/publify_core/version.rb +1 -1
  141. data/lib/publify_guid.rb +1 -1
  142. data/lib/publify_time.rb +2 -2
  143. data/lib/sidebar_field.rb +19 -12
  144. data/lib/transforms.rb +1 -0
  145. metadata +102 -66
  146. data/.gitignore +0 -13
  147. data/.rspec +0 -2
  148. data/.rubocop.yml +0 -84
  149. data/.rubocop_todo.yml +0 -148
  150. data/.travis.yml +0 -27
  151. data/Gemfile +0 -17
  152. data/README.rdoc +0 -3
  153. data/Rakefile +0 -35
  154. data/app/assets/stylesheets/publify_core/.keep +0 -0
  155. data/app/controllers/.keep +0 -0
  156. data/app/controllers/admin/migrations_controller.rb +0 -19
  157. data/app/controllers/concerns/.keep +0 -0
  158. data/app/controllers/trackbacks_controller.rb +0 -36
  159. data/app/helpers/.keep +0 -0
  160. data/app/mailers/.keep +0 -0
  161. data/app/models/.keep +0 -0
  162. data/app/models/article/states.rb +0 -179
  163. data/app/models/concerns/.keep +0 -0
  164. data/app/models/feedback/states.rb +0 -256
  165. data/app/services/migrator.rb +0 -25
  166. data/app/views/.keep +0 -0
  167. data/app/views/comments/index.html.erb +0 -1
  168. data/app/views/comments/index_atom_feed.atom.builder +0 -8
  169. data/app/views/comments/index_rss_feed.rss.builder +0 -20
  170. data/app/views/trackbacks/index_atom_feed.atom.builder +0 -7
  171. data/app/views/trackbacks/index_rss_feed.rss.builder +0 -20
  172. data/app/views/trackbacks/trackback.xml.builder +0 -4
  173. data/app/views/xml/feed.googlesitemap.builder +0 -7
  174. data/app/views/xml/rsd.rsd.builder +0 -8
  175. data/lib/stateful.rb +0 -106
  176. data/publify_core.gemspec +0 -54
@@ -7,7 +7,6 @@ en:
7
7
  admin: admin
8
8
  dont_lose_the_mail_sent: Don't lose the mail sent at %{email} or you won't be able to login anymore
9
9
  login: 'Login: %{login}'
10
- password: 'Password: %{password}'
11
10
  proceed_to: Proceed to %{link}
12
11
  success: You have successfully signed up.
13
12
  create_account: Create an account
@@ -40,11 +39,7 @@ en:
40
39
  allow_comments_status:
41
40
  one: enabled
42
41
  zero: disabled
43
- allow_pings_status:
44
- one: enabled
45
- zero: disabled
46
- allow_trackbacks: Allow trackbacks
47
- allowed_comments_and_trackbacks_html: Comments are %{allow_comment} and trackbacks are %{allow_trackback}
42
+ allowed_comments_html: Comments are %{allow_comment}
48
43
  article_type: Article type
49
44
  cancel: Cancel
50
45
  default: Default
@@ -430,8 +425,6 @@ en:
430
425
  feed_articles: Article excerpts
431
426
  feed_excerpts_only: Show only article excerpts in feed
432
427
  feed_settings: RSS Feed Settings
433
- feedburner_help: Enter your FeedBurner ID if you wish to use your Google FeedBurner account instead of using the Publify feed URL.
434
- feedburner_id: FeedBurner ID
435
428
  or: or
436
429
  publishing_options: Publishing Options
437
430
  status_main_feed: Display statuses in the main feed
@@ -447,15 +440,12 @@ en:
447
440
  comments_filter: Comments filter
448
441
  days: days
449
442
  disable_comments_after: Disable comments after
450
- disable_trackbacks_sitewide: Disable trackbacks site-wide
451
443
  enable_comments_by_default: Enable comments by default
452
444
  enable_feedback_moderation: Enable feedback moderation
453
445
  enable_recaptcha: Enable reCaptcha
454
446
  enable_spam_protection: Enable spam protection
455
- enable_trackbacks_by_default: Enable Trackbacks by default
456
- explain_disable_trackbacks: This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.
457
- explain_feedback_moderation: You can enable site-wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.
458
- explain_reject_comments: Publify will automatically reject comments and trackbacks which contain over a certain amount of links in them
447
+ explain_feedback_moderation: You can enable site-wide feedback moderation. If you do so, no comment will appear on your blog unless you validate it.
448
+ explain_reject_comments: Publify will automatically reject comments which contain over a certain amount of links in them
459
449
  explain_spam_protection: Enabling spam protection will make Publify compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots
460
450
  explain_spamfiltering_html: Publify can (optionally) use the <a href='http://akismet.com'>Akismet</a> spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here
461
451
  feedback: Feedback
@@ -468,7 +458,6 @@ en:
468
458
  set_to_0_to_never_reject_comments: Set to 0 to never reject comments
469
459
  spam: Spam
470
460
  spam_protection: Spam protection
471
- trackbacks: Trackbacks
472
461
  update_settings: Update settings
473
462
  index:
474
463
  allow_users_to_register: Allow users to register
@@ -494,7 +483,6 @@ en:
494
483
  cancel: Cancel
495
484
  display: Display
496
485
  example: example
497
- explain: When publishing articles, Publify can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.
498
486
  image_medium_size: Image medium size
499
487
  image_thumbnail_size: Image thumbnail size
500
488
  latitude_longitude: Latitude, Longitude
@@ -502,12 +490,9 @@ en:
502
490
  or: or
503
491
  publish: Publish
504
492
  publish_on_twitter: Publish on Twitter
505
- send_trackbacks: Send trackbacks
506
- trackbacks: Trackbacks
507
493
  twitter_consumer_key: Twitter consumer key
508
494
  twitter_consumer_secret: Twitter consumer secret
509
495
  update_settings: Update settings
510
- urls_to_ping: URLs to ping automatically
511
496
  write: Write
512
497
  your_geoloc: your latitude and longitude
513
498
  shared:
@@ -642,7 +627,8 @@ en:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: No articles found
645
- posted_in: Posted in
630
+ archives_article:
631
+ posted_in: posted in
646
632
  article:
647
633
  posted_by: Posted by
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ en:
679
665
  edit: Edit
680
666
  leave_a_response: Leave a response
681
667
  rss_feed: RSS feed
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: Use the following link to trackback from your own site
685
- search:
686
- next_page: Next page
687
- previous_page: Previous page
688
669
  trackback:
689
670
  from: From
690
671
  authors:
@@ -693,9 +674,6 @@ en:
693
674
  contact_information: Contact information
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: Next page
697
- posted_in: posted in
698
- previous_page: Previous page
699
677
  this_author_has_not_published_any_article_yet: This author has not published any articles yet
700
678
  twitter: 'Twitter:'
701
679
  web_site: 'Web site:'
@@ -775,16 +753,10 @@ en:
775
753
  designed_by: Designed by %{designed_by}
776
754
  powered_by_html: Powered by %{powered_by}
777
755
  notes:
778
- index:
779
- next_page: Next page
780
- previous_page: Previous page
781
756
  note:
782
757
  view_on_twitter: View on Twitter
783
758
  notice:
784
759
  note_successfully_created: Note was successfully created
785
- pagination:
786
- next_page: Next page
787
- previous_page: Previous page
788
760
  profile:
789
761
  admin: Publify administrator
790
762
  contributor: Contributor
@@ -795,6 +767,7 @@ en:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Blog name
770
+ password: Password
798
771
  welcome_to_your_blog_setup: Welcome to your blog setup
799
772
  your_mail: Your email
800
773
  page:
@@ -802,9 +775,7 @@ en:
802
775
  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 you like and manage all of your content inside Publify.
803
776
  tags:
804
777
  index:
805
- next_page: Next page
806
- previous_page: Previous page
807
- there_is_no_tags: There is no tag
778
+ there_are_no_tags: There are no tags
808
779
  time:
809
780
  formats:
810
781
  default: "%m/%d/%Y %H:%M"
@@ -7,7 +7,6 @@ es-MX:
7
7
  admin: admin
8
8
  dont_lose_the_mail_sent: No pierda el correo enviado a %{email} o no podr&aacute; volver a acceder en el futuro
9
9
  login: Login
10
- password: Contrase&ntilde;a
11
10
  proceed_to: Proceed to %{link}
12
11
  success: You have successfully signed up.
13
12
  create_account: Create an account
@@ -40,11 +39,7 @@ es-MX:
40
39
  allow_comments_status:
41
40
  one: enabled
42
41
  zero: disabled
43
- allow_pings_status:
44
- one: enabled
45
- zero: disabled
46
- allow_trackbacks: Se permiten trackbacks
47
- allowed_comments_and_trackbacks_html: Comments are %{allow_comment} and trackbacks are %{allow_trackback}
42
+ allowed_comments_html: Comments are %{allow_comment}
48
43
  article_type: Article type
49
44
  cancel: Cancelar
50
45
  default: Default
@@ -430,8 +425,6 @@ es-MX:
430
425
  feed_articles: Article excerpts
431
426
  feed_excerpts_only: Show only article excerpts in feed
432
427
  feed_settings: RSS Feed Settings
433
- feedburner_help: Enter your FeedBurner ID if you wish to use your Google FeedBurner account instead of using the Publify feed URL.
434
- feedburner_id: FeedBurner ID
435
428
  or: or
436
429
  publishing_options: Publishing Options
437
430
  status_main_feed: Display statuses in the main feed
@@ -447,15 +440,12 @@ es-MX:
447
440
  comments_filter: Filtro de comentarios
448
441
  days: d&iacute;as
449
442
  disable_comments_after: Deshabilitar comentarios despu&eacute;s de
450
- disable_trackbacks_sitewide: Disable trackbacks site-wide
451
443
  enable_comments_by_default: Habilitar comentarios por default
452
- enable_feedback_moderation: Habilitar moderaci&oacute;n de comentarios y trackbacks
444
+ enable_feedback_moderation: Habilitar moderaci&oacute;n de comentarios
453
445
  enable_recaptcha: Enable reCaptcha
454
446
  enable_spam_protection: Habilitar protecci&oacute;n anti-spam
455
- enable_trackbacks_by_default: Habilitar Trackbacks por default
456
- explain_disable_trackbacks: Esta opci&oacute;n te permite deshabilitar trackbacks para cada art&iacute;culo en tu blog. Esto no remover&aacute; trackbacks existentes, pero impedir&aacute; cualquier intento futuro para a&ntilde;adir una trackback en cualquier parte de tu blog.
457
- explain_feedback_moderation: You can enable site wide feedback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it.
458
- explain_reject_comments: Publify rechazar&aacute; autom&aacute;ticamente los comentarios y trackbacks que contengan m&aacute;s de un cierto n&uacute;mero de links en ellos
447
+ explain_feedback_moderation: You can enable site wide feedback moderation. If you do so, no comment will appear on your blog unless you validate it.
448
+ explain_reject_comments: Publify rechazar&aacute; autom&aacute;ticamente los comentarios que contengan m&aacute;s de un cierto n&uacute;mero de links en ellos
459
449
  explain_spam_protection: Habilitando la protecci&oacute;n anti-spam har&aacute; que publify compare la direcci&oacute;n IP del usuario as&iacute; como el contenido de sus comentarios contra una lista negra remota o local. Es una buena defensa contra los robots de spam
460
450
  explain_spamfiltering_html: Publify puede (opcionalmente) usar el servicio anti-spam de <a href='http://akismet.com'>Akismet</a>. Necesitas registrarte en Akismet y obtener una API key antes de poder usar su servicio. Si tienes una clave de Akismet, introd&uacute;cela aqu&iacute;
461
451
  feedback: Feedback
@@ -468,7 +458,6 @@ es-MX:
468
458
  set_to_0_to_never_reject_comments: Introducir 0 para nunca rechazar comentarios
469
459
  spam: Spam
470
460
  spam_protection: Protecci&oacute;n anti-spam
471
- trackbacks: Trackbacks
472
461
  update_settings: Update settings
473
462
  index:
474
463
  allow_users_to_register: Allow users to register
@@ -494,7 +483,6 @@ es-MX:
494
483
  cancel: Cancelar
495
484
  display: Mostrar
496
485
  example: ejemplo
497
- explain: Cuando se publican art&iacute;culos, Publify puede enviar trackbacks a sitios enlazados. Esto deber&iacute;a deshabilitarse para blogs privados para que no se escape informaci&oacute;n privada a sitios que est&aacute;s comentando. Para blogs p&uacute;blicos, realmente no hay raz&oacute;n para deshabilitar esto.
498
486
  image_medium_size: Image medium size
499
487
  image_thumbnail_size: Image thumbnail size
500
488
  latitude_longitude: Latitud, Longitud
@@ -502,12 +490,9 @@ es-MX:
502
490
  or: or
503
491
  publish: Publicar
504
492
  publish_on_twitter: Publish on Twitter
505
- send_trackbacks: Enviar trackbacks
506
- trackbacks: Trackbacks
507
493
  twitter_consumer_key: Twitter consumer key
508
494
  twitter_consumer_secret: Twitter consumer secret
509
495
  update_settings: Update settings
510
- urls_to_ping: Enviar pings a URLs autom&aacute;ticamente
511
496
  write: Escribir
512
497
  your_geoloc: tu latitud y longitud
513
498
  shared:
@@ -642,7 +627,8 @@ es-MX:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: No se encontraron art&iacute;culos
645
- posted_in: Publicado en
630
+ archives_article:
631
+ posted_in: publicado en
646
632
  article:
647
633
  posted_by: Publicado por
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ es-MX:
679
665
  edit: Edit
680
666
  leave_a_response: Deja un comentario
681
667
  rss_feed: Feed RSS para este art&iacute;culo
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: Usa el siguiente link para crear un trackback desde tu propio sitio
685
- search:
686
- next_page: Siguiente p&aacute;gina
687
- previous_page: P&aacute;gina anterior
688
669
  trackback:
689
670
  from: From
690
671
  authors:
@@ -693,9 +674,6 @@ es-MX:
693
674
  contact_information: Contact information
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: P&aacute;gina siguiente
697
- posted_in: posted in
698
- previous_page: P&aacute;gina anterior
699
677
  this_author_has_not_published_any_article_yet: This author has not published any article yet
700
678
  twitter: 'Twitter:'
701
679
  web_site: 'Web site:'
@@ -775,16 +753,10 @@ es-MX:
775
753
  designed_by: Designed by %{designed_by}
776
754
  powered_by_html: Powered by %{powered_by}
777
755
  notes:
778
- index:
779
- next_page: Next page
780
- previous_page: Previous page
781
756
  note:
782
757
  view_on_twitter: Ver en Twitter
783
758
  notice:
784
759
  note_successfully_created: Nota creada exit&oacute;samente
785
- pagination:
786
- next_page: Siguiente p&aacute;gina
787
- previous_page: P&aacute;gina anterior
788
760
  profile:
789
761
  admin: Publify administrator
790
762
  contributor: Contributor
@@ -795,6 +767,7 @@ es-MX:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Nombre del Blog
770
+ password: Contraseña
798
771
  welcome_to_your_blog_setup: Bienvenido a la configuraci&oacute;n de su blog
799
772
  your_mail: Su correo electr&oacute;nico
800
773
  page:
@@ -802,9 +775,7 @@ es-MX:
802
775
  body: Este es un ejemplo de una p&aacute;gina en Publify. Ud. puede editarla para escribir informaci&oacute;n acerca de usted o su sitio para que los lectores sepan quien es usted. Usted puede crear tantas p&aacute;ginas como esta para manejar todo el contenido dentro de Publify.
803
776
  tags:
804
777
  index:
805
- next_page: Siguiente p&aacute;gina
806
- previous_page: P&aacute;gina anterior
807
- there_is_no_tags: No existen Tags
778
+ there_are_no_tags: No existen Tags
808
779
  time:
809
780
  formats:
810
781
  default: "%m/%d/%Y %H:%M"
@@ -7,7 +7,6 @@ fr:
7
7
  admin: l'administration
8
8
  dont_lose_the_mail_sent: Ne perdez pas l'email que nous venons de vous envoyer à l'adresse %{email} ou vous ne pourrez plus vous connecter à l'application
9
9
  login: Identifiant
10
- password: Mot de passe
11
10
  proceed_to: Allez sur %{link}
12
11
  success: You have successfully signed up.
13
12
  create_account: Créer un compte
@@ -40,11 +39,7 @@ fr:
40
39
  allow_comments_status:
41
40
  one: activés
42
41
  zero: désactivés
43
- allow_pings_status:
44
- one: activés
45
- zero: désactivés
46
- allow_trackbacks: Autoriser les rétroliens
47
- allowed_comments_and_trackbacks_html: Les commentaires sont %{allow_comment} et les rétroliens %{allow_trackback}
42
+ allowed_comments_html: Les commentaires sont %{allow_comment}
48
43
  article_type: Type d'article
49
44
  cancel: Annuler
50
45
  default: Défaut
@@ -430,8 +425,6 @@ fr:
430
425
  feed_articles: Exergues des articles
431
426
  feed_excerpts_only: Tronquer les articles dans le flux RSS
432
427
  feed_settings: Configuration du flux RSS
433
- feedburner_help: Renseignez votre identifiant FeedBurner si vous souhaitez utiliser votre compte Google FeedBurner au lieu du flux URL de Publify.
434
- feedburner_id: Identifiant Feedburner
435
428
  or: ou
436
429
  publishing_options: Options de publication
437
430
  status_main_feed: Afficher les statuts dans le flux principal
@@ -447,15 +440,12 @@ fr:
447
440
  comments_filter: Mise en forme des commentaires
448
441
  days: jours
449
442
  disable_comments_after: 'Désactiver les commentaires au bout de '
450
- disable_trackbacks_sitewide: Désactiver les trackbacks
451
443
  enable_comments_by_default: Activer les commentaires par défaut
452
444
  enable_feedback_moderation: Activer la modération des commentaires
453
445
  enable_recaptcha: Utiliser reCaptcha
454
446
  enable_spam_protection: Activer la protection contre le spam
455
- enable_trackbacks_by_default: Activer les rétroliens par défaut
456
- explain_disable_trackbacks: Cette option vous permet de désactiver totalement les rétroliens sur votre blog. Ceci ne supprimera pas les rétroliens existants, mais empêchera tout nouveau rétrolien d'être créé
457
- explain_feedback_moderation: Vous pouvez activez la modération des commentaires sur l'ensemble de votre site. Si vous le faites, aucun commentaire ou rétrolien ne sera publié sans une validation de votre part
458
- explain_reject_comments: Publify rejettera automatiquement les commentaires et les rétroliens contenant un certain nombre de liens
447
+ explain_feedback_moderation: Vous pouvez activez la modération des commentaires sur l'ensemble de votre site. Si vous le faites, aucun commentaire ne sera publié sans une validation de votre part
448
+ explain_reject_comments: Publify rejettera automatiquement les commentaires contenant un certain nombre de liens
459
449
  explain_spam_protection: La protection contre le spam permettra à Publify de comparer l'adresse IP des commentateurs ainsi que le contenu de leurs commentaires avec une liste noire distante
460
450
  explain_spamfiltering_html: Publify peut utiliser le service de lutte contre le spam <a href='http://akismet.com'>Akismet</a>. Vous devez vous enregistrer afin de pouvoir utiliser les services d'Akismet. Si vous possédez une clé Akismet, ajoutez là ici
461
451
  feedback: Commentaires
@@ -468,7 +458,6 @@ fr:
468
458
  set_to_0_to_never_reject_comments: Mettez cette option à 0 pour ne jamais rejeter les commentaires
469
459
  spam: Spam
470
460
  spam_protection: Protection contre le spam
471
- trackbacks: Rétroliens
472
461
  update_settings: Mettre les paramètres à jour
473
462
  index:
474
463
  allow_users_to_register: Autoriser les utilisateurs à s'enregistrer
@@ -494,7 +483,6 @@ fr:
494
483
  cancel: Annuler
495
484
  display: Afficher
496
485
  example: exemple
497
- explain: Quand vous publiez un billet sur Publify, vous pouvez envoyer un rétrolien aux sites que vous liez. Cette fonctionnalité devrait être désactivée pour les blogs privée puisqu'elle permet de donner des informations à leur sujet à des tiers. Ceci ne s'impose cependant pas pour un blog public.
498
486
  image_medium_size: Taille des images réduites
499
487
  image_thumbnail_size: Taille des vignettes
500
488
  latitude_longitude: Latitude, Longitude
@@ -502,12 +490,9 @@ fr:
502
490
  or: ou
503
491
  publish: Publier
504
492
  publish_on_twitter: Publier sur Twitter
505
- send_trackbacks: Envoyer des rétroliens
506
- trackbacks: Rétroliens
507
493
  twitter_consumer_key: Clé d'utilisateur Twitter
508
494
  twitter_consumer_secret: Secret d'utilisateur sur Twitter
509
495
  update_settings: Mettre les paramètres à jour
510
- urls_to_ping: Sites à alerter automatiquement
511
496
  write: Écrire
512
497
  your_geoloc: vos coordonnées géographiques
513
498
  shared:
@@ -642,7 +627,8 @@ fr:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: Aucun article ne correspond à la recherche
645
- posted_in: Publié sous
630
+ archives_article:
631
+ posted_in: publié dans
646
632
  article:
647
633
  posted_by: Publié par
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ fr:
679
665
  edit: Éditer
680
666
  leave_a_response: Réagir à ce billet
681
667
  rss_feed: Flux RSS
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Rétroliens
684
- use_the_following_link_to_trackback: Utilisez le lien ci-dessous pour envoyer un rétrolien depuis votre site
685
- search:
686
- next_page: Page suivante
687
- previous_page: Page précédente
688
669
  trackback:
689
670
  from: From
690
671
  authors:
@@ -693,9 +674,6 @@ fr:
693
674
  contact_information: Informations de contact
694
675
  jabber: 'Jabber :'
695
676
  msn: 'MSN :'
696
- next_page: Page suivante
697
- posted_in: publié dans
698
- previous_page: Page précédente
699
677
  this_author_has_not_published_any_article_yet: Cet utilisateur n'a publié aucun article
700
678
  twitter: 'Twitter :'
701
679
  web_site: 'Site web:'
@@ -775,16 +753,10 @@ fr:
775
753
  designed_by: Design par %{designed_by}
776
754
  powered_by_html: Propulsé par %{powered_by}
777
755
  notes:
778
- index:
779
- next_page: Page suivante
780
- previous_page: Page précédente
781
756
  note:
782
757
  view_on_twitter: Vu sur Twitter
783
758
  notice:
784
759
  note_successfully_created: Ce billet a été créé avec succès
785
- pagination:
786
- next_page: Page suivante
787
- previous_page: Page précédente
788
760
  profile:
789
761
  admin: Administrateur
790
762
  contributor: Contributeur
@@ -795,6 +767,7 @@ fr:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Nom du blog
770
+ password: Mot de passe
798
771
  welcome_to_your_blog_setup: Bienvenue dans la configuration de votre blog
799
772
  your_mail: Votre email
800
773
  page:
@@ -802,9 +775,7 @@ fr:
802
775
  body: Ceci est un exemple de page Publify. Vous pouvez la modifier pour écrire des informations sur vous ou sur votre blog, afin que vos lecteurs sachent qui vous êtes. Vous pouvez créer autant de pages que vous voulez et gérer tout votre contenu dans Publify.
803
776
  tags:
804
777
  index:
805
- next_page: Page suivante
806
- previous_page: Page précédente
807
- there_is_no_tags: Il n'y a pas de tag
778
+ there_are_no_tags: Il n'y a pas de tag
808
779
  time:
809
780
  formats:
810
781
  default: "%d/%m/%Y %H:%M"
@@ -7,7 +7,6 @@ he:
7
7
  admin: admin
8
8
  dont_lose_the_mail_sent: Don't lose the mail sent at %{email} or you won't be able to login anymore
9
9
  login: התחבר
10
- password: סיסמה
11
10
  proceed_to: Proceed to %{link}
12
11
  success: You have successfully signed up.
13
12
  create_account: Create an account
@@ -40,11 +39,7 @@ he:
40
39
  allow_comments_status:
41
40
  one: מאופשר
42
41
  zero: disabled
43
- allow_pings_status:
44
- one: מאופשר
45
- zero: disabled
46
- allow_trackbacks: אפשר עוקבים חזרה
47
- allowed_comments_and_trackbacks_html: Comments are %{allow_comment} and trackbacks are %{allow_trackback}
42
+ allowed_comments_html: Comments are %{allow_comment}
48
43
  article_type: Article type
49
44
  cancel: בטל
50
45
  default: Default
@@ -430,8 +425,6 @@ he:
430
425
  feed_articles: Article excerpts
431
426
  feed_excerpts_only: Show only article excerpts in feed
432
427
  feed_settings: RSS Feed Settings
433
- feedburner_help: Enter your FeedBurner ID if you wish to use your Google FeedBurner account instead of using the Publify feed URL.
434
- feedburner_id: FeedBurner ID
435
428
  or: or
436
429
  publishing_options: Publishing Options
437
430
  status_main_feed: Display statuses in the main feed
@@ -447,13 +440,10 @@ he:
447
440
  comments_filter: מסנן התגובות
448
441
  days: ימים
449
442
  disable_comments_after: בטל תגובות לאחר
450
- disable_trackbacks_sitewide: בטל עוקבים-חזרה בכל האתר
451
443
  enable_comments_by_default: אפשר תגובות כברירת מחדל
452
444
  enable_feedback_moderation: אפשר ביקורת על המשוב
453
445
  enable_recaptcha: Enable reCaptcha
454
446
  enable_spam_protection: אפשר הגנת ספאם
455
- enable_trackbacks_by_default: אפשר עוקבים-חזרה כברירת מחדל
456
- explain_disable_trackbacks: הגדרה זו מאפשרת לך לבטל עוקבים-חזרה לכל כתבה בבלוג שלך. היא לא תסיר עוקבים-חזרה קיימים, אבל תמנע נסיונות להוספת עוקב-חזרה בכל הכתבות הבלוג שלך.
457
447
  explain_feedback_moderation: תוכל לאפשר ביקורת על המשוב בכל האתר. אם תבצע זאת, לא תוצג שום תגובה או עוקב-חזרה בבלוג שלך אלא אם תאשר אותה.
458
448
  explain_reject_comments: Publify תדחה אוטומטית תגובות ועוקבים-חזרה המכילים את כמות הקישורים מסויימת
459
449
  explain_spam_protection: אפשור הגנת ספאם תגרום ל-Publify להשוות כתובות ה-IP של השולחים ואת תוכן השליחה כנגד רשימות שחורות מקומיות או מרוחקות - הגנה טובה כנגד רובוטי ספאם.
@@ -468,7 +458,6 @@ he:
468
458
  set_to_0_to_never_reject_comments: הגדר כ-0 כדי לא לדחות תגובות לעולם
469
459
  spam: Spam
470
460
  spam_protection: Spam protection
471
- trackbacks: Trackbacks
472
461
  update_settings: Update settings
473
462
  index:
474
463
  allow_users_to_register: אפשר למשתמשים להירשם
@@ -494,7 +483,6 @@ he:
494
483
  cancel: בטל
495
484
  display: תצוגה
496
485
  example: דוגמא
497
- explain: בעת פרסום במאמר, Publify יכולה לשלוח עוקבים-חזרה לאתרים אליהם אתה מקשר. מומלץ לבטל זאת לבלוגים פרטיים משום שמידע פרטי על האתרים אליהם אתה מקשר עלול לדלוף. לבלוגים ציבוריים, אין טעם לבטל זאת.
498
486
  image_medium_size: Image medium size
499
487
  image_thumbnail_size: Image thumbnail size
500
488
  latitude_longitude: קו רוחב, קו אורך
@@ -502,12 +490,9 @@ he:
502
490
  or: or
503
491
  publish: פרסם
504
492
  publish_on_twitter: Publish on Twitter
505
- send_trackbacks: שלח עוקבים-חזרה
506
- trackbacks: עוקבים חזרה
507
493
  twitter_consumer_key: Twitter consumer key
508
494
  twitter_consumer_secret: Twitter consumer secret
509
495
  update_settings: Update settings
510
- urls_to_ping: כתובות לקישור אוטומטי
511
496
  write: כתוב
512
497
  your_geoloc: קווי הרוחב והאורך שלך
513
498
  shared:
@@ -642,6 +627,7 @@ he:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: לא נמצאו כתבות
630
+ archives_article:
645
631
  posted_in: פורסם ב-
646
632
  article:
647
633
  posted_by: נכתב על ידי
@@ -679,12 +665,7 @@ he:
679
665
  edit: Edit
680
666
  leave_a_response: הגב
681
667
  rss_feed: מזין RSS לכתבה זו
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: השתמש בקישור הבא כדי לעקוב-חזרה מהאתר שלך
685
- search:
686
- next_page: Next page
687
- previous_page: Previous page
688
669
  trackback:
689
670
  from: From
690
671
  authors:
@@ -693,9 +674,6 @@ he:
693
674
  contact_information: Contact information
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: הדף הבא
697
- posted_in: נשלח ב-
698
- previous_page: הדף הקודם
699
677
  this_author_has_not_published_any_article_yet: This author has not published any article yet
700
678
  twitter: 'Twitter:'
701
679
  web_site: 'Web site:'
@@ -775,16 +753,10 @@ he:
775
753
  designed_by: עוצב על ידי %{designed_by}
776
754
  powered_by_html: מופעל על ידי %{powered_by}
777
755
  notes:
778
- index:
779
- next_page: Next page
780
- previous_page: Previous page
781
756
  note:
782
757
  view_on_twitter: View on Twitter
783
758
  notice:
784
759
  note_successfully_created: Note was successfully created
785
- pagination:
786
- next_page: Next page
787
- previous_page: Previous page
788
760
  profile:
789
761
  admin: מנהל
790
762
  contributor: תורם
@@ -795,6 +767,7 @@ he:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Blog name
770
+ password: סיסמה
798
771
  welcome_to_your_blog_setup: Welcome to your blog setup
799
772
  your_mail: Your email
800
773
  page:
@@ -802,9 +775,7 @@ he:
802
775
  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.
803
776
  tags:
804
777
  index:
805
- next_page: Next page
806
- previous_page: Previous page
807
- there_is_no_tags: There is no tag
778
+ there_are_no_tags: There are no tags
808
779
  time:
809
780
  formats:
810
781
  default: "%m/%d/%Y %H:%M"