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 @@ it:
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 @@ it:
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: Permetti 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: Annulla
50
45
  default: Default
@@ -430,8 +425,6 @@ it:
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 @@ it:
447
440
  comments_filter: Filtra commenti
448
441
  days: giorni
449
442
  disable_comments_after: 'Disabilita commenti dopo '
450
- disable_trackbacks_sitewide: Disable trackbacks site-wide
451
443
  enable_comments_by_default: Abilita commenti di defaault
452
444
  enable_feedback_moderation: Abilita la moderazione dei feedback
453
445
  enable_recaptcha: Enable reCaptcha
454
446
  enable_spam_protection: Abilita la protezione spam
455
- enable_trackbacks_by_default: Abilita Trackbacks come 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: Puoi abilitare in modo globale la moderazione dei feedback. Se fai cio', nessun commento o trackback apparira' sul tuo blog se tu non lo autorizzi.
458
- explain_reject_comments: Il blog cancellera' automaticamente commenti e trackbacks che contengono un certo numero di link
447
+ explain_feedback_moderation: Puoi abilitare in modo globale la moderazione dei feedback. Se fai cio', nessun commento apparira' sul tuo blog se tu non lo autorizzi.
448
+ explain_reject_comments: Il blog cancellera' automaticamente commenti che contengono un certo numero di link
459
449
  explain_spam_protection: Abilitando la protezione contro lo spam fa si che il blog compari gli IP di chi invia i commenti e anche il loro contenuto con una blacklist remota. E' una buona difesa contro gli spam robot
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: Commenti
@@ -468,7 +458,6 @@ it:
468
458
  set_to_0_to_never_reject_comments: Inserisci 0 per accettare sempre i commenti.
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 @@ it:
494
483
  cancel: Annulla
495
484
  display: Mostra
496
485
  example: esempio
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: Latitudine, Longitudine
@@ -502,12 +490,9 @@ it:
502
490
  or: or
503
491
  publish: Pubblica
504
492
  publish_on_twitter: Publish on Twitter
505
- send_trackbacks: Invia 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: Indirizzi da pingare automaticamente
511
496
  write: Scrivi
512
497
  your_geoloc: la tua latitudine e longitudine
513
498
  shared:
@@ -642,7 +627,8 @@ it:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: Nessun articolo trovato
645
- posted_in: Posted in
630
+ archives_article:
631
+ posted_in: posted in
646
632
  article:
647
633
  posted_by: Scritto da
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ it:
679
665
  edit: Edit
680
666
  leave_a_response: Commenta
681
667
  rss_feed: Feed RSS per questo post
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: Usa il link seguente per fare un trackback dal tuo sito
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 @@ it:
693
674
  contact_information: Contact information
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: Pagina successiva
697
- posted_in: posted in
698
- previous_page: Pagina precedente
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 @@ it:
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 @@ it:
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 @@ it:
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 @@ ja:
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 @@ ja:
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: トラックバックを許可
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 @@ ja:
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 @@ ja:
447
440
  comments_filter: コメントフィルター
448
441
  days: 日
449
442
  disable_comments_after: 右の期間以後のコメントを不許可にする
450
- disable_trackbacks_sitewide: Disable trackbacks site-wide
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: スパムプロテクションを有効にすると、投稿者のIPアドレスおよびその投稿内容をローカル、リモート両方のブラックリストと比較します
@@ -468,7 +458,6 @@ ja:
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 @@ ja:
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 @@ ja:
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: 自動的にPingを送信するURL
511
496
  write: 新規作成
512
497
  your_geoloc: あなたの緯度、経度
513
498
  shared:
@@ -642,7 +627,8 @@ ja:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: 記事が見つかりませんでした
645
- posted_in: Posted in
630
+ archives_article:
631
+ posted_in: カテゴリ
646
632
  article:
647
633
  posted_by: 投稿者
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ ja:
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 @@ ja:
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 @@ ja:
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 @@ ja:
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 @@ ja:
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"
@@ -7,7 +7,6 @@ lt:
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: Prisijungimas
10
- password: slaptažodis
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 @@ lt:
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: Leisti dienoraščių nuorodas
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: Baigti
50
45
  default: Default
@@ -430,8 +425,6 @@ lt:
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 @@ lt:
447
440
  comments_filter: Komentarų filtras
448
441
  days: Tagen
449
442
  disable_comments_after: Kommentare abschalten nach
450
- disable_trackbacks_sitewide: Disable trackbacks site-wide
451
443
  enable_comments_by_default: Kommentare per default erlauben
452
444
  enable_feedback_moderation: Moderation von Kommentaren aktivieren
453
445
  enable_recaptcha: Enable reCaptcha
454
446
  enable_spam_protection: Spamschutz aktivieren
455
- enable_trackbacks_by_default: Trackbacks per default aktivieren
456
- explain_disable_trackbacks: Diese Option erlaubt es Ihnen, Trackbacks für alle Artikel im gesamten Blog zu deaktivieren. Dadurch werden zwar keine bereits existierenden Trackbacks entfernt, aber alle zukünftig irgendwo in Ihrem Blog eintreffenden Trackbacks werden abgewiesen.
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 kann automatisch Kommentare und Trackbacks abweisen, die mehr als eine bestimmte Anzahl von Links enthalten
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 kann automatisch Kommentare abweisen, die mehr als eine bestimmte Anzahl von Links enthalten
459
449
  explain_spam_protection: Bei Aktivierung des Spamschutzes wird Publify sowohl die IP Adresse des Autors als auch den Inhalt seiner Veröffentlichung gegen lokale und entfernte Blacklisten vergleichen. Gute Abwehr von Spambots
460
450
  explain_spamfiltering_html: Publify kann (optional) den <a href='http://akismet.com'>Akismet</a> Spam-Filterdienst verwenden. Sie müssen sich dort registriert und einen API Key erhalten haben, bevor Sie diesen Dienst nutzen können. Wenn Sie einen solchen Key haben, geben Sie ihn hier ein
461
451
  feedback: Feedback
@@ -468,7 +458,6 @@ lt:
468
458
  set_to_0_to_never_reject_comments: Wert 0 bewirkt, dass Kommentare nie abgewiesen werden
469
459
  spam: Spam
470
460
  spam_protection: Spamschutz
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 @@ lt:
494
483
  cancel: Baigti
495
484
  display: Rodyti
496
485
  example: Pavyzdys
497
- explain: Publikuojant straipsnius Publify gali siųsti dienoraščių nuorodas į puslapius, į kuriuos jūs rodote. Tai gali būti išjungta ant privačių dienoraščių, bet viešuose nėra priežasties išjungti šio nustatymo
498
486
  image_medium_size: Image medium size
499
487
  image_thumbnail_size: Image thumbnail size
500
488
  latitude_longitude: Geografinė platuma, ilguma
@@ -502,12 +490,9 @@ lt:
502
490
  or: or
503
491
  publish: Publikuoti
504
492
  publish_on_twitter: Publish on Twitter
505
- send_trackbacks: Siųsti dienoraščių nuorodas
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: URL adresai į kuriuos pranešti automatiškai
511
496
  write: Rašyti
512
497
  your_geoloc: Tavo geografinė platuma ir ilguma
513
498
  shared:
@@ -642,7 +627,8 @@ lt:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: Straipsnių nėra
645
- posted_in: Posted in
630
+ archives_article:
631
+ posted_in: posted in
646
632
  article:
647
633
  posted_by: Parašė
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ lt:
679
665
  edit: Redaguoti
680
666
  leave_a_response: Palikti atsakymą
681
667
  rss_feed: šio įrašo RSS
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: Dienoraščio nuoroda (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 @@ lt:
693
674
  contact_information: Contact information
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: Sekantis puslapis
697
- posted_in: posted in
698
- previous_page: Buvęs puslapis
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 @@ lt:
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 @@ lt:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Blog name
770
+ password: Slaptažodis
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 @@ lt:
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"
@@ -7,7 +7,6 @@ nb-NO:
7
7
  admin: admin
8
8
  dont_lose_the_mail_sent: Ikke mist eposten som ble sendt %{email}. Uten passordet vil du ikke kunne logge inn senere
9
9
  login: Logg inn
10
- password: Passord
11
10
  proceed_to: Fortsett til %{link}
12
11
  success: You have successfully signed up.
13
12
  create_account: Opprett konto
@@ -40,11 +39,7 @@ nb-NO:
40
39
  allow_comments_status:
41
40
  one: aktivert
42
41
  zero: deaktivert
43
- allow_pings_status:
44
- one: aktivert
45
- zero: deaktivert
46
- allow_trackbacks: Tillat trackbacks
47
- allowed_comments_and_trackbacks_html: Kommentarer er %{allow_comment} og trackbacks er %{allow_trackback}
42
+ allowed_comments_html: Kommentarer er %{allow_comment}
48
43
  article_type: Artikkeltype
49
44
  cancel: Avbryt
50
45
  default: Standard
@@ -430,8 +425,6 @@ nb-NO:
430
425
  feed_articles: Utdrag
431
426
  feed_excerpts_only: Vis bare utdrag av artikler i feeden
432
427
  feed_settings: Innstillinger for RSS-feed
433
- feedburner_help: Oppgi din FeedBurner-ID hvis du vil bruke Google Feedburner istedenfor feed-URL-en i Publify.
434
- feedburner_id: FeedBurner-ID
435
428
  or: eller
436
429
  publishing_options: Publiseringsvalg
437
430
  status_main_feed: Vis statusoppdateringer i hovedfeeden
@@ -447,15 +440,12 @@ nb-NO:
447
440
  comments_filter: Kommentarfilter
448
441
  days: dager
449
442
  disable_comments_after: Deaktiver kommentarer etter
450
- disable_trackbacks_sitewide: Deaktiver trackbacks på hele siden
451
443
  enable_comments_by_default: Aktiver kommentarer som standard
452
444
  enable_feedback_moderation: Aktiver moderering av diskusjoner
453
445
  enable_recaptcha: Aktiver reCaptcha
454
446
  enable_spam_protection: Aktiver spam-beskyttelse
455
- enable_trackbacks_by_default: Aktiver trackbacks som standard
456
- explain_disable_trackbacks: Denne innstillingen gir deg mulighet for å deaktivere trackbacks for hver eneste artikkel i bloggen din. Eksisterende trackbacks vil ikke fjernes, men det vil forhindre nye forsøk å legge til trackbacks i bloggen.
457
- explain_feedback_moderation: Du kan aktivere moderering av diskusjoner for hele bloggen. Dersom du gjør det vil ingen kommentarer eller trackbacks vises i bloggen din uten at du har godkjent dem
458
- explain_reject_comments: Publify vil automatisk avvise kommentarer og trackback som inneholder flere enn et visst antall lenker
447
+ explain_feedback_moderation: Du kan aktivere moderering av diskusjoner for hele bloggen. Dersom du gjør det vil ingen kommentarer vises i bloggen din uten at du har godkjent dem
448
+ explain_reject_comments: Publify vil automatisk avvise kommentarer som inneholder flere enn et visst antall lenker
459
449
  explain_spam_protection: Når du aktiverer spam-beskyttelse vil Publify sammenlikne IP-adressen til deltakere, samt innholdet i artiklene, mot lokale svartelister og svartelister på internett. Godt forsvar mot spam-roboter
460
450
  explain_spamfiltering_html: Publify kan settes opp til å bruke spamfilter-servicen <a href='http://akismet.com'>Akismet</a>. Du må registrere deg hos Akismet og få en API-nøkkel før du kan bruke servicen deres. Hvis du har en Akismet-nøkkel, oppgi den her
461
451
  feedback: Diskusjon
@@ -468,7 +458,6 @@ nb-NO:
468
458
  set_to_0_to_never_reject_comments: Sett til 0 for å aldri forkaste kommentarer
469
459
  spam: Spam
470
460
  spam_protection: Spam-beskyttelse
471
- trackbacks: Trackbacks
472
461
  update_settings: Oppdater innstillinger
473
462
  index:
474
463
  allow_users_to_register: Tillat brukere å registrere seg
@@ -494,7 +483,6 @@ nb-NO:
494
483
  cancel: Avbryt
495
484
  display: Vis
496
485
  example: for eksempel
497
- explain: Når du publiserer artikler kan Publify sende trackbacks til de nettsidene du lenker til. Dette bør deaktiveres for private blogger da det ellers kan lekke privat informasjon til nettsider du diskuterer. For offentlige blogger, er det ingen reell mening i å deaktivere dette.
498
486
  image_medium_size: Mellomstor bildestørrelse
499
487
  image_thumbnail_size: Liten bildestørrelse
500
488
  latitude_longitude: Breddegrad, lengdegrad
@@ -502,12 +490,9 @@ nb-NO:
502
490
  or: eller
503
491
  publish: Publiser
504
492
  publish_on_twitter: Publiser til Twitter
505
- send_trackbacks: Send trackbacks
506
- trackbacks: Trackbacks
507
493
  twitter_consumer_key: Twitter forbruker/API-nøkkel
508
494
  twitter_consumer_secret: Twitter forbruker/API-hemmelighet
509
495
  update_settings: Oppdater innstillinger
510
- urls_to_ping: Nettadresser som skal pinges automatisk
511
496
  write: Skriv
512
497
  your_geoloc: din breddegrad og lengdegrad
513
498
  shared:
@@ -642,7 +627,8 @@ nb-NO:
642
627
  articles:
643
628
  archives:
644
629
  no_articles_found: Fant ingen artikler
645
- posted_in: Publisert i
630
+ archives_article:
631
+ posted_in: posted til
646
632
  article:
647
633
  posted_by: Skrevet av
648
634
  article_excerpt:
@@ -679,12 +665,7 @@ nb-NO:
679
665
  edit: Rediger
680
666
  leave_a_response: Skriv en kommentar
681
667
  rss_feed: RSS-feed for denne artikkel
682
- trackback_uri: Trackback URI
683
668
  trackbacks: Trackbacks
684
- use_the_following_link_to_trackback: Bruk følgende lenke for å opprette trackback fra din egen side
685
- search:
686
- next_page: Neste side
687
- previous_page: Forrige side
688
669
  trackback:
689
670
  from: From
690
671
  authors:
@@ -693,9 +674,6 @@ nb-NO:
693
674
  contact_information: Kontaktinformasjon
694
675
  jabber: 'Jabber:'
695
676
  msn: 'MSN:'
696
- next_page: Neste side
697
- posted_in: postet til
698
- previous_page: Forrige side
699
677
  this_author_has_not_published_any_article_yet: Forfatteren har ikke publisert noen artikler enda
700
678
  twitter: 'Twitter:'
701
679
  web_site: 'Hjemmeside:'
@@ -775,16 +753,10 @@ nb-NO:
775
753
  designed_by: Utformet av %{designed_by}
776
754
  powered_by_html: Drives av %{powered_by}
777
755
  notes:
778
- index:
779
- next_page: Neste side
780
- previous_page: Forrige side
781
756
  note:
782
757
  view_on_twitter: Vis på Twitter
783
758
  notice:
784
759
  note_successfully_created: Notat opprettet
785
- pagination:
786
- next_page: Neste side
787
- previous_page: Forrige side
788
760
  profile:
789
761
  admin: Publify-administrator
790
762
  contributor: Bidragsyter
@@ -795,6 +767,7 @@ nb-NO:
795
767
  title: Hello World!
796
768
  index:
797
769
  blog_name: Bloggnavn
770
+ password: Passord
798
771
  welcome_to_your_blog_setup: Velkommen til ditt bloggoppsett
799
772
  your_mail: Din epost
800
773
  page:
@@ -802,9 +775,7 @@ nb-NO:
802
775
  body: Dette er et eksempel på en Publify-side. Du kan redigere den med informasjon om deg selv eller bloggen din, slik at leserne vet hvem du er. Du kan lage så mange du vil av slike sider, og håndtere alt innholdet med Publify.
803
776
  tags:
804
777
  index:
805
- next_page: Neste side
806
- previous_page: Forrige side
807
- there_is_no_tags: Det er ingen tagg
778
+ there_are_no_tags: Det er ingen tagg
808
779
  time:
809
780
  formats:
810
781
  default: "%d/%m/%Y %H:%M"