From ab4fdc07b6bc81c4cf3f8d03116995ce5002dbab Mon Sep 17 00:00:00 2001 From: Tomek Romik Date: Fri, 12 Sep 2014 20:46:59 +0200 Subject: [PATCH 1/3] Added polish guide --- docs/guide-pl/README.md | 199 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 docs/guide-pl/README.md diff --git a/docs/guide-pl/README.md b/docs/guide-pl/README.md new file mode 100644 index 0000000000..7766b00001 --- /dev/null +++ b/docs/guide-pl/README.md @@ -0,0 +1,199 @@ +Przewodnik po Yii 2.0 +=============================== + +Ten poradnik udostępniony jest na [Warunkach dokumentacji Yii](http://www.yiiframework.com/doc/terms/). + +Wszelkie prawa zastrzeżone. + +2014 (c) Yii Software LLC. + + +Wstęp +------------ + +* [O Yii](intro-yii.md) +* [Aktualizacja z wersji 1.1](intro-upgrade-from-v1.md) + + +Pierwsze kroki +--------------- + +* [Instalacja Yii](start-installation.md) +* [Uruchamianie aplikacji](start-workflow.md) +* [Witaj świecie](start-hello.md) +* [Praca z formularzami](start-forms.md) +* [Praca z bazami danych](start-databases.md) +* [Generowanie kodu za pomocą Gii](start-gii.md) +* [Dalsze kroki](start-looking-ahead.md) + + +Struktura aplikacji +--------------------- + +* [Przegląd](structure-overview.md) +* [Entry Scripts](structure-entry-scripts.md) +* [Aplikacje](structure-applications.md) +* [Komponenty aplikacji](structure-application-components.md) +* [Kontrolery](structure-controllers.md) +* [Modele](structure-models.md) +* [Widoki](structure-views.md) +* [Moduły](structure-modules.md) +* [Filtry](structure-filters.md) +* [Widżety](structure-widgets.md) +* [Paczki zasobów(Assets)](structure-assets.md) +* [Rozszerzenia](structure-extensions.md) + + +Handling Requests +----------------- + +* **TBD** [Bootstrapping](runtime-bootstrapping.md) +* **TBD** [Routing](runtime-routing.md) +* **TBD** [Żądania](runtime-requests.md) +* **TBD** [Odpowiedzi](runtime-responses.md) +* **TBD** [Sesje i ciastka](runtime-sessions-cookies.md) +* [Parsowanie i generowanie adresów URL](runtime-url-handling.md) +* [Obsługa błędów](runtime-handling-errors.md) +* [Zapis logów](runtime-logging.md) + + +Kluczowe koncepcje +------------ + +* [Komponenty](concept-components.md) +* [Właściwości](concept-properties.md) +* [Zdarzenia](concept-events.md) +* [Zachowania](concept-behaviors.md) +* [Konfiguracje](concept-configurations.md) +* [Aliasy](concept-aliases.md) +* [Autoładowanie klas](concept-autoloading.md) +* [Lokator usług](concept-service-locator.md) +* [Kontener wstrzykiwania zależoności(DI Container)](concept-di-container.md) + + +Praca z bazami danych +---------------------- + +* [Obiekt dostępu bazy danych(DAO)](db-dao.md): Connecting to a database, basic queries, transactions, and schema manipulation +* [Budowniczy zapytań](db-query-builder.md): Querying the database using a simple abstraction layer +* [Rekord aktywny](db-active-record.md): The Active Record ORM, retrieving and manipulating records, and defining relations +* [Migracje](db-migrations.md): Apply version control to your databases in a team development environment +* **TBD** [Sphinx](db-sphinx.md) +* **TBD** [Redis](db-redis.md) +* **TBD** [MongoDB](db-mongodb.md) +* **TBD** [ElasticSearch](db-elastic-search.md) + + +Otrzymywanie danych od użytkowników +----------------------- + +* [Tworzenie formularzy](input-forms.md) +* [Walidacja danych wejściowych](input-validation.md) +* **TBD** [Wysyłanie plików](input-file-upload.md) +* **TBD** [Otrzymywanie danych z wielu modeli](input-multiple-models.md) + + +Wyświetlanie danych +--------------- + +* **TBD** [Formatowanie danych](output-formatting.md) +* **TBD** [Stronicowanie](output-pagination.md) +* **TBD** [Sortowanie](output-sorting.md) +* [Dostawcy danych](output-data-providers.md) +* [Widżety danych](output-data-widgets.md) +* [Working with Client Scripts](output-client-scripts.md) +* [Tematy](output-theming.md) + + +Bezpieczeństwo +-------- + +* [Uwierzytelnianie](security-authentication.md) +* [Autoryzacja](security-authorization.md) +* [Praca z hasłami](security-passwords.md) +* **TBD** [Auth Clients](security-auth-clients.md) +* **TBD** [Najlepsze praktyki](security-best-practices.md) + + +Cache'owanie +------- + +* [Przegląd](caching-overview.md) +* [Cache'owanie danych](caching-data.md) +* [Cache'owanie fragmentów](caching-fragment.md) +* [Cache'owanie stron](caching-page.md) +* [Cache'owanie HTTP](caching-http.md) + + +Webserwisy z wykorzystaniem REST +-------------------- + +* [Szybki start](rest-quick-start.md) +* [Zasoby](rest-resources.md) +* [Kontrolery](rest-controllers.md) +* [Routing](rest-routing.md) +* [Formatowanie odpowiedzi](rest-response-formatting.md) +* [Uwierzytelnianie](rest-authentication.md) +* [Limit użycia](rest-rate-limiting.md) +* [Wersjonowanie](rest-versioning.md) +* [Obsługa błędów](rest-error-handling.md) + + +Narzędzia wspomagające tworzenie aplikacji +----------------- + +* [Pasek debugowania i debuger](tool-debugger.md) +* [Generowanie kody przy użyciu Gii](tool-gii.md) +* **TBD** [Generowanie dokumentacji API](tool-api-doc.md) + + +Testowanie +------- + +* [Przegląd](test-overview.md) +* [Ustawienia środowiska testowego](test-endvironment-setup.md) +* [Testy jednostkowe](test-unit.md) +* [Testy funkcjonalnościowe](test-functional.md) +* [Testy akceptacyjne](test-acceptance.md) +* [Fixtures](test-fixtures.md) + + +Tematy specjalne +-------------- + +* [Szablon zaawansowanej aplikacji](tutorial-advanced-app.md) +* [Tworzenie aplikacji od podstaw](tutorial-start-from-scratch.md) +* [Komendy konsolowe](tutorial-console.md) +* [Podstawowe walidatory](tutorial-core-validators.md) +* [Internacjonalizacja](tutorial-i18n.md) +* [Mailing](tutorial-mailing.md) +* [Poprawianie wydajności](tutorial-performance-tuning.md) +* **TBD** [Shared Hosting Environment](tutorial-shared-hosting.md) +* [Silniki szablonów](tutorial-template-engines.md) +* [Praca z kodem zewnętrznym](tutorial-yii-integration.md) + + +Widżety +------- + +* GridView: link to demo page +* ListView: link to demo page +* DetailView: link to demo page +* ActiveForm: link to demo page +* Pjax: link to demo page +* Menu: link to demo page +* LinkPager: link to demo page +* LinkSorter: link to demo page +* [Bootstrap Widgets](widget-bootstrap.md) +* [Jquery UI Widgets](widget-jui.md) + + +Klasy pomocnicze +------- + +* [Przegląd](helper-overview.md) +* **TBD** [ArrayHelper](helper-array.md) +* **TBD** [Html](helper-html.md) +* **TBD** [Url](helper-url.md) +* **TBD** [Security](helper-security.md) + From 28341f741270850e0d84bb5ed71ee3c08fe033fa Mon Sep 17 00:00:00 2001 From: Skysplit Date: Wed, 24 Sep 2014 18:53:20 +0200 Subject: [PATCH 2/3] Update readme.md [ci skip] --- docs/guide-pl/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/guide-pl/README.md b/docs/guide-pl/README.md index 7766b00001..50f3ade77c 100644 --- a/docs/guide-pl/README.md +++ b/docs/guide-pl/README.md @@ -40,7 +40,7 @@ Struktura aplikacji * [Moduły](structure-modules.md) * [Filtry](structure-filters.md) * [Widżety](structure-widgets.md) -* [Paczki zasobów(Assets)](structure-assets.md) +* [Zasoby(Assets)](structure-assets.md) * [Rozszerzenia](structure-extensions.md) @@ -49,9 +49,9 @@ Handling Requests * **TBD** [Bootstrapping](runtime-bootstrapping.md) * **TBD** [Routing](runtime-routing.md) -* **TBD** [Żądania](runtime-requests.md) -* **TBD** [Odpowiedzi](runtime-responses.md) -* **TBD** [Sesje i ciastka](runtime-sessions-cookies.md) +* **TBD** [Request](runtime-requests.md) +* **TBD** [Response](runtime-responses.md) +* **TBD** [Sesje i ciastka(cookies)](runtime-sessions-cookies.md) * [Parsowanie i generowanie adresów URL](runtime-url-handling.md) * [Obsługa błędów](runtime-handling-errors.md) * [Zapis logów](runtime-logging.md) @@ -62,8 +62,8 @@ Kluczowe koncepcje * [Komponenty](concept-components.md) * [Właściwości](concept-properties.md) -* [Zdarzenia](concept-events.md) -* [Zachowania](concept-behaviors.md) +* [Zdarzenia(Events)](concept-events.md) +* [Zachowania(Behaviors)](concept-behaviors.md) * [Konfiguracje](concept-configurations.md) * [Aliasy](concept-aliases.md) * [Autoładowanie klas](concept-autoloading.md) @@ -74,10 +74,10 @@ Kluczowe koncepcje Praca z bazami danych ---------------------- -* [Obiekt dostępu bazy danych(DAO)](db-dao.md): Connecting to a database, basic queries, transactions, and schema manipulation -* [Budowniczy zapytań](db-query-builder.md): Querying the database using a simple abstraction layer -* [Rekord aktywny](db-active-record.md): The Active Record ORM, retrieving and manipulating records, and defining relations -* [Migracje](db-migrations.md): Apply version control to your databases in a team development environment +* [Obiekt dostępu bazy danych(DAO)](db-dao.md): Łączenie z bazą, podstawowe zapytania, transakcje i manipulacja schematem. +* [Budowniczy zapytań](db-query-builder.md): Zapytania do bazy danych z użyciem warstwy abstrakcyjnej. Querying the database using a simple abstraction layer +* [Rekord aktywny](db-active-record.md): ORM Rekordu aktywnego, otrzymywanie i manipulacja rekordami oraz definiowanie relacji. +* [Migracje](db-migrations.md): Użycie systemu kontroli wersji na twoich bazach danych podczas tworzenia aplikacji w grupie. * **TBD** [Sphinx](db-sphinx.md) * **TBD** [Redis](db-redis.md) * **TBD** [MongoDB](db-mongodb.md) From 7a0e004dce6a7abe75f910c25f72f9284a364b6e Mon Sep 17 00:00:00 2001 From: Skysplit Date: Wed, 24 Sep 2014 19:02:27 +0200 Subject: [PATCH 3/3] Update polish messages [ci skip] --- docs/guide-pl/README.md | 2 +- framework/messages/pl/yii.php | 71 ++++++++++++++++++----------------- 2 files changed, 37 insertions(+), 36 deletions(-) diff --git a/docs/guide-pl/README.md b/docs/guide-pl/README.md index 50f3ade77c..9b2242428b 100644 --- a/docs/guide-pl/README.md +++ b/docs/guide-pl/README.md @@ -75,7 +75,7 @@ Praca z bazami danych ---------------------- * [Obiekt dostępu bazy danych(DAO)](db-dao.md): Łączenie z bazą, podstawowe zapytania, transakcje i manipulacja schematem. -* [Budowniczy zapytań](db-query-builder.md): Zapytania do bazy danych z użyciem warstwy abstrakcyjnej. Querying the database using a simple abstraction layer +* [Budowniczy zapytań](db-query-builder.md): Zapytania do bazy danych z użyciem warstwy abstrakcyjnej. * [Rekord aktywny](db-active-record.md): ORM Rekordu aktywnego, otrzymywanie i manipulacja rekordami oraz definiowanie relacji. * [Migracje](db-migrations.md): Użycie systemu kontroli wersji na twoich bazach danych podczas tworzenia aplikacji w grupie. * **TBD** [Sphinx](db-sphinx.md) diff --git a/framework/messages/pl/yii.php b/framework/messages/pl/yii.php index 2d572d1788..32e0946c78 100644 --- a/framework/messages/pl/yii.php +++ b/framework/messages/pl/yii.php @@ -17,41 +17,7 @@ * NOTE: this file must be saved in UTF-8 encoding. */ return [ - 'The requested view "{name}" was not found.' => 'Żądany widok "{name}" nie został odnaleziony.', - 'in {delta, plural, =1{a day} other{# days}}' => 'za {delta, plural, =1{jeden dzień} other{# dni}}', - 'in {delta, plural, =1{a minute} other{# minutes}}' => 'za {delta, plural, =1{minutę} few{# minuty} many{# minut} other{# minuty}}', - 'in {delta, plural, =1{a month} other{# months}}' => 'za {delta, plural, =1{miesiąc} few{# miesiące} manu{# miesięcy} other{# miesiąca}}', - 'in {delta, plural, =1{a second} other{# seconds}}' => 'za {delta, plural, =1{sekundę} few{# sekundy} many{# sekund} other{# sekundy}}', - 'in {delta, plural, =1{a year} other{# years}}' => 'za {delta, plural, =1{rok} few{# lata} many{# lat} other{# dni}}', - 'in {delta, plural, =1{an hour} other{# hours}}' => 'za {delta, plural, =1{godzinę} few{# godziny} many{# godzin} other{# godziny}}', - '{delta, plural, =1{a day} other{# days}} ago' => '{delta, plural, =1{jeden dzień} other{# dni} other{# dnia}} temu', - '{delta, plural, =1{a minute} other{# minutes}} ago' => '{delta, plural, =1{minutę} few{# minuty} many{# minut} other{# minuty}} temu', - '{delta, plural, =1{a month} other{# months}} ago' => '{delta, plural, =1{miesiąc} few{# miesiące} many{# miesięcy} other{# miesiąca}} temu', - '{delta, plural, =1{a second} other{# seconds}} ago' => '{delta, plural, =1{sekundę} few{# sekundy} many{# sekund} other{# sekundy}} temu', - '{delta, plural, =1{a year} other{# years}} ago' => '{delta, plural, =1{rok} few{# lata} many{# lat} other{# roku}} temu', - '{delta, plural, =1{an hour} other{# hours}} ago' => '{delta, plural, =1{godzinę} few{# godziny} many{# godzin} other{# godziny}} temu', - '{nFormatted} B' => '{nFormatted} B', - '{nFormatted} GB' => '{nFormatted} GB', - '{nFormatted} GiB' => '{nFormatted} GiB', - '{nFormatted} KB' => '{nFormatted} KB', - '{nFormatted} KiB' => '{nFormatted} KiB', - '{nFormatted} MB' => '{nFormatted} MB', - '{nFormatted} MiB' => '{nFormatted} MiB', - '{nFormatted} PB' => '{nFormatted} PB', - '{nFormatted} PiB' => '{nFormatted} PiB', - '{nFormatted} TB' => '{nFormatted} TB', - '{nFormatted} TiB' => '{nFormatted} TiB', - '{nFormatted} {n, plural, =1{byte} other{bytes}}' => '{nFormatted} {n, plural, =1{bajt} few{bajty} many{bajtów} other{bajta}}', - '{nFormatted} {n, plural, =1{gibibyte} other{gibibytes}}' => '{nFormatted} {n, plural, =1{gibibajt} few{gigabajty} many{gibiajtów} other{gibiajta}}', - '{nFormatted} {n, plural, =1{gigabyte} other{gigabytes}}' => '{nFormatted} {n, plural, =1{gigabajt} few{gigabajty} many{gigabajtów} other{gigabaja}}', - '{nFormatted} {n, plural, =1{kibibyte} other{kibibytes}}' => '{nFormatted} {n, plural, =1{kibibajt} few{kibibajty} many{kibibajtów} other{kibibajtów}}', - '{nFormatted} {n, plural, =1{kilobyte} other{kilobytes}}' => '{nFormatted} {n, plural, =1{kilobajt} few{kilobajty} many{kilobajtów} other{kilobajtów}}', - '{nFormatted} {n, plural, =1{mebibyte} other{mebibytes}}' => '{nFormatted} {n, plural, =1{mebibajt} few{mebibajty} many{mebibajtów} other{mebibajta}}', - '{nFormatted} {n, plural, =1{megabyte} other{megabytes}}' => '{nFormatted} {n, plural, =1{megabajt} few{megabajty} many{megabajtów} other{megabajta}}', - '{nFormatted} {n, plural, =1{pebibyte} other{pebibytes}}' => '{nFormatted} {n, plural, =1{pebibajt} few{pebibajty} many{pebibajtów} other{pebibajta}}', - '{nFormatted} {n, plural, =1{petabyte} other{petabytes}}' => '{nFormatted} {n, plural, =1{petabajt} few{petabajty} many{petabajtów} other{petabajta}}', - '{nFormatted} {n, plural, =1{tebibyte} other{tebibytes}}' => '{nFormatted} {n, plural, =1{tebibajt} few{tebibajty} many{tebibajtów} other{tebibajta}}', - '{nFormatted} {n, plural, =1{terabyte} other{terabytes}}' => '{nFormatted} {n, plural, =1{terabajt} few{terabajty} many{terabajtów} other{terabajta}}', + 'just now' => 'przed chwilą', '(not set)' => '(brak wartości)', 'An internal server error occurred.' => 'Wystąpił wewnętrzny błąd serwera.', 'Are you sure you want to delete this item?' => 'Czy na pewno usunąć ten element?', @@ -81,6 +47,7 @@ return [ 'The image "{file}" is too large. The width cannot be larger than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'Obraz "{file}" jest zbyt duży. Szerokość nie może być większa niż {limit, number} {limit, plural, one{piksela} few{pikseli} many{pikseli} other{piksela}}.', 'The image "{file}" is too small. The height cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'Obraz "{file}" jest za mały. Wysokość nie może być mniejsza niż {limit, number} {limit, plural, one{piksela} few{pikseli} many{pikseli} other{piksela}}.', 'The image "{file}" is too small. The width cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'Obraz "{file}" jest za mały. Szerokość nie może być mniejsza niż {limit, number} {limit, plural, one{piksela} few{pikseli} many{pikseli} other{piksela}}.', + 'The requested view "{name}" was not found.' => 'Żądany widok "{name}" nie został odnaleziony.', 'The verification code is incorrect.' => 'Kod weryfikacyjny jest nieprawidłowy.', 'Total {count, number} {count, plural, one{item} other{items}}.' => 'Razem {count, number} {count, plural, one{rekord} few{rekordy} many{rekordów} other{rekordu}}.', 'Unable to verify your data submission.' => 'Nie udało się zweryfikować przesłanych danych.', @@ -91,6 +58,12 @@ return [ 'Yes' => 'Tak', 'You are not allowed to perform this action.' => 'Brak upoważnienia do wykonania tej czynności.', 'You can upload at most {limit, number} {limit, plural, one{file} other{files}}.' => 'Możliwe wgranie najwyżej {limit, number} {limit, plural, one{pliku} few{plików} many{plików} other{pliku}}.', + 'in {delta, plural, =1{a day} other{# days}}' => 'za {delta, plural, =1{jeden dzień} other{# dni}}', + 'in {delta, plural, =1{a minute} other{# minutes}}' => 'za {delta, plural, =1{minutę} few{# minuty} many{# minut} other{# minuty}}', + 'in {delta, plural, =1{a month} other{# months}}' => 'za {delta, plural, =1{miesiąc} few{# miesiące} manu{# miesięcy} other{# miesiąca}}', + 'in {delta, plural, =1{a second} other{# seconds}}' => 'za {delta, plural, =1{sekundę} few{# sekundy} many{# sekund} other{# sekundy}}', + 'in {delta, plural, =1{a year} other{# years}}' => 'za {delta, plural, =1{rok} few{# lata} many{# lat} other{# dni}}', + 'in {delta, plural, =1{an hour} other{# hours}}' => 'za {delta, plural, =1{godzinę} few{# godziny} many{# godzin} other{# godziny}}', 'the input value' => 'wartość wejściowa', '{attribute} "{value}" has already been taken.' => '{attribute} "{value}" jest już w użyciu.', '{attribute} cannot be blank.' => '{attribute} nie może pozostać bez wartości.', @@ -113,4 +86,32 @@ return [ '{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute} powinien zawierać co najmniej {min, number} {min, plural, one{znak} few{znaki} many{znaków} other{znaku}}.', '{attribute} should contain at most {max, number} {max, plural, one{character} other{characters}}.' => '{attribute} powinien zawierać nie więcej niż {max, number} {min, plural, one{znak} few{znaki} many{znaków} other{znaku}}.', '{attribute} should contain {length, number} {length, plural, one{character} other{characters}}.' => '{attribute} powinien zawierać dokładnie {length, number} {min, plural, one{znak} few{znaki} many{znaków} other{znaku}}.', + '{delta, plural, =1{a day} other{# days}} ago' => '{delta, plural, =1{jeden dzień} other{# dni} other{# dnia}} temu', + '{delta, plural, =1{a minute} other{# minutes}} ago' => '{delta, plural, =1{minutę} few{# minuty} many{# minut} other{# minuty}} temu', + '{delta, plural, =1{a month} other{# months}} ago' => '{delta, plural, =1{miesiąc} few{# miesiące} many{# miesięcy} other{# miesiąca}} temu', + '{delta, plural, =1{a second} other{# seconds}} ago' => '{delta, plural, =1{sekundę} few{# sekundy} many{# sekund} other{# sekundy}} temu', + '{delta, plural, =1{a year} other{# years}} ago' => '{delta, plural, =1{rok} few{# lata} many{# lat} other{# roku}} temu', + '{delta, plural, =1{an hour} other{# hours}} ago' => '{delta, plural, =1{godzinę} few{# godziny} many{# godzin} other{# godziny}} temu', + '{nFormatted} B' => '{nFormatted} B', + '{nFormatted} GB' => '{nFormatted} GB', + '{nFormatted} GiB' => '{nFormatted} GiB', + '{nFormatted} KB' => '{nFormatted} KB', + '{nFormatted} KiB' => '{nFormatted} KiB', + '{nFormatted} MB' => '{nFormatted} MB', + '{nFormatted} MiB' => '{nFormatted} MiB', + '{nFormatted} PB' => '{nFormatted} PB', + '{nFormatted} PiB' => '{nFormatted} PiB', + '{nFormatted} TB' => '{nFormatted} TB', + '{nFormatted} TiB' => '{nFormatted} TiB', + '{nFormatted} {n, plural, =1{byte} other{bytes}}' => '{nFormatted} {n, plural, =1{bajt} few{bajty} many{bajtów} other{bajta}}', + '{nFormatted} {n, plural, =1{gibibyte} other{gibibytes}}' => '{nFormatted} {n, plural, =1{gibibajt} few{gigabajty} many{gibiajtów} other{gibiajta}}', + '{nFormatted} {n, plural, =1{gigabyte} other{gigabytes}}' => '{nFormatted} {n, plural, =1{gigabajt} few{gigabajty} many{gigabajtów} other{gigabaja}}', + '{nFormatted} {n, plural, =1{kibibyte} other{kibibytes}}' => '{nFormatted} {n, plural, =1{kibibajt} few{kibibajty} many{kibibajtów} other{kibibajtów}}', + '{nFormatted} {n, plural, =1{kilobyte} other{kilobytes}}' => '{nFormatted} {n, plural, =1{kilobajt} few{kilobajty} many{kilobajtów} other{kilobajtów}}', + '{nFormatted} {n, plural, =1{mebibyte} other{mebibytes}}' => '{nFormatted} {n, plural, =1{mebibajt} few{mebibajty} many{mebibajtów} other{mebibajta}}', + '{nFormatted} {n, plural, =1{megabyte} other{megabytes}}' => '{nFormatted} {n, plural, =1{megabajt} few{megabajty} many{megabajtów} other{megabajta}}', + '{nFormatted} {n, plural, =1{pebibyte} other{pebibytes}}' => '{nFormatted} {n, plural, =1{pebibajt} few{pebibajty} many{pebibajtów} other{pebibajta}}', + '{nFormatted} {n, plural, =1{petabyte} other{petabytes}}' => '{nFormatted} {n, plural, =1{petabajt} few{petabajty} many{petabajtów} other{petabajta}}', + '{nFormatted} {n, plural, =1{tebibyte} other{tebibytes}}' => '{nFormatted} {n, plural, =1{tebibajt} few{tebibajty} many{tebibajtów} other{tebibajta}}', + '{nFormatted} {n, plural, =1{terabyte} other{terabytes}}' => '{nFormatted} {n, plural, =1{terabajt} few{terabajty} many{terabajtów} other{terabajta}}', ];