Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish translation #483

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .gitattributes
100644 → 100755
Empty file.
Empty file modified .github/PULL_REQUEST_TEMPLATE.md
100644 → 100755
Empty file.
Empty file modified .github/stale.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .htaccess
100644 → 100755
Empty file.
Empty file modified .phpcs.xml
100644 → 100755
Empty file.
Empty file modified .phpdoc.xml
100644 → 100755
Empty file.
Empty file modified .travis.yml
100644 → 100755
Empty file.
Empty file modified CHANGELOG.md
100644 → 100755
Empty file.
Empty file modified CONTRIBUTING.md
100644 → 100755
Empty file.
Empty file modified LICENSE.md
100644 → 100755
Empty file.
148 changes: 78 additions & 70 deletions README.md
100644 → 100755

Large diffs are not rendered by default.

Empty file modified assets/.gitignore
100644 → 100755
Empty file.
Empty file modified composer.json
100644 → 100755
Empty file.
Empty file modified config/.gitignore
100644 → 100755
Empty file.
62 changes: 32 additions & 30 deletions config/config.yml.template
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,50 +1,52 @@
##
# Basic
# Podstawowe ustawienia
#
site_title: Pico # The title of your website
base_url: ~ # Pico will try to guess its base URL, if this fails, override it here
# Example: http://example.com/pico/
rewrite_url: ~ # A boolean (true or false) indicating whether URL rewriting is forced
timezone: UTC # Your PHP installation might require you to manually specify a timezone
site_title: Pico # Tytuł Twojej strony.
base_url: ~ # Pico spróbuje samemu odczytać adres swojej instalacji. Jeśli powstanie błąd, możesz go tutaj wpisać.
# Przykład: https://example.com/pico
rewrite_url: ~ # Opcja true/false, opcjonalnie wskazująca, czy wymuszać użycie mod_rewrite
timezone: UTC # PHP może wymagać deklaracji strefy czasowej

##
# Theme
# Szablon
#
theme: default # The name of your custom theme
theme_url: ~ # Pico will try to guess the URL to the themes dir of your installation
# If this fails, override it here. Example: http://example.com/pico/themes/
theme: default # Nazwa Twojego szablonu (taka sama, jak folderu, w którym się znajduje)
theme_url: ~ # Pico spróbuje samemu odczytać adres, pod którym znajdują się pliki szablonu
# W razie błędu możesz go tutaj wpisać. Przykład: http://example.com/themes/default
theme_config:
widescreen: false # Default theme: Use more horicontal space (i.e. make the site container wider)
widescreen: false # Dla domyślnego szablonu: TRUE/FALSE - wyświetlaj stronę na całej szerokosci ekranu.
twig_config:
cache: false # Enable Twig template caching by specifying a path to a writable directory
cache: false # Włącz funkcję cache dla Twiga (TRUE/FALSE)
autoescape: false # Let Twig escape variables by default
debug: false # Enable Twig's debugging mode
debug: false # Tryb debugowania Twiga (TRUE/FALSE)

##
# Content
# Kontent na stronie
#
date_format: %D %T # Pico's default date format
# See http://php.net/manual/en/function.strftime.php for more info
pages_order_by_meta: author # Sort pages by meta value "author" (set "pages_order_by" to "meta")
pages_order_by: alpha # Change how Pico sorts pages ("alpha" for alphabetical order, "date", or "meta")
pages_order: asc # Sort pages in ascending ("asc") or descending ("desc") order
content_dir: content/ # The path to Pico's content directory
content_ext: .md # The file extension of your Markdown files
date_format: %D %T # Domyślny format wyświetlania dat (zobacz http://php.net/manual/en/function.strftime.php)
pages_order_by_meta: author # Według jakiego metatagu Pico ma sortować strony? (działa tylko, gdy pages_order_by = "alpha").
pages_order_by: alpha # Według jakiego kryterium Pico ma sortować strony w menu? ("alpha" dla kolejności alfabetycznej, "date" - data, lub "meta" - metatagi, zobacz wyżej)
pages_order: asc # "asc" - sortuj strony rosnąco, "desc" - malejąco
content_dir: content/ # Ścieżka do katalogu z plikami Markdowna do renderowania stron (domyślnie "content").
content_ext: .md # Rozszerzenie plików Markdowna (zwykle zmiana tego ustawienia jest niezalecana)
content_config:
extra: true # Use the Parsedown Extra parser to support extended markup
# See https://michelf.ca/projects/php-markdown/extra/ for more info
breaks: false # A boolean indicating whether breaks in the markup should be reflected in the
# parsed contents of the page
extra: true # Włącz możliwość używania Parsedown Extra - ulepszonej składni Markdowna
# https://michelf.ca/projects/php-markdown/extra/
breaks: false # TRUE/FALSE - przenoś entery i tabulatory z plików Markdowna do gotowej strony podczas procesu renderowania
#
escape: false # Escape HTML markup in your content files; don't confuse this with some sort of
# safe mode, enabling this doesn't allow you to process untrusted user input!
auto_urls: true # Automatically link URLs found in your markup
auto_urls: true # Automatycznie zamieniaj adresy URL znalezione w plikach Markdowna na odnośniki na stronie

##
# Plugins
# Wtyczki
#
DummyPlugin.enabled: false # Force the plugin "DummyPlugin" to be disabled
DummyPlugin.enabled: false # Wymuś włączenie/wyłączenie wtyczki "DummyPlugin" w CMSie

##
# Custom
# Własne ustawienia
#
my_custom_setting: Hello World! # You can access custom settings in themes using {{ config.my_custom_setting }}
moje_wlasne_ustawienie: Pico jest super
my_own_setting_in_English: Pico is great # Tutaj masz przykłady własnych ustawień. Są one dostępne w Twigu jako
# {{ config.moje_wlasne_ustawienie }} / {{ config.my_own_setting_in_English }}.
# Oczywiście możesz dodawać własne wyrażenia :)
8 changes: 4 additions & 4 deletions content-sample/404.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
Title: Error 404
Title: Błąd 404
Robots: noindex,nofollow
---

Error 404
=========
Błąd 404
========

Woops. Looks like this page doesn't exist.
Łoooo. Wygląda na to, że takiej strony nie ma. Spróbuj jeszcze raz, może to tylko literówka w adresie.
6 changes: 3 additions & 3 deletions content-sample/_meta.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
social:
- title: Visit us on GitHub
- title: Repozytorium Pico na GitHubie
url: https://github.com/picocms/Pico
icon: octocat
- title: Join us on Freenode IRC Webchat
- title: Jesteśmy dostępni na kanale IRC #picocms (Freenode)
url: https://webchat.freenode.net/?channels=%23picocms
icon: chat
- title: Help us by creating/collecting bounties and pledging to fundraisers
- title: Wspomóż nas w serwisie Bountysource, tworząc i/albo rozwiązując zadania
url: https://www.bountysource.com/teams/picocms
icon: dollar
---
Loading