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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +5 -0
- data/app/controllers/admin/base_controller.rb +0 -11
- data/app/controllers/admin/content_controller.rb +7 -18
- data/app/controllers/admin/dashboard_controller.rb +1 -2
- data/app/controllers/admin/feedback_controller.rb +1 -0
- data/app/controllers/admin/notes_controller.rb +1 -1
- data/app/controllers/admin/pages_controller.rb +6 -19
- data/app/controllers/admin/profiles_controller.rb +11 -3
- data/app/controllers/admin/seo_controller.rb +1 -3
- data/app/controllers/admin/sidebar_controller.rb +0 -2
- data/app/controllers/admin/users_controller.rb +2 -2
- data/app/controllers/comments_controller.rb +6 -10
- data/app/controllers/setup_controller.rb +1 -2
- data/app/helpers/admin/base_helper.rb +1 -2
- data/app/helpers/base_helper.rb +2 -19
- data/app/helpers/xml_helper.rb +1 -1
- data/app/models/article.rb +4 -12
- data/app/models/blog.rb +9 -17
- data/app/models/content.rb +6 -16
- data/app/models/feedback.rb +2 -1
- data/app/models/meta_sidebar.rb +0 -2
- data/app/models/note.rb +2 -3
- data/app/models/page.rb +1 -2
- data/app/models/ping.rb +1 -1
- data/app/models/post_type.rb +1 -3
- data/app/models/redirect.rb +3 -2
- data/app/models/redirection.rb +1 -1
- data/app/models/resource.rb +1 -1
- data/app/models/sidebar.rb +1 -1
- data/app/models/static_sidebar.rb +0 -2
- data/app/models/tag.rb +1 -1
- data/app/models/text_filter.rb +1 -1
- data/app/models/trigger.rb +2 -2
- data/app/models/user.rb +1 -1
- data/app/services/title_builder.rb +7 -11
- data/app/uploaders/resource_uploader.rb +1 -3
- data/app/views/admin/content/_form.html.erb +1 -1
- data/app/views/admin/content/autosave.js.erb +2 -2
- data/app/views/admin/pages/_form.html.erb +6 -6
- data/app/views/admin/seo/_general.html.erb +1 -1
- data/app/views/admin/seo/_permalinks.html.erb +2 -2
- data/app/views/admin/users/_form.html.erb +2 -2
- data/app/views/articles/view_page.html.erb +1 -1
- data/app/views/shared/_atom_header.atom.builder +1 -3
- data/app/views/shared/_atom_item_article.atom.builder +9 -13
- data/app/views/shared/_google_analytics.html.erb +8 -0
- data/app/views/shared/_page_header.html.erb +1 -1
- data/app/views/shared/_rss_item_article.rss.builder +2 -3
- data/config/initializers/mime_types.rb +1 -1
- data/config/locales/da.yml +1 -3
- data/config/locales/de.yml +1 -3
- data/config/locales/en.yml +1 -3
- data/config/locales/es-MX.yml +1 -3
- data/config/locales/fr.yml +1 -3
- data/config/locales/he.yml +1 -3
- data/config/locales/it.yml +1 -3
- data/config/locales/ja.yml +1 -3
- data/config/locales/lt.yml +1 -3
- data/config/locales/nb-NO.yml +1 -3
- data/config/locales/nl.yml +1 -3
- data/config/locales/pl.yml +193 -195
- data/config/locales/pt-BR.yml +1 -3
- data/config/locales/ro.yml +1 -3
- data/config/locales/ru.yml +1 -3
- data/config/locales/zh-CN.yml +1 -3
- data/config/locales/zh-TW.yml +1 -3
- data/config/routes.rb +1 -1
- data/db/migrate/113_initial_schema.rb +0 -2
- data/db/migrate/114_fixes_buggy_articles_and_notes.rb +1 -1
- data/db/migrate/115_drops_categories_for_tags.rb +3 -4
- data/db/migrate/20150807134129_simplify_redirect_relations.rb +1 -3
- data/db/migrate/20150808052637_add_blog_ids.rb +5 -1
- data/db/seeds.rb +1 -3
- data/lib/format.rb +1 -11
- data/lib/publify_core/version.rb +1 -1
- data/lib/spam_protection.rb +3 -4
- data/lib/text_filter_plugin.rb +3 -4
- data/lib/theme.rb +1 -3
- data/lib/transforms.rb +0 -2
- 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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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.
|
|
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.
|
|
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
|
|
data/config/locales/da.yml
CHANGED
|
@@ -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
|
data/config/locales/de.yml
CHANGED
|
@@ -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
|
data/config/locales/en.yml
CHANGED
|
@@ -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
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -264,12 +264,10 @@ es-MX:
|
|
|
264
264
|
form:
|
|
265
265
|
article_filter: Filtro de artí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í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
|
data/config/locales/fr.yml
CHANGED
|
@@ -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
|
data/config/locales/he.yml
CHANGED
|
@@ -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
|
data/config/locales/it.yml
CHANGED
|
@@ -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
|
data/config/locales/ja.yml
CHANGED
|
@@ -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
|
data/config/locales/lt.yml
CHANGED
|
@@ -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
|
data/config/locales/nb-NO.yml
CHANGED
|
@@ -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
|
data/config/locales/nl.yml
CHANGED
|
@@ -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
|
data/config/locales/pl.yml
CHANGED
|
@@ -1,104 +1,104 @@
|
|
|
1
1
|
---
|
|
2
2
|
pl:
|
|
3
3
|
accounts:
|
|
4
|
-
back_to_html: "←
|
|
5
|
-
back_to_login:
|
|
4
|
+
back_to_html: "← 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:
|
|
8
|
+
dont_lose_the_mail_sent: Zachowaj wiadomość wysłaną na %{email}. Jeżeli ją zgubisz, możesz stracić możliwość zalogowania się!
|
|
9
9
|
login: 'Login: %{login}'
|
|
10
|
-
proceed_to:
|
|
11
|
-
success:
|
|
12
|
-
create_account:
|
|
13
|
-
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:
|
|
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:
|
|
27
|
-
successfully_deleted:
|
|
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:
|
|
30
|
+
error: Wystąpił błąd. Nie masz wystarczających uprawnień.
|
|
31
31
|
article_list:
|
|
32
|
-
no_articles:
|
|
32
|
+
no_articles: Brak artykułów. Czy to nie idealny moment na napisanie pierwszego?
|
|
33
33
|
autosave:
|
|
34
|
-
success:
|
|
34
|
+
success: Artykuł został poprawnie zapisany
|
|
35
35
|
create:
|
|
36
|
-
success:
|
|
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:
|
|
41
|
-
zero:
|
|
42
|
-
allowed_comments_html:
|
|
43
|
-
article_type:
|
|
40
|
+
one: włączone
|
|
41
|
+
zero: wyłączone
|
|
42
|
+
allowed_comments_html: Komentarze są %{allow_comment}
|
|
43
|
+
article_type: Typ artykułu
|
|
44
44
|
cancel: Anuluj
|
|
45
|
-
default:
|
|
46
|
-
now:
|
|
45
|
+
default: Domyślny
|
|
46
|
+
now: teraz
|
|
47
47
|
ok: OK
|
|
48
48
|
password: Hasło
|
|
49
49
|
permalink: Permalink
|
|
50
|
-
preview:
|
|
51
|
-
protected:
|
|
52
|
-
public:
|
|
50
|
+
preview: Podgląd
|
|
51
|
+
protected: Chronione
|
|
52
|
+
public: Publiczne
|
|
53
53
|
publish: Publikuj
|
|
54
|
-
publish_settings:
|
|
54
|
+
publish_settings: Ustawienia publikacji
|
|
55
55
|
published: Opublikowane
|
|
56
56
|
save: Zapisz
|
|
57
|
-
save_as_draft:
|
|
57
|
+
save_as_draft: Zapisz jako szkic
|
|
58
58
|
status: Stan
|
|
59
59
|
tags: Tagi
|
|
60
|
-
tags_explanation_html:
|
|
60
|
+
tags_explanation_html: Oddziel tagi przecinkami. Użyj znaku (") aby dodać tagi składające się z wielu znaków, np. "opera house".
|
|
61
61
|
title: Tytuł
|
|
62
|
-
type_your_post:
|
|
63
|
-
visibility:
|
|
62
|
+
type_your_post: Dodaj treść
|
|
63
|
+
visibility: Widoczność
|
|
64
64
|
index:
|
|
65
|
-
all_articles:
|
|
66
|
-
drafts:
|
|
65
|
+
all_articles: Wszystkie artykuły
|
|
66
|
+
drafts: Szkice
|
|
67
67
|
manage_articles: Zarządzaj artykułami
|
|
68
|
-
new_article:
|
|
69
|
-
publication_date:
|
|
70
|
-
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:
|
|
73
|
+
select_an_author: Autor
|
|
74
74
|
withdrawn: Withdrawn
|
|
75
75
|
update:
|
|
76
|
-
success:
|
|
76
|
+
success: Artykuł został poprawnie zaktualizowany
|
|
77
77
|
dashboard:
|
|
78
78
|
comment:
|
|
79
|
-
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:
|
|
85
|
-
your_drafts:
|
|
84
|
+
no_drafts_yet: Brak szkiców.
|
|
85
|
+
your_drafts: Twoje szkice
|
|
86
86
|
inbound:
|
|
87
|
-
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
|
|
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:
|
|
101
|
-
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
|
|
112
|
-
other: "%{count}
|
|
113
|
-
zero:
|
|
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:
|
|
123
|
+
content: Treść
|
|
124
124
|
drafts_count:
|
|
125
|
-
one: 1
|
|
126
|
-
other: "%{count}
|
|
127
|
-
zero:
|
|
125
|
+
one: 1 szkic
|
|
126
|
+
other: "%{count} szkice"
|
|
127
|
+
zero: brak szkiców
|
|
128
128
|
feedback: Komentarze
|
|
129
129
|
notes_count:
|
|
130
|
-
one: 1
|
|
131
|
-
other: "%{count}
|
|
132
|
-
zero:
|
|
130
|
+
one: 1 notatka
|
|
131
|
+
other: "%{count} notatki"
|
|
132
|
+
zero: brak notatek
|
|
133
133
|
pages_count:
|
|
134
|
-
one: 1
|
|
135
|
-
other: "%{count}
|
|
136
|
-
zero:
|
|
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:
|
|
142
|
-
today:
|
|
141
|
+
zero: brak spamu
|
|
142
|
+
today: Dziś
|
|
143
143
|
unconfirmed_count:
|
|
144
|
-
one: 1
|
|
145
|
-
other: "%{count}
|
|
146
|
-
zero:
|
|
144
|
+
one: 1 niepotwierdzony
|
|
145
|
+
other: "%{count} niepotwierdzone"
|
|
146
|
+
zero: brak niepotwierdzonych
|
|
147
147
|
your_articles_count:
|
|
148
|
-
one: 1
|
|
149
|
-
other: "%{count}
|
|
150
|
-
zero:
|
|
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:
|
|
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:
|
|
159
|
+
no_feedback: Brak komentarzy.
|
|
160
160
|
save: Zapisz
|
|
161
|
-
select_all:
|
|
161
|
+
select_all: Wybierz wszystko
|
|
162
162
|
url: Url
|
|
163
|
-
your_comment:
|
|
163
|
+
your_comment: Twój komentarz
|
|
164
164
|
bulkops:
|
|
165
|
-
error:
|
|
165
|
+
error: Niezaimplementowane
|
|
166
166
|
success_classification: Confirmed classification of %{count} item(s)
|
|
167
|
-
success_deleted:
|
|
168
|
-
success_deleted_spam:
|
|
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:
|
|
171
|
-
other:
|
|
172
|
-
zero:
|
|
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:
|
|
175
|
-
other:
|
|
176
|
-
zero:
|
|
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:
|
|
179
|
-
delete_checked_items:
|
|
180
|
-
mark_checked_items_as_ham:
|
|
181
|
-
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:
|
|
183
|
+
success: Komentarz został pomyślnie utworzony.
|
|
184
184
|
destroy:
|
|
185
|
-
error:
|
|
186
|
-
success:
|
|
185
|
+
error: Nie znaleziono
|
|
186
|
+
success: Usunięty
|
|
187
187
|
edit:
|
|
188
188
|
action_or_other_html: "%{first_action} lub %{second_action}"
|
|
189
|
-
author:
|
|
190
|
-
cancel:
|
|
191
|
-
comments_for_html:
|
|
192
|
-
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:
|
|
196
|
+
your_comment: Twój komentarz
|
|
197
197
|
ham:
|
|
198
|
-
by:
|
|
199
|
-
created_on: '
|
|
198
|
+
by: przez
|
|
199
|
+
created_on: ''
|
|
200
200
|
index:
|
|
201
|
-
all:
|
|
201
|
+
all: Wszystko
|
|
202
202
|
feedback: Komentarze
|
|
203
|
-
ham:
|
|
204
|
-
no_feedback:
|
|
205
|
-
presumed_ham:
|
|
206
|
-
presumed_spam:
|
|
207
|
-
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:
|
|
209
|
+
unapproved_comments: Niezaakceptowane komentarze
|
|
210
210
|
spam:
|
|
211
|
-
by:
|
|
211
|
+
by: przez
|
|
212
212
|
cancel: Anuluj
|
|
213
|
-
created_on: '
|
|
214
|
-
this_comment_by_was_flagged_as_spam_html:
|
|
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:
|
|
217
|
-
just_marked_as_ham:
|
|
218
|
-
just_marked_as_spam:
|
|
219
|
-
just_presumed_ham:
|
|
220
|
-
presumed_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:
|
|
223
|
+
unclassified: Niesklasyfikowane
|
|
224
224
|
update:
|
|
225
|
-
success:
|
|
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:
|
|
234
|
-
other:
|
|
235
|
-
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:
|
|
243
|
-
in_reply_to:
|
|
244
|
-
no_notes:
|
|
245
|
-
now:
|
|
246
|
-
or:
|
|
247
|
-
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:
|
|
252
|
-
tweet_id_like: Tweet id
|
|
251
|
+
publish_settings: Ustawienia publikacji
|
|
252
|
+
tweet_id_like: Tweet id, np. 123456
|
|
253
253
|
header:
|
|
254
|
-
notes:
|
|
254
|
+
notes: Notatki
|
|
255
255
|
show:
|
|
256
256
|
action_or_other_html: "%{first_action} lub %{second_action}"
|
|
257
|
-
are_you_sure:
|
|
257
|
+
are_you_sure: Czy na pewno chcesz usunąć tę notatkę?
|
|
258
258
|
cancel: Anuluj
|
|
259
259
|
delete: Usuń
|
|
260
|
-
destroy_confirmation:
|
|
260
|
+
destroy_confirmation: Potwierdzenie usunięcia
|
|
261
261
|
pages:
|
|
262
262
|
edit:
|
|
263
|
-
success:
|
|
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:
|
|
268
|
+
permanent_link: Link
|
|
270
269
|
publish: Publikuj
|
|
271
|
-
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:
|
|
274
|
+
type_your_post: Wpisz treść postu
|
|
277
275
|
index:
|
|
278
|
-
author:
|
|
276
|
+
author: Autor
|
|
279
277
|
manage_pages: Zarządzaj stronami
|
|
280
|
-
new_page:
|
|
278
|
+
new_page: Nowa strona
|
|
281
279
|
title: Tytuł
|
|
282
280
|
new:
|
|
283
|
-
success:
|
|
281
|
+
success: Nowa strona została utworzona
|
|
284
282
|
pages:
|
|
285
|
-
no_pages:
|
|
283
|
+
no_pages: Nie utworzono jeszcze żadnych stron.
|
|
286
284
|
post_types:
|
|
287
285
|
index_and_form:
|
|
288
286
|
cancel: Anuluj
|
|
289
|
-
default:
|
|
287
|
+
default: Domyślne
|
|
290
288
|
description: Opis
|
|
291
|
-
explain:
|
|
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:
|
|
294
|
-
post_types:
|
|
295
|
-
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:
|
|
295
|
+
template_name: Nazwa szablonu
|
|
298
296
|
profiles:
|
|
299
297
|
index:
|
|
300
|
-
success:
|
|
301
|
-
your_profile:
|
|
298
|
+
success: Dane użytkownika zostały zaktualizowane
|
|
299
|
+
your_profile: Twój profil
|
|
302
300
|
redirects:
|
|
303
301
|
destroy:
|
|
304
|
-
success:
|
|
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:
|
|
309
|
-
no_redirects:
|
|
310
|
-
or:
|
|
311
|
-
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:
|
|
314
|
+
notice: Plik został usunięty.
|
|
317
315
|
index:
|
|
318
|
-
are_you_sure:
|
|
316
|
+
are_you_sure: Jesteś pewien?
|
|
319
317
|
content_type: Typ treści
|
|
320
318
|
date: Data
|
|
321
|
-
delete:
|
|
319
|
+
delete: Usuń
|
|
322
320
|
file_size: Rozmiar pliku
|
|
323
321
|
filename: Nazwa pliku
|
|
324
|
-
media_library:
|
|
325
|
-
medium_size:
|
|
326
|
-
no_resources:
|
|
327
|
-
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:
|
|
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:
|
|
338
|
-
custom_tracking_code:
|
|
339
|
-
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:
|
|
342
|
-
explain_humans_txt:
|
|
343
|
-
explain_moderate_feedback:
|
|
344
|
-
explain_rss_description: '
|
|
345
|
-
explain_tag_index_html:
|
|
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:
|
|
353
|
-
meta_description:
|
|
354
|
-
meta_keywords:
|
|
355
|
-
read_more_about_html:
|
|
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
|
|
358
|
-
this_will_display:
|
|
359
|
-
use_canonical_url:
|
|
360
|
-
use_dofollow_in_comments:
|
|
361
|
-
use_meta_keywords:
|
|
362
|
-
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:
|
|
365
|
-
date_and_title:
|
|
366
|
-
explain: Publify
|
|
367
|
-
help_on_permalink_settings:
|
|
368
|
-
month_and_title:
|
|
369
|
-
permalink_format:
|
|
370
|
-
sample:
|
|
371
|
-
title_only:
|
|
372
|
-
you_can_custom_your_url_structure: '
|
|
373
|
-
your_article_day:
|
|
374
|
-
your_article_month:
|
|
375
|
-
your_article_slug_html:
|
|
376
|
-
your_article_year:
|
|
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 są 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:
|
|
380
|
-
or:
|
|
381
|
-
permalinks:
|
|
382
|
-
title_settings:
|
|
383
|
-
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:
|
|
387
|
-
dated_archives:
|
|
388
|
-
description_template:
|
|
389
|
-
help_on_title_settings:
|
|
390
|
-
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:
|
|
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
|