diff --git a/packages/admin/resources/lang/pl/actions.php b/packages/admin/resources/lang/pl/actions.php new file mode 100644 index 000000000..b936f2ba4 --- /dev/null +++ b/packages/admin/resources/lang/pl/actions.php @@ -0,0 +1,46 @@ + [ + 'create_root' => [ + 'label' => 'Utwórz główną kolekcję', + ], + 'create_child' => [ + 'label' => 'Utwórz podkolekcję', + ], + 'move' => [ + 'label' => 'Przenieś kolekcję', + ], + 'delete' => [ + 'label' => 'Usuń', + ], + ], + 'orders' => [ + 'update_status' => [ + 'label' => 'Zaktualizuj status', + 'wizard' => [ + 'step_one' => [ + 'label' => 'Status', + ], + 'step_two' => [ + 'label' => 'Wybierz mailer', + 'no_mailers' => 'Brak mailerów do wyboru.' + ], + 'step_three' => [ + 'label' => 'Podejrzyj i zapisz', + 'no_mailers' => 'Do podglądu nie wybrano żadnych mailerów.' + ], + ], + 'notification' => [ + 'label' => 'Status zamówienia został zaktualizowany', + ], + 'billing_email' => [ + 'label' => 'Email do faktury', + ], + 'shipping_email' => [ + 'label' => 'Email do wysyłki', + ], + ], + + ], +]; diff --git a/packages/admin/resources/lang/pl/activity.php b/packages/admin/resources/lang/pl/activity.php new file mode 100644 index 000000000..159e816ff --- /dev/null +++ b/packages/admin/resources/lang/pl/activity.php @@ -0,0 +1,29 @@ + 'Aktywność', + + 'plural_label' => 'Aktywności', + + 'table' => [ + 'subject' => 'Temat', + 'description' => 'Opis', + 'log' => 'Log', + 'logged_at' => 'Zalogowano o', + 'event' => 'Zdarzenie', + 'logged_from' => 'Zalogowano od', + 'logged_until' => 'Zalogowano do', + ], + + 'form' => [ + 'causer_type' => 'Typ sprawcy', + 'causer_id' => 'Identyfikator sprawcy', + 'subject_type' => 'Typ tematu', + 'subject_id' => 'Identyfikator tematu', + 'description' => 'Opis', + 'attributes' => 'Atrybuty', + 'old' => 'Stare', + ], + +]; diff --git a/packages/admin/resources/lang/pl/address.php b/packages/admin/resources/lang/pl/address.php new file mode 100644 index 000000000..01e43c50f --- /dev/null +++ b/packages/admin/resources/lang/pl/address.php @@ -0,0 +1,93 @@ + 'Adres', + + 'plural_label' => 'Adresy', + + 'table' => [ + 'title' => [ + 'label' => 'Tytuł', + ], + 'first_name' => [ + 'label' => 'Imię', + ], + 'last_name' => [ + 'label' => 'Nazwisko', + ], + 'company_name' => [ + 'label' => 'Nazwa Firmy', + ], + 'line_one' => [ + 'label' => 'Adres', + ], + 'line_two' => [ + 'label' => 'Adres cd.', + ], + 'line_three' => [ + 'label' => 'Adres cd.', + ], + 'city' => [ + 'label' => 'Miasto', + ], + 'country_id' => [ + 'label' => 'Kraj', + ], + 'state' => [ + 'label' => 'Województwo', + ], + 'postcode' => [ + 'label' => 'Kod pocztowy', + ], + 'contact_email' => [ + 'label' => 'Email', + ], + 'contact_phone' => [ + 'label' => 'Telefon', + ], + ], + + 'form' => [ + 'title' => [ + 'label' => 'Tytuł', + ], + 'first_name' => [ + 'label' => 'Imię', + ], + 'last_name' => [ + 'label' => 'Nazwisko', + ], + 'company_name' => [ + 'label' => 'Nazwa Firmy', + ], + 'line_one' => [ + 'label' => 'Adres', + ], + 'line_two' => [ + 'label' => 'Adres cd.', + ], + 'line_three' => [ + 'label' => 'Adres cd.', + ], + 'city' => [ + 'label' => 'Miasto', + ], + 'country_id' => [ + 'label' => 'Kraj', + ], + 'state' => [ + 'label' => 'Województwo', + ], + 'postcode' => [ + 'label' => 'Kod pocztowy', + ], + 'contact_email' => [ + 'label' => 'Email', + ], + 'contact_phone' => [ + 'label' => 'Telefon', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/attribute.php b/packages/admin/resources/lang/pl/attribute.php new file mode 100644 index 000000000..c178f427f --- /dev/null +++ b/packages/admin/resources/lang/pl/attribute.php @@ -0,0 +1,54 @@ + 'Atrybut', + + 'plural_label' => 'Atrybuty', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'description' => [ + 'label' => 'Opis', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'type' => [ + 'label' => 'Typ', + ], + ], + + 'form' => [ + 'attributable_type' => [ + 'label' => 'Typ', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'description' => [ + 'label' => 'Opis', + 'helper' => 'Użyj, aby wyświetlić podpowiedź poniżej wpisu', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'searchable' => [ + 'label' => 'Możliwość wyszukiwania', + ], + 'filterable' => [ + 'label' => 'Możliwość filtrowania', + ], + 'required' => [ + 'label' => 'Wymagane', + ], + 'type' => [ + 'label' => 'Typ', + ], + 'validation_rules' => [ + 'label' => 'Reguły walidacji', + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/attributegroup.php b/packages/admin/resources/lang/pl/attributegroup.php new file mode 100644 index 000000000..b552903b8 --- /dev/null +++ b/packages/admin/resources/lang/pl/attributegroup.php @@ -0,0 +1,46 @@ + 'Grupa atrybutów', + + 'plural_label' => 'Grupy atrybutów', + + 'table' => [ + 'attributable_type' => [ + 'label' => 'Typ', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'position' => [ + 'label' => 'Pozycja', + ], + ], + + 'form' => [ + 'attributable_type' => [ + 'label' => 'Typ', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'position' => [ + 'label' => 'Pozycja', + ], + ], + + 'action' => [ + 'delete' => [ + 'notification' => [ + 'error_protected' => 'Tej grupy atrybutów nie można usunąć, ponieważ są z nią powiązane atrybuty.', + ], + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/auth.php b/packages/admin/resources/lang/pl/auth.php new file mode 100644 index 000000000..d21d5cbbc --- /dev/null +++ b/packages/admin/resources/lang/pl/auth.php @@ -0,0 +1,32 @@ + 'Admin', + 'roles.admin.description' => 'Admin z pełnym dostępem', + 'roles.staff.label' => 'Personel', + 'roles.staff.description' => 'Personel z podstawowym dostępem', + /** + * Permissions. + */ + 'permissions.settings.label' => 'Ustawienia', + 'permissions.settings.description' => 'Pozwala na dostęp do ustawień sklepu', + 'permissions.settings:core.label' => 'Ustawienia podstawowe', + 'permissions.settings:core.description' => 'Pozwala na dostęp do podstawowych ustawień sklepu, takich jak kanały, języki, waluty itp', + 'permissions.settings:manage-staff.label' => 'Zarządzanie personelem', + 'permissions.settings:manage-staff.description' => 'Pozwala pracownikowi na zarządzanie kontami innych pracowników', + 'permissions.settings:manage-attributes.label' => 'Zarządzanie atrybutami', + 'permissions.settings:manage-attributes.description' => 'Pozwala na tworzenie i aktualizowanie atrybutów', + 'permissions.catalog:manage-products.label' => 'Zarządzanie produktami', + 'permissions.catalog:manage-products.description' => 'Pozwala na aktualizowanie produktów, typów produktów oraz marek', + 'permissions.catalog:manage-collections.label' => 'Zarządzanie kolekcjami', + 'permissions.catalog:manage-collections.description' => 'Pozwala na zarządzanie kolekcjami oraz grupami kolekcji', + 'permissions.sales:manage-orders.label' => 'Zarządzanie zamówieniami', + 'permissions.sales:manage-orders.description' => 'Pozwala na zarządzanie zamówieniami', + 'permissions.sales:manage-customers.label' => 'Zarządzanie klientami', + 'permissions.sales:manage-customers.description' => 'Pozwala na zarządzanie klientami', + 'permissions.sales:manage-discounts.label' => 'Zarządzanie rabatami', + 'permissions.sales:manage-discounts.description' => 'Pozwala na zarządzanie rabatami', +]; diff --git a/packages/admin/resources/lang/pl/brand.php b/packages/admin/resources/lang/pl/brand.php new file mode 100644 index 000000000..88ecefc3a --- /dev/null +++ b/packages/admin/resources/lang/pl/brand.php @@ -0,0 +1,72 @@ + 'Marka', + + 'plural_label' => 'Marki', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'products_count' => [ + 'label' => 'Liczba produktów', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + ], + + 'action' => [ + 'delete' => [ + 'notification' => [ + 'error_protected' => 'Tej marki nie można usunąć, ponieważ są z nią powiązane produkty.', + ], + ], + ], + 'pages' => [ + 'products' => [ + 'label' => 'Produkty', + 'actions' => [ + 'attach' => [ + 'label' => 'Dołącz produkt', + 'form' => [ + 'record_id' => [ + 'label' => 'Produkt', + ], + ], + 'notification' => [ + 'success' => 'Produkt dodany do marki.', + ], + ], + 'detach' => [ + 'notification' => [ + 'success' => 'Produkt odpięty od marki.', + ], + ], + ], + ], + 'collections' => [ + 'label' => 'Kolekcje', + 'table' => [ + 'header_actions' => [ + 'attach' => [ + 'record_select' => [ + 'placeholder' => 'Wybierz kolekcję', + ], + ], + ], + ], + 'actions' => [ + 'attach' => [ + 'label' => 'Powiąż kolekcję', + ], + ], + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/channel.php b/packages/admin/resources/lang/pl/channel.php new file mode 100644 index 000000000..89340010b --- /dev/null +++ b/packages/admin/resources/lang/pl/channel.php @@ -0,0 +1,39 @@ + 'Kanał', + + 'plural_label' => 'Kanały', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'url' => [ + 'label' => 'URL', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'url' => [ + 'label' => 'URL', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/collection.php b/packages/admin/resources/lang/pl/collection.php new file mode 100644 index 000000000..df55b7cf4 --- /dev/null +++ b/packages/admin/resources/lang/pl/collection.php @@ -0,0 +1,48 @@ + 'Kolekcja', + + 'plural_label' => 'Kolekcje', + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + ], + + 'pages' => [ + 'children' => [ + 'label' => 'Podkolekcje', + 'actions' => [ + 'create_child' => [ + 'label' => 'Dodaj podkolekcję', + ], + ], + 'table' => [ + 'children_count' => [ + 'label' => 'Liczba podkolekcji', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + ], + ], + 'edit' => [ + 'label' => 'Podstawowe informacje', + ], + 'media' => [ + 'label' => 'Media', + ], + 'products' => [ + 'label' => 'Produkty', + 'actions' => [ + 'attach' => [ + 'label' => 'Dołącz produkt', + ], + ], + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/collectiongroup.php b/packages/admin/resources/lang/pl/collectiongroup.php new file mode 100644 index 000000000..8f2b37fdf --- /dev/null +++ b/packages/admin/resources/lang/pl/collectiongroup.php @@ -0,0 +1,37 @@ + 'Grupa kolekcji', + + 'plural_label' => 'Grupy kolekcji', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug' + ], + 'collections_count' => [ + 'label' => 'Liczba kolekcji', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + ], + + 'action' => [ + 'delete' => [ + 'notification' => [ + 'error_protected' => 'Tej grupy kolekcji nie można usunąć, ponieważ są z nią powiązane kolekcje.', + ], + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/components.php b/packages/admin/resources/lang/pl/components.php new file mode 100644 index 000000000..8f1f706a4 --- /dev/null +++ b/packages/admin/resources/lang/pl/components.php @@ -0,0 +1,117 @@ + [ + 'notification' => [ + + 'updated' => 'Tagi zaktualizowane', + + ], + ], + + 'activity-log' => [ + + 'input' => [ + + 'placeholder' => 'Dodaj komentarz', + + ], + + 'action' => [ + + 'add-comment' => 'Dodaj komentarz', + + ], + + 'system' => 'System', + + 'partials' => [ + 'orders' => [ + 'order_created' => 'Zamówienie utworzone', + + 'status_change' => 'Status zaktualizowany', + + 'capture' => 'Płatność w wysokości :amount na karcie kończącej się na :last_four', + + 'authorized' => 'Autoryzacja płatności w wysokości :amount na karcie kończącej się na :last_four', + + 'refund' => 'Zwrot płatności w wysokości :amount na karcie kończącej się na :last_four', + + 'address' => ':type zaktualizowany', + + 'billingAddress' => 'Adres rozliczeniowy', + + 'shippingAddress' => 'Adres dostawy', + ], + + 'update' => [ + 'updated' => ':model zaktualizowany', + ], + + 'create' => [ + 'created' => ':model utworzony', + ], + + 'tags' => [ + 'updated' => 'Tagi zaktualizowane', + 'added' => 'Dodano', + 'removed' => 'Usunięto', + ], + ], + + 'notification' => [ + 'comment_added' => 'Komentarz dodany', + ], + + ], + + 'forms' => [ + 'youtube' => [ + 'helperText' => 'Dodaj ID filmu z YouTube. np. dQw4w9WgXcQ', + ], + ], + + 'collection-tree-view' => [ + 'actions' => [ + 'move' => [ + 'form' => [ + 'target_id' => [ + 'label' => 'Kolekcja nadrzędna', + ], + ], + ], + ], + 'notifications' => [ + 'collections-reordered' => [ + 'success' => 'Kolekcje zostały posortowane', + ], + 'node-expanded' => [ + 'danger' => 'Nie można załadować kolekcji', + ], + 'delete' => [ + 'danger' => 'Nie można usunąć kolekcji', + ], + ], + ], + + 'product-options-list' => [ + 'add-option' => [ + 'label' => 'Dodaj opcję', + ], + 'delete-option' => [ + 'label' => 'Usuń opcję', + ], + 'remove-shared-option' => [ + 'label' => 'Usuń wspólną opcję', + ], + 'add-value' => [ + 'label' => 'Dodaj kolejną wartość', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'values' => [ + 'label' => 'Wartości', + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/currency.php b/packages/admin/resources/lang/pl/currency.php new file mode 100644 index 000000000..e6f9e31ea --- /dev/null +++ b/packages/admin/resources/lang/pl/currency.php @@ -0,0 +1,51 @@ + 'Waluta', + + 'plural_label' => 'Waluty', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'code' => [ + 'label' => 'Kod', + ], + 'exchange_rate' => [ + 'label' => 'Kurs wymiany', + ], + 'decimal_places' => [ + 'label' => 'Miejsca dziesiętne', + ], + 'enabled' => [ + 'label' => 'Włączona', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'code' => [ + 'label' => 'Kod', + ], + 'exchange_rate' => [ + 'label' => 'Kurs wymiany', + ], + 'decimal_places' => [ + 'label' => 'Miejsca dziesiętne', + ], + 'enabled' => [ + 'label' => 'Włączona', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/customer.php b/packages/admin/resources/lang/pl/customer.php new file mode 100644 index 000000000..d6912db1d --- /dev/null +++ b/packages/admin/resources/lang/pl/customer.php @@ -0,0 +1,63 @@ + 'Klient', + + 'plural_label' => 'Klienci', + + 'table' => [ + 'full_name' => [ + 'label' => 'Imię i nazwisko', + ], + 'first_name' => [ + 'label' => 'Imię', + ], + 'last_name' => [ + 'label' => 'Nazwisko', + ], + 'title' => [ + 'label' => 'Tytuł', + ], + 'company_name' => [ + 'label' => 'Nazwa firmy', + ], + 'vat_no' => [ + 'label' => 'NIP', + ], + 'account_reference' => [ + 'label' => 'Numer konta', + ], + 'new' => [ + 'label' => 'Nowy', + ], + 'returning' => [ + 'label' => 'Powracający', + ], + ], + + 'form' => [ + 'title' => [ + 'label' => 'Tytuł', + ], + 'first_name' => [ + 'label' => 'Imię', + ], + 'last_name' => [ + 'label' => 'Nazwisko', + ], + 'company_name' => [ + 'label' => 'Nazwa firmy', + ], + 'vat_no' => [ + 'label' => 'NIP', + ], + 'account_ref' => [ + 'label' => 'Numer konta', + ], + 'customer_groups' => [ + 'label' => 'Grupy klientów', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/customergroup.php b/packages/admin/resources/lang/pl/customergroup.php new file mode 100644 index 000000000..1554f2de1 --- /dev/null +++ b/packages/admin/resources/lang/pl/customergroup.php @@ -0,0 +1,40 @@ + 'Grupa klientów', + + 'plural_label' => 'Grupy klientów', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + + 'action' => [ + 'delete' => [ + 'notification' => [ + 'error_protected' => 'Tej grupy klientów nie można usunąć, ponieważ są z nią powiązani klienci.', + ], + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/discount.php b/packages/admin/resources/lang/pl/discount.php new file mode 100644 index 000000000..ae28181ab --- /dev/null +++ b/packages/admin/resources/lang/pl/discount.php @@ -0,0 +1,320 @@ + 'Rabaty', + 'label' => 'Rabat', + 'form' => [ + 'conditions' => [ + 'heading' => 'Warunki', + ], + 'buy_x_get_y' => [ + 'heading' => 'Kup X, Zdobądź Y', + ], + 'amount_off' => [ + 'heading' => 'Kwota zniżki', + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + ], + 'priority' => [ + 'label' => 'Priorytet', + 'helper_text' => 'Rabaty o wyższym priorytecie będą stosowane jako pierwsze.', + 'options' => [ + 'low' => [ + 'label' => 'Niski', + ], + 'medium' => [ + 'label' => 'Średni', + ], + 'high' => [ + 'label' => 'Wysoki', + ], + ], + ], + 'stop' => [ + 'label' => 'Zatrzymaj inne rabaty po zastosowaniu tego', + ], + 'coupon' => [ + 'label' => 'Kupon', + 'helper_text' => 'Wprowadź kupon wymagany do zastosowania rabatu. Pole puste oznacza, że zostanie on zastosowany automatycznie.', + ], + 'max_uses' => [ + 'label' => 'Maksymalna liczba użyć', + 'helper_text' => 'Pozostaw puste dla nieograniczonej liczby użyć.', + ], + 'max_uses_per_user' => [ + 'label' => 'Maksymalna liczba użyć na użytkownika', + 'helper_text' => 'Pozostaw puste dla nieograniczonej liczby użyć.', + ], + 'minimum_cart_amount' => [ + 'label' => 'Minimalna kwota koszyka', + ], + 'min_qty' => [ + 'label' => 'Minimalna ilość produktów', + 'helper_text' => 'Minimalna ilość produktów, które muszą być w koszyku, aby rabat mógł zostać zastosowany.', + ], + 'reward_qty' => [ + 'label' => 'Ilość zrabatowanych produktów', + 'helper_text' => 'Ile sztuk każdego produktu objętych zniżką.', + ], + 'max_reward_qty' => [ + 'label' => 'Maksymalna ilość zrabatowanych produktów', + 'helper_text' => 'Maksymalna ilość sztuk każdego produktu, która może być objęta zniżką.', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'status' => [ + 'label' => 'Status', + \Lunar\Models\Discount::ACTIVE => [ + 'label' => 'Aktywny', + ], + \Lunar\Models\Discount::PENDING => [ + 'label' => 'Oczekujący', + ], + \Lunar\Models\Discount::EXPIRED => [ + 'label' => 'Wygasły', + ], + \Lunar\Models\Discount::SCHEDULED => [ + 'label' => 'Zaplanowany', + ], + ], + 'type' => [ + 'label' => 'Typ', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + ], + ], + 'pages' => [ + 'availability' => [ + 'label' => 'Dostępność', + ], + 'limitations' => [ + 'label' => 'Ograniczenia', + ], + ], + 'relationmanagers' => [ + 'collections' => [ + 'title' => 'Kolekcje', + 'description' => 'Wybierz, do których kolekcji ma być ograniczony ten rabat.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj kolekcję', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'type' => [ + 'label' => 'Typ', + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + 'brands' => [ + 'title' => 'Marki', + 'description' => 'Wybierz, do których marek ma być ograniczony ten rabat.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj markę', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'type' => [ + 'label' => 'Typ', + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + 'products' => [ + 'title' => 'Produkty', + 'description' => 'Wybierz, do których produktów ma być ograniczony ten rabat.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj produkt', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'type' => [ + 'label' => 'Typ', + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + 'rewards' => [ + 'title' => 'Produkty zniżkowane', + 'description' => 'Wybierz produkty, które będą zniżkowane.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj produkt', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'type' => [ + 'label' => 'Typ', + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + 'conditions' => [ + 'title' => 'Produkty wymagane', + 'description' => 'Wybierz produkty wymagane do zastosowania rabatu.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj produkt', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'type' => [ + 'label' => 'Typ', + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + 'productvariants' => [ + 'title' => 'Warianty produktów', + 'description' => 'Wybierz, do których wariantów produktów ma być ograniczony ten rabat.', + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj wariant', + ], + ], + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'sku' => [ + 'label' => 'SKU', + ], + 'values' => [ + 'label' => 'Opcje', + ], + ], + 'form' => [ + 'type' => [ + 'options' => [ + 'limitation' => [ + 'label' => 'Ograniczenie', + ], + 'exclusion' => [ + 'label' => 'Wykluczenie', + ], + ], + ], + ], + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/fieldtypes.php b/packages/admin/resources/lang/pl/fieldtypes.php new file mode 100644 index 000000000..41c74da0d --- /dev/null +++ b/packages/admin/resources/lang/pl/fieldtypes.php @@ -0,0 +1,60 @@ + [ + 'label' => 'Lista rozwijana', + 'form' => [ + 'lookups' => [ + 'label' => 'Wyszukiwania', + 'key_label' => 'Etykieta', + 'value_label' => 'Wartość', + ], + ], + ], + 'listfield' => [ + 'label' => 'Lista', + ], + 'text' => [ + 'label' => 'Pole tekstowe', + 'form' => [ + 'richtext' => [ + 'label' => 'Tekst sformatowany', + ], + ], + ], + 'translatedtext' => [ + 'label' => 'Tekst tłumaczony', + 'form' => [ + 'richtext' => [ + 'label' => 'Tekst sformatowany', + ], + 'locales' => 'Języki', + ], + ], + 'toggle' => [ + 'label' => 'Przełącznik', + ], + 'youtube' => [ + 'label' => 'YouTube', + ], + 'vimeo' => [ + 'label' => 'Vimeo', + ], + 'number' => [ + 'label' => 'Pole numeryczne', + 'form' => [ + 'min' => [ + 'label' => 'Min.', + ], + 'max' => [ + 'label' => 'Maks.', + ], + ], + ], + 'file' => [ + 'label' => 'Plik', + ], + 'keyvalue' => [ + 'label' => 'Klucz - wartość', + ], +]; diff --git a/packages/admin/resources/lang/pl/global.php b/packages/admin/resources/lang/pl/global.php new file mode 100644 index 000000000..29ce394d4 --- /dev/null +++ b/packages/admin/resources/lang/pl/global.php @@ -0,0 +1,12 @@ + [ + 'catalog' => 'Katalog', + 'sales' => 'Sprzedaż', + 'reports' => 'Raporty', + 'settings' => 'Ustawienia', + ], + +]; diff --git a/packages/admin/resources/lang/pl/language.php b/packages/admin/resources/lang/pl/language.php new file mode 100644 index 000000000..97d67d78a --- /dev/null +++ b/packages/admin/resources/lang/pl/language.php @@ -0,0 +1,33 @@ + 'Język', + + 'plural_label' => 'Języki', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'code' => [ + 'label' => 'Kod', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'code' => [ + 'label' => 'Kod', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/order.php b/packages/admin/resources/lang/pl/order.php new file mode 100644 index 000000000..1c0892135 --- /dev/null +++ b/packages/admin/resources/lang/pl/order.php @@ -0,0 +1,292 @@ + 'Zamówienie', + + 'plural_label' => 'Zamówienia', + + 'breadcrumb' => [ + 'manage' => 'Zarządzanie zamówieniami', + ], + + 'transactions' => [ + 'capture' => 'Przechwycona', + 'intent' => 'Rozpoczęta', + 'refund' => 'Zwrócona', + 'failed' => 'Nieudana', + ], + + 'table' => [ + 'status' => [ + 'label' => 'Status', + ], + 'reference' => [ + 'label' => 'Numer zamówienia', + ], + 'customer_reference' => [ + 'label' => 'Numer klienta', + ], + 'customer' => [ + 'label' => 'Klient', + ], + 'tags' => [ + 'label' => 'Tagi', + ], + 'postcode' => [ + 'label' => 'Kod pocztowy', + ], + 'email' => [ + 'label' => 'Email', + 'copy_message' => 'Adres email skopiowany', + ], + 'phone' => [ + 'label' => 'Telefon', + ], + 'total' => [ + 'label' => 'Suma', + ], + 'date' => [ + 'label' => 'Data', + ], + 'new_customer' => [ + 'label' => 'Typ klienta', + ], + 'placed_after' => [ + 'label' => 'Złożone po', + ], + 'placed_before' => [ + 'label' => 'Złożone przed', + ], + ], + + 'form' => [ + 'address' => [ + 'first_name' => [ + 'label' => 'Imię', + ], + 'last_name' => [ + 'label' => 'Nazwisko', + ], + 'line_one' => [ + 'label' => 'Adres', + ], + 'line_two' => [ + 'label' => 'Adres cd.', + ], + 'line_three' => [ + 'label' => 'Adres cd.', + ], + 'company_name' => [ + 'label' => 'Nazwa firmy', + ], + 'contact_phone' => [ + 'label' => 'Telefon', + ], + 'contact_email' => [ + 'label' => 'Email', + ], + 'city' => [ + 'label' => 'Miasto', + ], + 'state' => [ + 'label' => 'Województwo', + ], + 'postcode' => [ + 'label' => 'Kod pocztowy', + ], + 'country_id' => [ + 'label' => 'Kraj', + ], + ], + + 'reference' => [ + 'label' => 'Numer zamówienia', + ], + 'status' => [ + 'label' => 'Status', + ], + 'transaction' => [ + 'label' => 'Transakcja', + ], + 'amount' => [ + 'label' => 'Kwota', + + 'hint' => [ + 'less_than_total' => 'Próbujesz pobrać kwotę mniejszą niż całkowita wartość transakcji.', + ], + ], + + 'notes' => [ + 'label' => 'Notatki', + ], + 'confirm' => [ + 'label' => 'Potwierdź', + + 'alert' => 'Wymaga potwierdzenia', + + 'hint' => [ + 'capture' => 'Potwierdź, że chcesz przechwycić tę kwotę.', + 'refund' => 'Potwierdź, że chcesz zwrócić tę kwotę.', + ], + ], + ], + + 'infolist' => [ + 'notes' => [ + 'label' => 'Notatki', + 'placeholder' => 'Brak notatek', + ], + 'delivery_instructions' => [ + 'label' => 'Informacje do dostawy', + ], + 'shipping_total' => [ + 'label' => 'Koszty dostawy', + ], + 'paid' => [ + 'label' => 'Opłacone', + ], + 'refund' => [ + 'label' => 'Zwrócone', + ], + 'unit_price' => [ + 'label' => 'Cena jednostkowa', + ], + 'quantity' => [ + 'label' => 'Ilość', + ], + 'sub_total' => [ + 'label' => 'Suma produktów', + ], + 'discount_total' => [ + 'label' => 'Suma zniżek', + ], + 'total' => [ + 'label' => 'Suma', + ], + 'current_stock_level' => [ + 'message' => 'Stan magazynowy: :count', + ], + 'purchase_stock_level' => [ + 'message' => 'w momencie zamówienia: :count', + ], + 'status' => [ + 'label' => 'Status', + ], + 'reference' => [ + 'label' => 'Numer zamówienia', + ], + 'customer_reference' => [ + 'label' => 'Numer klienta', + ], + 'channel' => [ + 'label' => 'Kanał', + ], + 'date_created' => [ + 'label' => 'Data utworzenia', + ], + 'date_placed' => [ + 'label' => 'Data złożenia', + ], + 'new_returning' => [ + 'label' => 'Nowy/Klient powracający', + ], + 'new_customer' => [ + 'label' => 'Nowy klient', + ], + 'returning_customer' => [ + 'label' => 'Klient powracający', + ], + 'shipping_address' => [ + 'label' => 'Adres dostawy', + ], + 'billing_address' => [ + 'label' => 'Adres rozliczeniowy', + ], + 'address_not_set' => [ + 'label' => 'Adres nieustawiony', + ], + 'billing_matches_shipping' => [ + 'label' => 'Adres rozliczeniowy jest taki sam jak adres dostawy', + ], + 'additional_info' => [ + 'label' => 'Dodatkowe informacje', + ], + 'no_additional_info' => [ + 'label' => 'Brak dodatkowych informacji', + ], + 'tags' => [ + 'label' => 'Tagi', + ], + 'timeline' => [ + 'label' => 'Historia', + ], + 'transactions' => [ + 'label' => 'Transakcje', + 'placeholder' => 'Brak transakcji', + ], + 'alert' => [ + 'requires_capture' => 'To zamówienie nadal wymaga przechwycenia płatności.', + 'partially_refunded' => 'To zamówienie zostało częściowo zwrócone.', + 'refunded' => 'To zamówienie zostało zwrócone.', + ], + ], + + 'action' => [ + 'bulk_update_status' => [ + 'label' => 'Aktualizuj statusy', + 'notification' => 'Statusy zamówień zostały zaktualizowane', + ], + 'update_status' => [ + 'new_status' => [ + 'label' => 'Nowy status', + ], + 'additional_content' => [ + 'label' => 'Dodatkowa treść', + ], + 'additional_email_recipient' => [ + 'label' => 'Dodatkowy odbiorca email', + 'placeholder' => 'opcjonalnie', + ], + ], + 'download_order_pdf' => [ + 'label' => 'Pobierz fakturę', + 'notification' => 'Faktura została pobrana', + ], + 'edit_address' => [ + 'label' => 'Edytuj adres', + + 'notification' => [ + 'error' => 'Błąd', + + 'billing_address' => [ + 'saved' => 'Adres rozliczeniowy zapisany', + ], + + 'shipping_address' => [ + 'saved' => 'Adres dostawy zapisany', + ], + ], + ], + 'edit_tags' => [ + 'label' => 'Edytuj tagi', + ], + 'capture_payment' => [ + 'label' => 'Przechwyć płatność', + + 'notification' => [ + 'error' => 'Wystąpił problem z przechwyceniem płatności', + 'success' => 'Płatność przechwycona', + ], + ], + 'refund_payment' => [ + 'label' => 'Zwróć płatność', + + 'notification' => [ + 'error' => 'Wystąpił problem ze zwróceniem płatności', + 'success' => 'Płatność zwrócona', + ], + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/product.php b/packages/admin/resources/lang/pl/product.php new file mode 100644 index 000000000..62565d3df --- /dev/null +++ b/packages/admin/resources/lang/pl/product.php @@ -0,0 +1,124 @@ + 'Produkt', + + 'plural_label' => 'Produkty', + + 'status' => [ + 'unpublished' => [ + 'content' => 'Produkt jest obecnie w trybie szkicu i jest ukryty we wszystkich kanałach i grupach klientów.', + ], + 'availability' => [ + 'customer_groups' => 'Produkt jest obecnie niedostępny dla wszystkich grup klientów.', + 'channels' => 'Produkt jest obecnie niedostępny dla wszystkich kanałów.', + ], + ], + + 'table' => [ + 'status' => [ + 'label' => 'Status', + 'states' => [ + 'deleted' => 'Usunięty', + 'draft' => 'Szkic', + 'published' => 'Opublikowany', + ], + ], + 'name' => [ + 'label' => 'Nazwa', + ], + 'brand' => [ + 'label' => 'Marka', + ], + 'sku' => [ + 'label' => 'SKU', + ], + 'stock' => [ + 'label' => 'Stan magazynowy', + ], + 'producttype' => [ + 'label' => 'Typ produktu', + ], + ], + + 'actions' => [ + 'edit_status' => [ + 'label' => 'Edytuj status', + 'heading' => 'Edytuj status produktu', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'brand' => [ + 'label' => 'Marka', + ], + 'sku' => [ + 'label' => 'SKU', + ], + 'producttype' => [ + 'label' => 'Typ produktu', + ], + 'status' => [ + 'label' => 'Status', + 'options' => [ + 'published' => [ + 'label' => 'Opublikowany', + 'description' => 'Ten produkt będzie widoczny we wszystkich kanałach i grupach klientów', + ], + 'draft' => [ + 'label' => 'Szkic', + 'description' => 'Ten produkt jest ukryty we wszystkich kanałach i grupach klientów', + ], + ], + ], + 'tags' => [ + 'label' => 'Tagi', + ], + 'collections' => [ + 'label' => 'Kolekcje', + ], + ], + + 'pages' => [ + 'availability' => [ + 'label' => 'Dostępność', + ], + 'media' => [ + 'label' => 'Media', + ], + 'identifiers' => [ + 'label' => 'Identyfikatory', + ], + 'inventory' => [ + 'label' => 'Stan magazynowy', + ], + 'pricing' => [ + 'form' => [ + 'tax_class_id' => [ + 'label' => 'Klasa podatkowa', + ], + 'tax_ref' => [ + 'label' => 'Numer referencyjny VAT', + 'helper_text' => 'Opcjonalnie, do integracji z systemami zewnętrznymi.', + ], + ], + ], + 'shipping' => [ + 'label' => 'Dostawa', + ], + 'variants' => [ + 'label' => 'Warianty', + ], + 'collections' => [ + 'label' => 'Kolekcje', + ], + 'associations' => [ + 'label' => 'Powiązania', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/productoption.php b/packages/admin/resources/lang/pl/productoption.php new file mode 100644 index 000000000..312cf9894 --- /dev/null +++ b/packages/admin/resources/lang/pl/productoption.php @@ -0,0 +1,124 @@ + 'Opcja produktu', + + 'plural_label' => 'Opcje produktu', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'label' => [ + 'label' => 'Etykieta', + ], + 'handle' => [ + 'label' => 'Slug', + ], + 'shared' => [ + 'label' => 'Współdzielony', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'label' => [ + 'label' => 'Etykieta', + ], + 'handle' => [ + 'label' => 'Slug', + ], + ], + + 'widgets' => [ + 'product-options' => [ + 'notifications' => [ + 'save-variants' => [ + 'success' => [ + 'title' => 'Warianty zapisane', + ], + ], + ], + 'actions' => [ + 'cancel' => [ + 'label' => 'Anuluj', + ], + 'save-options' => [ + 'label' => 'Zapisz opcje', + ], + 'add-shared-option' => [ + 'label' => 'Dodaj opcję współdzieloną', + 'form' => [ + 'product_option' => [ + 'label' => 'Opcja produktu', + ], + 'no_shared_components' => [ + 'label' => 'Brak opcji współdzielonych', + ], + ], + ], + 'add-restricted-option' => [ + 'label' => 'Dodaj opcję', + ], + ], + 'options-list' => [ + 'empty' => [ + 'heading' => 'Brak opcji produktu', + 'description' => 'Dodaj opcję produktu współdzieloną lub ograniczoną, aby rozpocząć generowanie wariantów.', + ], + ], + 'options-table' => [ + 'title' => 'Opcje produktu', + 'configure-options' => [ + 'label' => 'Konfiguruj opcje', + ], + 'table' => [ + 'option' => [ + 'label' => 'Opcja', + ], + 'values' => [ + 'label' => 'Wartości', + ], + ], + ], + 'variants-table' => [ + 'title' => 'Warianty', + 'actions' => [ + 'create' => [ + 'label' => 'Utwórz wariant', + ], + 'edit' => [ + 'label' => 'Edytuj', + ], + 'delete' => [ + 'label' => 'Usuń', + ], + ], + 'empty' => [ + 'heading' => 'Brak wariantów', + ], + 'table' => [ + 'new' => [ + 'label' => 'Nowy', + ], + 'option' => [ + 'label' => 'Opcja', + ], + 'sku' => [ + 'label' => 'SKU', + ], + 'price' => [ + 'label' => 'Cena', + ], + 'stock' => [ + 'label' => 'Stan magazynowy', + ], + ], + ], + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/producttype.php b/packages/admin/resources/lang/pl/producttype.php new file mode 100644 index 000000000..0131df606 --- /dev/null +++ b/packages/admin/resources/lang/pl/producttype.php @@ -0,0 +1,52 @@ + 'Typ produktu', + + 'plural_label' => 'Typy produktów', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'products_count' => [ + 'label' => 'Liczba produktów', + ], + 'product_attributes_count' => [ + 'label' => 'Atrybuty produktu', + ], + 'variant_attributes_count' => [ + 'label' => 'Atrybuty wariantu', + ], + ], + + 'tabs' => [ + 'product_attributes' => [ + 'label' => 'Atrybuty produktu', + ], + 'variant_attributes' => [ + 'label' => 'Atrybuty wariantu', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + ], + + 'attributes' => [ + 'no_groups' => 'Brak grup atrybutów.', + 'no_attributes' => 'Brak atrybutów.', + ], + + 'action' => [ + 'delete' => [ + 'notification' => [ + 'error_protected' => 'Tego typu produktu nie można usunąć, ponieważ są z nim powiązane produkty.', + ], + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/productvariant.php b/packages/admin/resources/lang/pl/productvariant.php new file mode 100644 index 000000000..acb8d3f27 --- /dev/null +++ b/packages/admin/resources/lang/pl/productvariant.php @@ -0,0 +1,105 @@ + 'Wariant produktu', + 'plural_label' => 'Warianty produktów', + 'pages' => [ + 'edit' => [ + 'title' => 'Podstawowe informacje', + ], + 'media' => [ + 'title' => 'Media', + 'form' => [ + 'no_selection' => [ + 'label' => 'Nie masz obecnie wybranych obrazów dla tego wariantu.', + ], + 'no_media_available' => [ + 'label' => 'Brak dostępnych mediów.', + ], + 'images' => [ + 'label' => 'Obraz główny', + 'helper_text' => 'Obraz ten będzie wyświetlany jako główny obraz wariantu produktu.', + ], + ], + ], + 'identifiers' => [ + 'title' => 'Identyfikatory', + ], + 'inventory' => [ + 'title' => 'Inwentarz', + ], + 'shipping' => [ + 'title' => 'Wysyłka', + ], + ], + 'form' => [ + 'sku' => [ + 'label' => 'SKU', + ], + 'gtin' => [ + 'label' => 'Global Trade Item Number (GTIN)', + ], + 'mpn' => [ + 'label' => 'Manufacturer Part Number (MPN)', + ], + 'ean' => [ + 'label' => 'UPC/EAN', + ], + 'stock' => [ + 'label' => 'Dostępny', + ], + 'backorder' => [ + 'label' => 'Na zamówienie', + ], + 'purchasable' => [ + 'label' => 'Możliwość zakupu', + 'options' => [ + 'always' => 'Zawsze', + 'in_stock' => 'Tylko gdy jest w magazynie', + 'backorder' => 'Na zamówienie', + ], + ], + 'unit_quantity' => [ + 'label' => 'Ilość jednostkowa', + 'helper_text' => 'Ile pojedynczych przedmiotów stanowi 1 jednostkę.', + ], + 'min_quantity' => [ + 'label' => 'Minimalna ilość', + 'helper_text' => 'Minimalna ilość, którą klient musi zakupić.', + ], + 'quantity_increment' => [ + 'label' => 'Zwiększenie ilości', + 'helper_text' => 'Wariant produktu musi być kupowany w wielokrotnościach tej ilości.', + ], + 'tax_class_id' => [ + 'label' => 'Klasa podatkowa', + ], + 'shippable' => [ + 'label' => 'Możliwość wysyłki', + ], + 'length_value' => [ + 'label' => 'Długość', + ], + 'length_unit' => [ + 'label' => 'Jednostka długości', + ], + 'width_value' => [ + 'label' => 'Szerokość', + ], + 'width_unit' => [ + 'label' => 'Jednostka szerokości', + ], + 'height_value' => [ + 'label' => 'Wysokość', + ], + 'height_unit' => [ + 'label' => 'Jednostka wysokości', + ], + 'weight_value' => [ + 'label' => 'Waga', + ], + 'weight_unit' => [ + 'label' => 'Jednostka wagi', + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/relationmanagers.php b/packages/admin/resources/lang/pl/relationmanagers.php new file mode 100644 index 000000000..ac221a53d --- /dev/null +++ b/packages/admin/resources/lang/pl/relationmanagers.php @@ -0,0 +1,225 @@ + [ + 'actions' => [ + 'attach' => [ + 'label' => 'Dodaj grupę klientów', + ], + ], + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'enabled' => [ + 'label' => 'Włączona', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + ], + 'visible' => [ + 'label' => 'Widoczna', + ], + 'purchasable' => [ + 'label' => 'Możliwość zakupu', + ], + ], + 'table' => [ + 'description' => 'Określ, które grupy klientów są włączone i zaplanuj dostępność.', + 'name' => [ + 'label' => 'Nazwa', + ], + 'enabled' => [ + 'label' => 'Włączona', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + ], + 'visible' => [ + 'label' => 'Widoczna', + ], + 'purchasable' => [ + 'label' => 'Możliwość zakupu', + ], + ], + ], + 'channels' => [ + 'actions' => [ + 'attach' => [ + 'label' => 'Zaplanuj kolejny kanał', + ], + ], + 'form' => [ + 'enabled' => [ + 'label' => 'Włączony', + 'helper_text_false' => 'Ten kanał nie będzie włączony, nawet jeśli jest obecna data rozpoczęcia.', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + 'helper_text' => 'Pozostaw puste, aby była dostępna na czas nieokreślony.', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + 'helper_text' => 'Pozostaw puste, aby była dostępna na czas nieokreślony.', + ], + ], + 'table' => [ + 'description' => 'Określ, które kanały są włączone i zaplanuj dostępność.', + 'name' => [ + 'label' => 'Nazwa', + ], + 'enabled' => [ + 'label' => 'Włączony', + ], + 'starts_at' => [ + 'label' => 'Data rozpoczęcia', + ], + 'ends_at' => [ + 'label' => 'Data zakończenia', + ], + ], + ], + 'urls' => [ + 'title' => 'URL', + 'title_plural' => 'URLe', + 'actions' => [ + 'create' => [ + 'label' => 'Utwórz URL', + ], + ], + 'filters' => [ + 'language_id' => [ + 'label' => 'Język', + ], + ], + 'form' => [ + 'slug' => [ + 'label' => 'Slug', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + 'language' => [ + 'label' => 'Język', + ], + ], + 'table' => [ + 'slug' => [ + 'label' => 'Slug', + ], + 'default' => [ + 'label' => 'Domyślny', + ], + 'language' => [ + 'label' => 'Język', + ], + ], + ], + 'customer_group_pricing' => [ + 'title' => 'Ceny grup klientów', + 'title_plural' => 'Ceny grup klientów', + 'table' => [ + 'heading' => 'Ceny grup klientów', + 'description' => 'Określ ceny dla poszczególnych grup klientów.', + 'empty_state' => [ + 'label' => 'Nie istnieją ceny grup klientów.', + 'description' => 'Dodaj ceny dla poszczególnych grup klientów.', + ], + 'actions' => [ + 'create' => [ + 'label' => 'Dodaj cenę grupy klientów', + 'modal' => [ + 'heading' => 'Dodaj cenę grupy klientów', + ], + ], + ], + ], + ], + 'pricing' => [ + 'title' => 'Cena', + 'title_plural' => 'Ceny', + 'tab_name' => 'Progi cenowe', + 'table' => [ + 'heading' => 'Progi cenowe', + 'description' => 'Zmniejsz cenę, gdy klient kupuje większe ilości.', + 'empty_state' => [ + 'label' => 'Nie istnieją progi cenowe.', + ], + 'actions' => [ + 'create' => [ + 'label' => 'Dodaj próg cenowy', + ], + ], + 'price' => [ + 'label' => 'Cena', + ], + 'customer_group' => [ + 'label' => 'Grupa klientów', + 'placeholder' => 'Wszystkie grupy klientów', + ], + 'min_quantity' => [ + 'label' => 'Minimalna ilość', + ], + 'currency' => [ + 'label' => 'Waluta', + ], + ], + 'form' => [ + 'price' => [ + 'label' => 'Cena', + 'helper_text' => 'Cena zakupu, przed rabatami.', + ], + 'customer_group_id' => [ + 'label' => 'Grupa klientów', + 'placeholder' => 'Wszystkie grupy klientów', + 'helper_text' => 'Wybierz grupę klientów dla tej ceny.', + ], + 'min_quantity' => [ + 'label' => 'Minimalna ilość', + 'helper_text' => 'Wybierz minimalną ilość, dla której ta cena będzie dostępna.', + 'validation' => [ + 'unique' => 'Grupa klientów i minimalna ilość muszą być unikalne.' + ], + ], + 'currency_id' => [ + 'label' => 'Waluta', + 'helper_text' => 'Wybierz walutę dla tej ceny.', + ], + 'compare_price' => [ + 'label' => 'Cena porównawcza', + 'helper_text' => 'Oryginalna cena lub sugerowana cena producenta, do porównania z ceną zakupu.' + ], + 'basePrices' => [ + 'title' => 'Ceny bazowe', + 'form' => [ + 'price' => [ + 'label' => 'Cena', + 'helper_text' => 'Cena zakupu, przed rabatami.', + ], + 'compare_price' => [ + 'label' => 'Cena porównawcza', + 'helper_text' => 'Oryginalna cena lub sugerowana cena producenta, do porównania z ceną zakupu.', + ], + ], + 'tooltip' => 'Automatycznie generowane na podstawie kursów wymiany walut.' + ], + ], + ], + 'tax_rate_amounts' => [ + 'table' => [ + 'description' => '', + 'percentage' => [ + 'label' => 'Procent', + ], + 'tax_class' => [ + 'label' => 'Klasa podatkowa', + ], + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/staff.php b/packages/admin/resources/lang/pl/staff.php new file mode 100644 index 000000000..4ed119ba8 --- /dev/null +++ b/packages/admin/resources/lang/pl/staff.php @@ -0,0 +1,81 @@ + 'Personel', + + 'plural_label' => 'Personel', + + 'table' => [ + 'firstname' => [ + 'label' => 'Imię', + ], + 'lastname' => [ + 'label' => 'Nazwisko', + ], + 'email' => [ + 'label' => 'Email', + ], + 'admin' => [ + 'badge' => 'Super Admin', + ], + ], + + 'form' => [ + 'firstname' => [ + 'label' => 'Imię', + ], + 'lastname' => [ + 'label' => 'Nazwisko', + ], + 'email' => [ + 'label' => 'Email', + ], + 'password' => [ + 'label' => 'Hasło', + 'hint' => 'Resetuj hasło', + ], + 'admin' => [ + 'label' => 'Super Admin', + 'helper' => 'Rola super admina nie może być zmieniona w panelu.', + ], + 'roles' => [ + 'label' => 'Role', + 'helper' => ':roles mają pełny dostęp' + ], + 'permissions' => [ + 'label' => 'Uprawnienia', + ], + 'role' => [ + 'label' => 'Rola', + ], + ], + + 'action' => [ + 'acl' => [ + 'label' => 'Kontrola dostępu', + ], + 'add-role' => [ + 'label' => 'Dodaj rolę', + ], + 'delete-role' => [ + 'label' => 'Usuń rolę', + 'heading' => 'Usuń rolę: :role', + ], + ], + + 'acl' => [ + 'title' => 'Kontrola dostępu', + 'tooltip' => [ + 'roles-included' => 'Uprawnienie jest zawarte w następujących rolach' + ], + 'notification' => [ + 'updated' => 'Zaktualizowano kontrolę dostępu', + 'error' => 'Błąd podczas aktualizacji kontroli dostępu', + 'no-role' => 'Rola nie jest zarejestrowana w Lunar', + 'no-permission' => 'Uprawnienie nie jest zarejestrowane w Lunar', + 'no-role-permission' => 'Rola i uprawnienie nie są zarejestrowane w Lunar', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/tag.php b/packages/admin/resources/lang/pl/tag.php new file mode 100644 index 000000000..8e3e467f4 --- /dev/null +++ b/packages/admin/resources/lang/pl/tag.php @@ -0,0 +1,21 @@ + 'Tag', + + 'plural_label' => 'Tagi', + + 'table' => [ + 'value' => [ + 'label' => 'Wartość', + ], + ], + + 'form' => [ + 'value' => [ + 'label' => 'Wartość', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/taxclass.php b/packages/admin/resources/lang/pl/taxclass.php new file mode 100644 index 000000000..f1565c12d --- /dev/null +++ b/packages/admin/resources/lang/pl/taxclass.php @@ -0,0 +1,27 @@ + 'Klasa podatkowa', + + 'plural_label' => 'Klasy podatkowe', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/taxrate.php b/packages/admin/resources/lang/pl/taxrate.php new file mode 100644 index 000000000..0acc17595 --- /dev/null +++ b/packages/admin/resources/lang/pl/taxrate.php @@ -0,0 +1,33 @@ + 'Stawka podatkowa', + + 'plural_label' => 'Stawki podatkowe', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'tax_zone' => [ + 'label' => 'Strefa podatkowa', + ], + 'priority' => [ + 'label' => 'Priorytet', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'priority' => [ + 'label' => 'Priorytet', + ], + 'tax_zone_id' => [ + 'label' => 'Strefa podatkowa', + ], + ], + +]; diff --git a/packages/admin/resources/lang/pl/taxzone.php b/packages/admin/resources/lang/pl/taxzone.php new file mode 100644 index 000000000..f7b45e2c4 --- /dev/null +++ b/packages/admin/resources/lang/pl/taxzone.php @@ -0,0 +1,69 @@ + 'Strefa podatkowa', + + 'plural_label' => 'Strefy podatkowe', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'zone_type' => [ + 'label' => 'Typ strefy', + ], + 'active' => [ + 'label' => 'Aktywna', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + ], + + 'form' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'zone_type' => [ + 'label' => 'Typ strefy', + 'options' => [ + 'country' => 'Ogranicz do krajów', + 'states' => 'Ogranicz do stanów', + 'postcodes' => 'Ogranicz do kodów pocztowych', + ], + ], + 'price_display' => [ + 'label' => 'Wyświetlanie ceny', + 'options' => [ + 'include_tax' => 'Zawiera podatek', + 'exclude_tax' => 'Nie zawiera podatku', + ], + ], + 'active' => [ + 'label' => 'Aktywna', + ], + 'default' => [ + 'label' => 'Domyślna', + ], + + 'zone_countries' => [ + 'label' => 'Kraje', + ], + + 'zone_country' => [ + 'label' => 'Kraj', + ], + + 'zone_states' => [ + 'label' => 'Stany', + ], + + 'zone_postcodes' => [ + 'label' => 'Kody pocztowe', + 'helper' => 'Wprowadź każdy kod pocztowy w nowej linii. Obsługuje znaki wieloznaczne, takie jak NW*' + ], + + ], + +]; diff --git a/packages/admin/resources/lang/pl/user.php b/packages/admin/resources/lang/pl/user.php new file mode 100644 index 000000000..d032ca731 --- /dev/null +++ b/packages/admin/resources/lang/pl/user.php @@ -0,0 +1,29 @@ + 'Użytkownik', + + 'plural_label' => 'Użytkownicy', + + 'table' => [ + 'name' => [ + 'label' => 'Nazwa', + ], + 'email' => [ + 'label' => 'Email', + ], + ], + + 'form' => [ + 'email' => [ + 'label' => 'Email', + ], + 'password' => [ + 'label' => 'Nowe hasło', + ], + 'password_confirmation' => [ + 'label' => 'Potwierdź nowe hasło', + ], + ], +]; diff --git a/packages/admin/resources/lang/pl/widgets.php b/packages/admin/resources/lang/pl/widgets.php new file mode 100644 index 000000000..181d4e93d --- /dev/null +++ b/packages/admin/resources/lang/pl/widgets.php @@ -0,0 +1,118 @@ + [ + 'orders' => [ + 'order_stats_overview' => [ + 'stat_one' => [ + 'label' => 'Zamówienia dzisiaj', + 'increase' => ':percentage% wzrost od :count wczoraj', + 'decrease' => ':percentage% spadek od :count wczoraj', + 'neutral' => 'Brak zmian w porównaniu z wczoraj', + ], + 'stat_two' => [ + 'label' => 'Zamówienia z ostatnich 7 dni', + 'increase' => ':percentage% wzrost od :count w poprzednim okresie', + 'decrease' => ':percentage% spadek od :count w poprzednim okresie', + 'neutral' => 'Brak zmian w porównaniu z poprzednim okresem', + ], + 'stat_three' => [ + 'label' => 'Zamówienia z ostatnich 30 dni', + 'increase' => ':percentage% wzrost od :count w poprzednim okresie', + 'decrease' => ':percentage% spadek od :count w poprzednim okresie', + 'neutral' => 'Brak zmian w porównaniu z poprzednim okresem', + ], + 'stat_four' => [ + 'label' => 'Sprzedaż dzisiaj', + 'increase' => ':percentage% wzrost od :total wczoraj', + 'decrease' => ':percentage% spadek od :total wczoraj', + 'neutral' => 'Brak zmian w porównaniu z wczoraj', + ], + 'stat_five' => [ + 'label' => 'Sprzedaż z ostatnich 7 dni', + 'increase' => ':percentage% wzrost od :total w poprzednim okresie', + 'decrease' => ':percentage% spadek od :total w poprzednim okresie', + 'neutral' => 'Brak zmian w porównaniu z poprzednim okresem', + ], + 'stat_six' => [ + 'label' => 'Sprzedaż z ostatnich 30 dni', + 'increase' => ':percentage% wzrost od :total w poprzednim okresie', + 'decrease' => ':percentage% spadek od :total w poprzednim okresie', + 'neutral' => 'Brak zmian w porównaniu z poprzednim okresem', + ], + ], + 'order_totals_chart' => [ + 'heading' => 'Suma z zamówień z ostatniego roku', + 'series_one' => [ + 'label' => 'Aktualny okres', + ], + 'series_two' => [ + 'label' => 'Poprzedni okres', + ], + 'yaxis' => [ + 'label' => 'Obrót :currency', + ], + ], + 'order_sales_chart' => [ + 'heading' => 'Raport zamówień / sprzedaży', + 'series_one' => [ + 'label' => 'Zamówienia', + ], + 'series_two' => [ + 'label' => 'Sprzedaż', + ], + 'yaxis' => [ + 'series_one' => [ + 'label' => '# Zamówień', + ], + 'series_two' => [ + 'label' => 'Wartość zamówień', + ], + ], + ], + 'average_order_value' => [ + 'heading' => 'Średnia wartość zamówienia', + ], + 'new_returning_customers' => [ + 'heading' => 'Nowi i powracający klienci', + 'series_one' => [ + 'label' => 'Nowi klienci', + ], + 'series_two' => [ + 'label' => 'Powracający klienci', + ], + ], + 'popular_products' => [ + 'heading' => 'Popularne produkty w tym miesiącu', + 'description' => 'Wartości te są oparte na liczbie razy, kiedy produkt pojawia się w zamówieniu, a nie na ilości zamówionej.', + ], + 'latest_orders' => [ + 'heading' => 'Ostatnie zamówienia', + ], + ], + ], + 'customer' => [ + 'stats_overview' => [ + 'total_orders' => [ + 'label' => 'Wszystkie zamówienia', + ], + 'avg_spend' => [ + 'label' => 'Średni wydatek' + ], + 'total_spend' => [ + 'label' => 'Wszystkie wydatki', + ], + ], + ], + 'variant_switcher' => [ + 'label' => 'Zmień wariant', + 'table' => [ + 'sku' => [ + 'label' => 'SKU', + ], + 'values' => [ + 'label' => 'Wartości', + ], + ], + ], +];