publify_core 9.0.1 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +5 -0
  3. data/app/controllers/admin/base_controller.rb +0 -11
  4. data/app/controllers/admin/content_controller.rb +7 -18
  5. data/app/controllers/admin/dashboard_controller.rb +1 -2
  6. data/app/controllers/admin/feedback_controller.rb +1 -0
  7. data/app/controllers/admin/notes_controller.rb +1 -1
  8. data/app/controllers/admin/pages_controller.rb +6 -19
  9. data/app/controllers/admin/profiles_controller.rb +11 -3
  10. data/app/controllers/admin/seo_controller.rb +1 -3
  11. data/app/controllers/admin/sidebar_controller.rb +0 -2
  12. data/app/controllers/admin/users_controller.rb +2 -2
  13. data/app/controllers/comments_controller.rb +6 -10
  14. data/app/controllers/setup_controller.rb +1 -2
  15. data/app/helpers/admin/base_helper.rb +1 -2
  16. data/app/helpers/base_helper.rb +2 -19
  17. data/app/helpers/xml_helper.rb +1 -1
  18. data/app/models/article.rb +4 -12
  19. data/app/models/blog.rb +9 -17
  20. data/app/models/content.rb +6 -16
  21. data/app/models/feedback.rb +2 -1
  22. data/app/models/meta_sidebar.rb +0 -2
  23. data/app/models/note.rb +2 -3
  24. data/app/models/page.rb +1 -2
  25. data/app/models/ping.rb +1 -1
  26. data/app/models/post_type.rb +1 -3
  27. data/app/models/redirect.rb +3 -2
  28. data/app/models/redirection.rb +1 -1
  29. data/app/models/resource.rb +1 -1
  30. data/app/models/sidebar.rb +1 -1
  31. data/app/models/static_sidebar.rb +0 -2
  32. data/app/models/tag.rb +1 -1
  33. data/app/models/text_filter.rb +1 -1
  34. data/app/models/trigger.rb +2 -2
  35. data/app/models/user.rb +1 -1
  36. data/app/services/title_builder.rb +7 -11
  37. data/app/uploaders/resource_uploader.rb +1 -3
  38. data/app/views/admin/content/_form.html.erb +1 -1
  39. data/app/views/admin/content/autosave.js.erb +2 -2
  40. data/app/views/admin/pages/_form.html.erb +6 -6
  41. data/app/views/admin/seo/_general.html.erb +1 -1
  42. data/app/views/admin/seo/_permalinks.html.erb +2 -2
  43. data/app/views/admin/users/_form.html.erb +2 -2
  44. data/app/views/articles/view_page.html.erb +1 -1
  45. data/app/views/shared/_atom_header.atom.builder +1 -3
  46. data/app/views/shared/_atom_item_article.atom.builder +9 -13
  47. data/app/views/shared/_google_analytics.html.erb +8 -0
  48. data/app/views/shared/_page_header.html.erb +1 -1
  49. data/app/views/shared/_rss_item_article.rss.builder +2 -3
  50. data/config/initializers/mime_types.rb +1 -1
  51. data/config/locales/da.yml +1 -3
  52. data/config/locales/de.yml +1 -3
  53. data/config/locales/en.yml +1 -3
  54. data/config/locales/es-MX.yml +1 -3
  55. data/config/locales/fr.yml +1 -3
  56. data/config/locales/he.yml +1 -3
  57. data/config/locales/it.yml +1 -3
  58. data/config/locales/ja.yml +1 -3
  59. data/config/locales/lt.yml +1 -3
  60. data/config/locales/nb-NO.yml +1 -3
  61. data/config/locales/nl.yml +1 -3
  62. data/config/locales/pl.yml +193 -195
  63. data/config/locales/pt-BR.yml +1 -3
  64. data/config/locales/ro.yml +1 -3
  65. data/config/locales/ru.yml +1 -3
  66. data/config/locales/zh-CN.yml +1 -3
  67. data/config/locales/zh-TW.yml +1 -3
  68. data/config/routes.rb +1 -1
  69. data/db/migrate/113_initial_schema.rb +0 -2
  70. data/db/migrate/114_fixes_buggy_articles_and_notes.rb +1 -1
  71. data/db/migrate/115_drops_categories_for_tags.rb +3 -4
  72. data/db/migrate/20150807134129_simplify_redirect_relations.rb +1 -3
  73. data/db/migrate/20150808052637_add_blog_ids.rb +5 -1
  74. data/db/seeds.rb +1 -3
  75. data/lib/format.rb +1 -11
  76. data/lib/publify_core/version.rb +1 -1
  77. data/lib/spam_protection.rb +3 -4
  78. data/lib/text_filter_plugin.rb +3 -4
  79. data/lib/theme.rb +1 -3
  80. data/lib/transforms.rb +0 -2
  81. metadata +87 -80
@@ -1,6 +1,4 @@
1
1
  feed.title(feed_title)
2
- if this_blog.blog_subtitle.present?
3
- feed.subtitle(this_blog.blog_subtitle, 'type' => 'html')
4
- end
2
+ feed.subtitle(this_blog.blog_subtitle, 'type' => 'html') if this_blog.blog_subtitle.present?
5
3
  feed.updated items.first.updated_at if items.first
6
4
  feed.generator 'Publify', uri: 'http://www.publify.co', version: PublifyCore::VERSION
@@ -15,21 +15,17 @@ feed.entry item, id: "urn:uuid:#{item.guid}", published: item.published_at, url:
15
15
  entry.category 'term' => tag.display_name, 'scheme' => tag_url(tag.permalink)
16
16
  end
17
17
 
18
+ # TODO: Add tests for this
18
19
  item.resources.each do |resource|
19
- if resource.size > 0 # The Atom spec disallows files with size=0
20
- entry.tag! :link, 'rel' => 'enclosure',
21
- type: resource.mime,
22
- title: item.title,
23
- href: this_blog.file_url(resource.upload_url),
24
- length: resource.size
25
- else
26
- entry.tag! :link, 'rel' => 'enclosure',
27
- type: resource.mime,
28
- title: item.title,
29
- href: this_blog.file_url(resource.upload_url)
30
- end
20
+ link_options = { rel: 'enclosure',
21
+ type: resource.mime,
22
+ title: item.title,
23
+ href: this_blog.file_url(resource.upload_url) }
24
+ # The Atom spec disallows files with size=0
25
+ link_options[:length] = resource.size if resource.size > 0
26
+ entry.tag! :link, link_options
31
27
  end
32
28
  end
33
29
  content_html = fetch_html_content_for_feeds(item, this_blog)
34
- entry.content content_html + item.get_rss_description, 'type' => 'html'
30
+ entry.content content_html + item.rss_description, 'type' => 'html'
35
31
  end
@@ -0,0 +1,8 @@
1
+ <script type="text/javascript">
2
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
3
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
4
+ </script>
5
+ <script type="text/javascript">
6
+ var pageTracker = _gat._getTracker("<%= this_blog.google_analytics %>");
7
+ pageTracker._trackPageview();
8
+ </script>
@@ -19,7 +19,7 @@
19
19
  <link rel="canonical" href="<%= this_blog.base_url + request.fullpath %>" />
20
20
  <% end %>
21
21
  <%= raw this_blog.custom_tracking_field unless this_blog.custom_tracking_field.blank? %>
22
- <%= google_analytics %>
22
+ <%= render 'shared/google_analytics' unless this_blog.google_analytics.blank? %>
23
23
 
24
24
  <%= meta_tag 'og:site_name', this_blog.blog_name %>
25
25
  <%= meta_tag 'og:title', @article ? @article.title : @page_title %>
@@ -5,7 +5,7 @@ xm.item do
5
5
  xm.title item.title
6
6
  end
7
7
  content_html = fetch_html_content_for_feeds(item, this_blog)
8
- xm.description content_html + item.get_rss_description
8
+ xm.description content_html + item.rss_description
9
9
  xm.pubDate item.published_at.rfc822
10
10
  xm.guid "urn:uuid:#{item.guid}", 'isPermaLink' => 'false'
11
11
  xm.dc :creator, item.author_name
@@ -21,8 +21,7 @@ xm.item do
21
21
  xm.enclosure(
22
22
  url: item.blog.file_url(resource.upload_url),
23
23
  length: resource.size,
24
- type: resource.mime
25
- )
24
+ type: resource.mime)
26
25
  end
27
26
  end
28
27
 
@@ -2,4 +2,4 @@
2
2
 
3
3
  # Add new mime types for use in respond_to blocks:
4
4
  # Mime::Type.register "text/richtext", :rtf
5
- Mime::Type.register_alias "application/xml", :googlesitemap
5
+ Mime::Type.register_alias 'application/xml', :googlesitemap
@@ -264,12 +264,10 @@ da:
264
264
  form:
265
265
  article_filter: Artikelfilter
266
266
  cancel: Anuller
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent link
270
269
  publish: Udgiv
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Gem
274
272
  status: Status
275
273
  title: Titel
@@ -763,7 +761,7 @@ da:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ de:
264
264
  form:
265
265
  article_filter: Textfilter für Artikel
266
266
  cancel: Abbrechen
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent link
270
269
  publish: Veröffentlichen
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Speichern
274
272
  status: Status
275
273
  title: Titel
@@ -763,7 +761,7 @@ de:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ en:
264
264
  form:
265
265
  article_filter: Article filter
266
266
  cancel: Cancel
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent link
270
269
  publish: Publish
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Save
274
272
  status: Status
275
273
  title: Title
@@ -763,7 +761,7 @@ en:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ es-MX:
264
264
  form:
265
265
  article_filter: Filtro de art&iacute;culo
266
266
  cancel: Cancelar
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent link
270
269
  publish: Publicar
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Guardar
274
272
  status: Estado
275
273
  title: T&iacute;tulo
@@ -763,7 +761,7 @@ es-MX:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Nombre del Blog
@@ -264,12 +264,10 @@ fr:
264
264
  form:
265
265
  article_filter: Mise en forme des billets
266
266
  cancel: Annuler
267
- offline: hors ligne
268
267
  online: En ligne
269
268
  permanent_link: Lien permanent
270
269
  publish: Publier
271
270
  publish_settings: Paramètres de publication
272
- published: publiée
273
271
  save: Sauver
274
272
  status: État
275
273
  title: Titre
@@ -763,7 +761,7 @@ fr:
763
761
  publisher: Rédacteur
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Nom du blog
@@ -264,12 +264,10 @@ he:
264
264
  form:
265
265
  article_filter: מסנן הכתבה
266
266
  cancel: בטל
267
- offline: offline
268
267
  online: מוצג
269
268
  permanent_link: Permanent link
270
269
  publish: פרסם
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: שמור
274
272
  status: מצב
275
273
  title: כותרת
@@ -763,7 +761,7 @@ he:
763
761
  publisher: כותב
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ it:
264
264
  form:
265
265
  article_filter: Filtra articolo
266
266
  cancel: Annulla
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent link
270
269
  publish: Pubblica
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Salva
274
272
  status: Stato
275
273
  title: Titolo
@@ -763,7 +761,7 @@ it:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ ja:
264
264
  form:
265
265
  article_filter: 記事フィルター
266
266
  cancel: キャンセル
267
- offline: offline
268
267
  online: オンライン
269
268
  permanent_link: Permanent link
270
269
  publish: 公開
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: 保存
274
272
  status: ステータス
275
273
  title: タイトル
@@ -763,7 +761,7 @@ ja:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ lt:
264
264
  form:
265
265
  article_filter: Straipsnių filtras
266
266
  cancel: Baigti
267
- offline: offline
268
267
  online: Pasiekiamas
269
268
  permanent_link: Permanent link
270
269
  publish: Publikuoti
271
270
  publish_settings: Publish settings
272
- published: published
273
271
  save: Saugoti
274
272
  status: Statusas
275
273
  title: Pavadinimas
@@ -763,7 +761,7 @@ lt:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name
@@ -264,12 +264,10 @@ nb-NO:
264
264
  form:
265
265
  article_filter: artikkelfilter
266
266
  cancel: Avbryt
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanent lenke
270
269
  publish: Publiser
271
270
  publish_settings: Publiseringsinnstillinger
272
- published: publisert
273
271
  save: Lagre
274
272
  status: Status
275
273
  title: Tittel
@@ -763,7 +761,7 @@ nb-NO:
763
761
  publisher: Blogg-publisering
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Bloggnavn
@@ -264,12 +264,10 @@ nl:
264
264
  form:
265
265
  article_filter: Artikel filter
266
266
  cancel: Terug
267
- offline: offline
268
267
  online: Online
269
268
  permanent_link: Permanente link
270
269
  publish: Publiceer
271
270
  publish_settings: Publicatie instellingen
272
- published: published
273
271
  save: Opslaan
274
272
  status: Status
275
273
  title: Titel
@@ -763,7 +761,7 @@ nl:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Naam van je blog
@@ -1,104 +1,104 @@
1
1
  ---
2
2
  pl:
3
3
  accounts:
4
- back_to_html: "&larr; Back to %{place}"
5
- back_to_login: Back to login
4
+ back_to_html: "&larr; Powrót do %{place}"
5
+ back_to_login: Wróć do strony logowania
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: Zachowaj wiadomość wysłaną na %{email}. Jeżeli zgubisz, możesz stracić możliwość zalogowania się!
9
9
  login: 'Login: %{login}'
10
- proceed_to: Proceed to %{link}
11
- success: You have successfully signed up.
12
- create_account: Create an account
13
- lost_my_password: I've lost my password
10
+ proceed_to: Przejdź do %{link}
11
+ success: Rejestracja przebiegła pomyślnie.
12
+ create_account: Utwórz konto
13
+ lost_my_password: Zapomniałem hasła
14
14
  activerecord:
15
15
  errors:
16
16
  models:
17
17
  article:
18
18
  attributes:
19
19
  title:
20
- blank: can't be blank
20
+ blank: nie może być puste
21
21
  template:
22
22
  body: ''
23
23
  header: ''
24
24
  admin:
25
25
  base:
26
- not_allowed: Error, you are not allowed to perform this action
27
- successfully_deleted: This %{name} was deleted successfully
26
+ not_allowed: Błąd, nie masz wystarczających uprawnień aby to zrobić
27
+ successfully_deleted: "%{name} zostało pomyślnie usunięte"
28
28
  content:
29
29
  access_granted:
30
- error: Error, you are not allowed to perform this action
30
+ error: Wystąpił błąd. Nie masz wystarczających uprawnień.
31
31
  article_list:
32
- no_articles: There are no articles yet. Why don't you start and create one?
32
+ no_articles: Brak artykułów. Czy to nie idealny moment na napisanie pierwszego?
33
33
  autosave:
34
- success: Article was successfully saved
34
+ success: Artykuł został poprawnie zapisany
35
35
  create:
36
- success: Article was successfully created
36
+ success: Artykuł został poprawnie dodany
37
37
  form:
38
38
  allow_comments: Zezwól na dodawanie komentarzy
39
39
  allow_comments_status:
40
- one: enabled
41
- zero: disabled
42
- allowed_comments_html: Comments are %{allow_comment}
43
- article_type: Article type
40
+ one: włączone
41
+ zero: wyłączone
42
+ allowed_comments_html: Komentarze %{allow_comment}
43
+ article_type: Typ artykułu
44
44
  cancel: Anuluj
45
- default: Default
46
- now: now
45
+ default: Domyślny
46
+ now: teraz
47
47
  ok: OK
48
48
  password: Hasło
49
49
  permalink: Permalink
50
- preview: Preview
51
- protected: Protected
52
- public: Public
50
+ preview: Podgląd
51
+ protected: Chronione
52
+ public: Publiczne
53
53
  publish: Publikuj
54
- publish_settings: Publish settings
54
+ publish_settings: Ustawienia publikacji
55
55
  published: Opublikowane
56
56
  save: Zapisz
57
- save_as_draft: Save as draft
57
+ save_as_draft: Zapisz jako szkic
58
58
  status: Stan
59
59
  tags: Tagi
60
- tags_explanation_html: Separate tags with commas. Use double quotes (&quot;) around multi-word tags, e.g. &quot;opera house&quot;.
60
+ tags_explanation_html: Oddziel tagi przecinkami. Użyj znaku (&quot;) aby dodać tagi składające się z wielu znaków, np. &quot;opera house&quot;.
61
61
  title: Tytuł
62
- type_your_post: Type your post
63
- visibility: Visibility
62
+ type_your_post: Dodaj treść
63
+ visibility: Widoczność
64
64
  index:
65
- all_articles: All articles
66
- drafts: Drafts
65
+ all_articles: Wszystkie artykuły
66
+ drafts: Szkice
67
67
  manage_articles: Zarządzaj artykułami
68
- new_article: New article
69
- publication_date: Publication date
70
- publication_pending: Publication pending
68
+ new_article: Nowy artykuł
69
+ publication_date: Data publikacji
70
+ publication_pending: Oczekuje na publikację
71
71
  published: Opublikowane
72
72
  search: Szukaj
73
- select_an_author: Select an author
73
+ select_an_author: Autor
74
74
  withdrawn: Withdrawn
75
75
  update:
76
- success: Article was successfully updated
76
+ success: Artykuł został poprawnie zaktualizowany
77
77
  dashboard:
78
78
  comment:
79
- by: By
79
+ by: Przez
80
80
  no_comments_yet: Brak komentarzy
81
81
  comments:
82
82
  latest_comments: Ostatnie komentarze
83
83
  drafts:
84
- no_drafts_yet: No drafts yet, why don't you start and write one
85
- your_drafts: Your drafts
84
+ no_drafts_yet: Brak szkiców.
85
+ your_drafts: Twoje szkice
86
86
  inbound:
87
- at: at
87
+ at: o
88
88
  at_an_unknown_date: at an unknown date
89
89
  inbound_links: Linki przychodzące
90
90
  made_a_link_to_you_on: " wykonał do ciebie łącze o treści "
91
91
  no_one_made_link_to_you_yet: Nikt jeszcze nie stworzył do ciebie łącza
92
92
  you_have_no_internet_connection: Nie masz połączenia internetowego
93
93
  index:
94
- welcome_back: Witamy spowrotem, %{user_name}!
94
+ welcome_back: Witamy z powrotem, %{user_name}!
95
95
  overview:
96
96
  change_your_blog_presentation: zmienić wygląd swojego bloga
97
97
  customization_explain_html: Możesz również trochę poprojektować wygląd, %{theme_link} lub %{sidebar_link}.
98
98
  dashboard_explain_html: This place gives you a quick overview of what happens on your Publify blog and what you can do. Maybe will you want to %{available_actions}
99
99
  enable_plugins: aktywować wtyczkę
100
- help_explain_html: If you need help, %{doc_link}.
101
- read_our_documentation: read our documentation
100
+ help_explain_html: Jeśli potrzebujesz pomocy, %{doc_link}.
101
+ read_our_documentation: przeczytaj dokumentację
102
102
  update_your_profile_or_change_your_password: zaktualizować profil lub zmienić hasło
103
103
  write_a_page: utworzyć stronę
104
104
  write_a_post: utworzyć wpis
@@ -108,9 +108,9 @@ pl:
108
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
109
  welcome:
110
110
  approved_count:
111
- one: 1 approved
112
- other: "%{count} approved"
113
- zero: no approved
111
+ one: 1 zaakceptowany
112
+ other: "%{count} zaakceptowane"
113
+ zero: brak zaakceptowanych
114
114
  articles_and_comments_count_since: "%{articles_count} artykułów i %{comments_count} komentarzy zostało opublikowanych od twojego ostaniego połączenia"
115
115
  articles_count:
116
116
  one: 1 artykuł
@@ -120,109 +120,109 @@ pl:
120
120
  one: 1 komentarz
121
121
  other: "%{count} komentarze"
122
122
  zero: brak komentarzy
123
- content: Content
123
+ content: Treść
124
124
  drafts_count:
125
- one: 1 draft
126
- other: "%{count} drafts"
127
- zero: no draft
125
+ one: 1 szkic
126
+ other: "%{count} szkice"
127
+ zero: brak szkiców
128
128
  feedback: Komentarze
129
129
  notes_count:
130
- one: 1 note
131
- other: "%{count} notes"
132
- zero: no note
130
+ one: 1 notatka
131
+ other: "%{count} notatki"
132
+ zero: brak notatek
133
133
  pages_count:
134
- one: 1 page
135
- other: "%{count} pages"
136
- zero: no page
134
+ one: 1 strona
135
+ other: "%{count} strony"
136
+ zero: brak stron
137
137
  running_publify: Działasz na Publify %{version}
138
138
  spam_count:
139
139
  one: 1 spam
140
140
  other: "%{count} spam"
141
- zero: no spam
142
- today: Today
141
+ zero: brak spamu
142
+ today: Dziś
143
143
  unconfirmed_count:
144
- one: 1 unconfirmed
145
- other: "%{count} unconfirmed"
146
- zero: no unconfirmed
144
+ one: 1 niepotwierdzony
145
+ other: "%{count} niepotwierdzone"
146
+ zero: brak niepotwierdzonych
147
147
  your_articles_count:
148
- one: 1 article writen by you
149
- other: "%{count} articles writen by you"
150
- zero: no article writen by you
148
+ one: 1 artykuł napisany przez ciebie
149
+ other: "%{count} artykuły napisane przez ciebie"
150
+ zero: brak artykułów napisanych przez ciebie
151
151
  feedback:
152
152
  article:
153
153
  action_or_other_html: "%{first_action} lub %{second_action}"
154
- add_a_comment: Add a comment
154
+ add_a_comment: Dodaj komentarz
155
155
  author: Autor
156
156
  cancel: Anuluj
157
157
  comments_for_html: Komentarze do %{title}
158
158
  email: Email
159
- no_feedback: There are no feedback yet. Why don't you start and create one?
159
+ no_feedback: Brak komentarzy.
160
160
  save: Zapisz
161
- select_all: Select all
161
+ select_all: Wybierz wszystko
162
162
  url: Url
163
- your_comment: Your comment
163
+ your_comment: Twój komentarz
164
164
  bulkops:
165
- error: Not implemented
165
+ error: Niezaimplementowane
166
166
  success_classification: Confirmed classification of %{count} item(s)
167
- success_deleted: Deleted %{count} item(s)
168
- success_deleted_spam: All spam have been deleted
167
+ success_deleted: Usunięto %{count} element(ów)
168
+ success_deleted_spam: Cały spam został usunięty
169
169
  success_mark_as_ham:
170
- one: Marked 1 item as Ham
171
- other: Marked %{count} items as Ham
172
- zero: No item selected to mark as Ham
170
+ one: Oznacz 1 element jako dopuszczony do publikacji
171
+ other: Oznaczono %{count} elementów jako dopuszczone do publikacji
172
+ zero: Brak elementów oznaczonych jako dopusczone do publikacji
173
173
  success_mark_as_spam:
174
- one: Marked 1 item as Spam
175
- other: Marked %{count} items as Spam
176
- zero: No item selected to mark as Spam
174
+ one: Oznaczono 1 element jako spam
175
+ other: Oznaczono %{count} elementów jako spam
176
+ zero: Brak elementów oznaczonych jako spam
177
177
  button:
178
- delete_all_spam: Delete all spam
179
- delete_checked_items: Delete Checked Items
180
- mark_checked_items_as_ham: Mark Checked Items as Ham
181
- mark_checked_items_as_spam: Mark Checked Items as Spam
178
+ delete_all_spam: Usuń cały spam
179
+ delete_checked_items: Usuń zaznaczone elementy
180
+ mark_checked_items_as_ham: Oznacz elementy jako dopuszczone do publikacji
181
+ mark_checked_items_as_spam: Oznacz elementy jako spam
182
182
  create:
183
- success: Comment was successfully created.
183
+ success: Komentarz został pomyślnie utworzony.
184
184
  destroy:
185
- error: Not found
186
- success: Deleted
185
+ error: Nie znaleziono
186
+ success: Usunięty
187
187
  edit:
188
188
  action_or_other_html: "%{first_action} lub %{second_action}"
189
- author: Author
190
- cancel: Cancel
191
- comments_for_html: Comments for %{article_link}
192
- edit_a_comment: Edit a comment
189
+ author: Autor
190
+ cancel: Anuluj
191
+ comments_for_html: Komentarze do %{article_link}
192
+ edit_a_comment: Edytuj komentarz
193
193
  email: Email
194
194
  save: Zapisz
195
195
  url: Url
196
- your_comment: Your comment
196
+ your_comment: Twój komentarz
197
197
  ham:
198
- by: by
199
- created_on: 'on'
198
+ by: przez
199
+ created_on: ''
200
200
  index:
201
- all: All
201
+ all: Wszystko
202
202
  feedback: Komentarze
203
- ham: Ham
204
- no_feedback: There is no feedback yet. Why don't you create some?
205
- presumed_ham: Presumed ham
206
- presumed_spam: Presumed spam
207
- select_all: Select all
203
+ ham: Dopuszczone do publikacji
204
+ no_feedback: Brak komentarzy.
205
+ presumed_ham: Prawdopodobny nie-spam
206
+ presumed_spam: Prawdopodobny spam
207
+ select_all: Zaznacz wszystko
208
208
  spam: Spam
209
- unapproved_comments: Unapproved comments
209
+ unapproved_comments: Niezaakceptowane komentarze
210
210
  spam:
211
- by: by
211
+ by: przez
212
212
  cancel: Anuluj
213
- created_on: 'on'
214
- this_comment_by_was_flagged_as_spam_html: This comment by %{author} was flagged as spam, %{cancel_link}?
213
+ created_on: ''
214
+ this_comment_by_was_flagged_as_spam_html: Komentarz %{author} został oznaczony jako spam, %{cancel_link}?
215
215
  state:
216
- ham: Ham
217
- just_marked_as_ham: Just Marked As Ham
218
- just_marked_as_spam: Just Marked As Spam
219
- just_presumed_ham: Just Presumed Ham
220
- presumed_ham: Ham?
216
+ ham: Dopuszczony do publikacji
217
+ just_marked_as_ham: Oznaczono jako dopuszczony do publikacji
218
+ just_marked_as_spam: Oznaczono jako spam
219
+ just_presumed_ham: Oznaczono jako prawdopodobny nie-spam
220
+ presumed_ham: Nie-spam?
221
221
  presumed_spam: Spam?
222
222
  spam: Spam
223
- unclassified: Unclassified
223
+ unclassified: Niesklasyfikowane
224
224
  update:
225
- success: Comment was successfully updated.
225
+ success: Komentarz został poprawnie zaktualizowany.
226
226
  migrations:
227
227
  show:
228
228
  current_database_version: Aktualna wersja bazy danych
@@ -230,103 +230,101 @@ pl:
230
230
  information: Informacja
231
231
  may_take_a_moment: może zająć dłuższą chwilę
232
232
  migration_pending:
233
- one: There is one migration pending.
234
- other: There are %{count} migrations pending.
235
- migrations: Migrations
233
+ one: Jedna oczekująca migracja.
234
+ other: "%{count} oczekujących migracji."
235
+ migrations: Migracje
236
236
  needed_migrations: Potrzebne migracje
237
237
  update_database_now: Aktualizuj bazę danych
238
238
  you_are_up_to_date: Wszystko jest aktualne!
239
239
  notes:
240
240
  form:
241
241
  cancel: Anuluj
242
- compose_new_note: Compose new note
243
- in_reply_to: In reply to
244
- no_notes: There are no notes yet. Why don't you start and create one?
245
- now: Now
246
- or: or
247
- permanent_link: Permanent link
242
+ compose_new_note: Utwórz nową notatkę
243
+ in_reply_to: W odpowiedzi do
244
+ no_notes: Brak notatek
245
+ now: Teraz
246
+ or: lub
247
+ permanent_link: Link
248
248
  posse_to_twitter: POSSE to twitter
249
249
  publish: Publikuj
250
250
  publish_at: Opublikowane dnia
251
- publish_settings: Publish settings
252
- tweet_id_like: Tweet id like 123456
251
+ publish_settings: Ustawienia publikacji
252
+ tweet_id_like: Tweet id, np. 123456
253
253
  header:
254
- notes: Notes
254
+ notes: Notatki
255
255
  show:
256
256
  action_or_other_html: "%{first_action} lub %{second_action}"
257
- are_you_sure: Are you sure you want to delete this note
257
+ are_you_sure: Czy na pewno chcesz usunąć notatkę?
258
258
  cancel: Anuluj
259
259
  delete: Usuń
260
- destroy_confirmation: Destroy confirmation
260
+ destroy_confirmation: Potwierdzenie usunięcia
261
261
  pages:
262
262
  edit:
263
- success: Page has been updated
263
+ success: Strona została zaktualizowana
264
264
  form:
265
265
  article_filter: Filtr artykułów
266
266
  cancel: Anuluj
267
- offline: offline
268
267
  online: Online
269
- permanent_link: Permanent link
268
+ permanent_link: Link
270
269
  publish: Publikuj
271
- publish_settings: Publish settings
272
- published: published
270
+ publish_settings: Ustawienia publikacji
273
271
  save: Zapisz
274
272
  status: Stan
275
273
  title: Tytuł
276
- type_your_post: Type your post
274
+ type_your_post: Wpisz treść postu
277
275
  index:
278
- author: Author
276
+ author: Autor
279
277
  manage_pages: Zarządzaj stronami
280
- new_page: New Page
278
+ new_page: Nowa strona
281
279
  title: Tytuł
282
280
  new:
283
- success: New page created
281
+ success: Nowa strona została utworzona
284
282
  pages:
285
- no_pages: There are no pages yet. Why don't you create one?
283
+ no_pages: Nie utworzono jeszcze żadnych stron.
286
284
  post_types:
287
285
  index_and_form:
288
286
  cancel: Anuluj
289
- default: Default
287
+ default: Domyślne
290
288
  description: Opis
291
- 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
289
+ explain: Nazwa szablonu to nazwa pliku, którego Publify będzie starało się znaleźć podczas wyświetlania artykułu danego typu. Powinien on się znajdować w views/articles/nazwa_szablonu.html.erb
292
290
  name: Nazwa
293
- or: or
294
- post_types: Post Types
295
- publify_default_post_type: Publify default post type
291
+ or: lub
292
+ post_types: Typy postów
293
+ publify_default_post_type: Domyślny rodzaj postu Publify
296
294
  save: Zapisz
297
- template_name: Template name
295
+ template_name: Nazwa szablonu
298
296
  profiles:
299
297
  index:
300
- success: User details updated
301
- your_profile: Your profile
298
+ success: Dane użytkownika zostały zaktualizowane
299
+ your_profile: Twój profil
302
300
  redirects:
303
301
  destroy:
304
- success: Redirection was successfully deleted.
302
+ success: Przekierowanie zostało usunięte.
305
303
  index_and_form:
306
304
  cancel: Anuluj
307
305
  from: Z
308
- leave_empty_to_shorten_a_link: Leave empty to shorten a link
309
- no_redirects: There are no redirects yet. Why don't you start and create one?
310
- or: or
311
- redirects: Redirects
306
+ leave_empty_to_shorten_a_link: Zostaw puste, aby skrócić link
307
+ no_redirects: Brak przekierowań.
308
+ or: lub
309
+ redirects: Przekierowania
312
310
  save: Zapisz
313
311
  to: To
314
312
  resources:
315
313
  destroy:
316
- notice: File has been deleted
314
+ notice: Plik został usunięty.
317
315
  index:
318
- are_you_sure: Are you sure?
316
+ are_you_sure: Jesteś pewien?
319
317
  content_type: Typ treści
320
318
  date: Data
321
- delete: Delete
319
+ delete: Usuń
322
320
  file_size: Rozmiar pliku
323
321
  filename: Nazwa pliku
324
- media_library: Media Library
325
- medium_size: Medium size
326
- no_resources: There are no resources yet. Why don't you start and create one?
327
- original_size: Original size
322
+ media_library: Biblioteka multimediów
323
+ medium_size: Rozmiar
324
+ no_resources: Brak multimediów
325
+ original_size: Oryginalny rozmiar
328
326
  right_click_for_link: Kliknij PPM by uzyskać łącze
329
- thumbnail: Thumbnail
327
+ thumbnail: Miniaturka
330
328
  upload: Wyślij
331
329
  upload_a_file_to_your_site: Wyślij plik na swój blog
332
330
  upload:
@@ -334,62 +332,62 @@ pl:
334
332
  warning: Nie można załadować
335
333
  seo:
336
334
  general:
337
- canonical_url: Canonical Url
338
- custom_tracking_code: Custom tracking code
339
- do_not_index_tags: Do not index tags
335
+ canonical_url: Linki kanoniczne
336
+ custom_tracking_code: Niestandardowy kod śledzenia
337
+ do_not_index_tags: Nie indeksuj tagów
340
338
  dofollow: Dofollow
341
- explain: Here you can add anything you want to appear in your application header, such as analytics service tracking code.
342
- 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/
343
- explain_moderate_feedback: You may want to moderate feedback when turning this on
344
- 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)'
345
- 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
339
+ explain: Tutaj możesz dodać dowolny kod, który ma się pojawić w nagłówku strony, np. kod do analizy ruchu na stronie.
340
+ explain_humans_txt: 'Jest to plik TXT, który zawiera informacje o ludziach, którzy współtworyli daną stronę internetową. Więcej informacji: http://humanstxt.org/'
341
+ explain_moderate_feedback: Jeżeli to włączysz, być może będziesz chcieć moderować komentarze
342
+ explain_rss_description: 'Możesz używać następujących tagów: %author% (autor), %blog_url% (adres tego bloga), %blog_name% (nazwa tego bloga) and %permalink_url% (link do artykułu, który chcesz chronić)'
343
+ explain_tag_index_html: Zaznaczenie tej opcji spowoduje dodanie <code>noindex, follow</code> do każdej strony tagu, co spowoduje usunięcie z wyników wyszukiwania i uniknięcie duplikacji treści
346
344
  general_settings: Ustawienia ogólne
347
345
  google: Google
348
346
  google_analytics: Google Analytics
349
347
  google_webmaster_tools_validation_link: Google Webmaster Tools validation link
350
348
  human: Human
351
349
  humans_txt: Human
352
- indexing: Indexing
353
- meta_description: Meta description
354
- meta_keywords: Meta keywords
355
- read_more_about_html: Read more about %{link}
350
+ indexing: Indeksowanie
351
+ meta_description: Opis
352
+ meta_keywords: Słowa kluczowe
353
+ read_more_about_html: 'Czytaj więcej: %{link}'
356
354
  robots_txt: Robots.txt
357
- rss_description_message: RSS description message
358
- this_will_display: This will display at the bottom of each post in the RSS feed
359
- use_canonical_url: Use canonical URL
360
- use_dofollow_in_comments: Use dofollow in comments
361
- use_meta_keywords: Use meta keywords
362
- use_rss_description: Use RSS description
355
+ rss_description_message: Opis RSS
356
+ this_will_display: Opis wyświetli się na dole każdego postu w RSS
357
+ use_canonical_url: Użyj linków kanonicznych
358
+ use_dofollow_in_comments: Używaj linków z atrybutem 'dofollow' w komentarzach
359
+ use_meta_keywords: Używaj słów kluczowych
360
+ use_rss_description: Używaj opisu RSS
363
361
  permalinks:
364
- custom: Custom
365
- date_and_title: Date and title
366
- 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.
367
- help_on_permalink_settings: Help on permalink settings
368
- month_and_title: Month and title
369
- permalink_format: Permalink format
370
- sample: Here are some examples to get you started.
371
- title_only: Title only
372
- you_can_custom_your_url_structure: 'You can custom your URL structure using the following tags:'
373
- your_article_day: your article day of publication.
374
- your_article_month: your article month of publication.
375
- your_article_slug_html: your article slug. <strong>Using this slug is mandatory</strong>.
376
- your_article_year: your article year of publication.
362
+ custom: Niestandardowe
363
+ date_and_title: Data i tytuł
364
+ explain: Publify oferuje możliwośc tworzenie niestandardowej struktury adresu URL dla Twoich linków i archiwów. To pozwala poprawić estetykę, użuteczność i poprawność Twoich linków.
365
+ help_on_permalink_settings: Pomoc
366
+ month_and_title: Miesiąc i tytuł
367
+ permalink_format: Format permalinku
368
+ sample: Na stronie zawarte przykłady, które powinny pomóc Ci w ustawieniu odpowiedniego formatu.
369
+ title_only: Tylko tytuł
370
+ you_can_custom_your_url_structure: 'Możesz zmodyfikować strukturę adresów URL używając następujących tagów:'
371
+ your_article_day: dzień publikacji artykułu.
372
+ your_article_month: miesiąc publikacji artykułu.
373
+ your_article_slug_html: tytuł artykułu (przyjazny dla przeglądarki). <strong>Użycie tego tagu jest obowiązkowe</strong>.
374
+ your_article_year: rok publikacji artykułu.
377
375
  show:
378
376
  cancel: Anuluj
379
- global_settings: Global settings
380
- or: or
381
- permalinks: Permalinks
382
- title_settings: Title settings
383
- update_settings: Update settings
377
+ global_settings: Ustawienia globalne
378
+ or: lub
379
+ permalinks: Permalinki
380
+ title_settings: Ustawienia tytułów
381
+ update_settings: Zaktualizuj ustawienia
384
382
  titles:
385
383
  articles: Artykułów
386
- author_page: Author page
387
- dated_archives: Dated archives
388
- description_template: Description template
389
- help_on_title_settings: Help on title settings
390
- home: Home
384
+ author_page: Strona autora
385
+ dated_archives: Archiwa (po datach)
386
+ description_template: Szablon opisu
387
+ help_on_title_settings: Pomoc
388
+ home: Strona główna
391
389
  pages: Strony
392
- paginated_archives: Paginated archives
390
+ paginated_archives: Archiwa (podzielone na strony)
393
391
  replaced_by_the_archive_date: Replaced by the archive date
394
392
  replaced_by_the_content_body: Replaced by the content body
395
393
  replaced_with_the_article_categories: Replaced with the article categories (comma separated)
@@ -763,7 +761,7 @@ pl:
763
761
  publisher: Blog publisher
764
762
  setup:
765
763
  article:
766
- body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!'
764
+ body: Welcome to Publify. This is your first article. Edit or delete it, then start blogging!
767
765
  title: Hello World!
768
766
  index:
769
767
  blog_name: Blog name