Skip to content

Commit

Permalink
String translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
htulibacki committed Dec 30, 2024
1 parent 753ceea commit 3bcd26f
Show file tree
Hide file tree
Showing 12 changed files with 744 additions and 1 deletion.
8 changes: 8 additions & 0 deletions packages/actions/resources/lang/pl/import.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@
'form' => [

'file' => [

'label' => 'Plik',

'placeholder' => 'Wybierz plik CSV',

'rules' => [
'duplicate_columns' => '{0} Plik nie może zawierać więcej niż jednego pustego nagłówka kolumny.|{1,*} Plik nie może zawierać duplikatów nagłówków kolumn: :columns.',
],

],

'columns' => [
Expand Down Expand Up @@ -72,6 +79,7 @@
'file_name' => 'import-:import_id-:csv_name-failed-rows',
'error_header' => 'błąd',
'system_error' => 'Błąd systemu, skontaktuj się z pomocą techniczną.',
'column_mapping_required_for_new_record' => 'Kolumna :attribute nie została odwzorowana na kolumnę w pliku, ale jest wymagana do tworzenia nowych rekordów.',
],

];
105 changes: 104 additions & 1 deletion packages/forms/resources/lang/pl/components.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,69 @@
],

'add' => [

'label' => 'Dodaj do :label',

'modal' => [

'heading' => 'Dodaj do :label',

'actions' => [

'add' => [
'label' => 'Dodaj',
],

],

],

],

'add_between' => [
'label' => 'Wstaw',

'label' => 'Wstaw pomiędzy',

'modal' => [

'heading' => 'Dodaj do :label',

'actions' => [

'add' => [
'label' => 'Dodaj',
],

],

],

],

'delete' => [
'label' => 'Usuń',
],

'edit' => [

'label' => 'Edytuj',

'modal' => [

'heading' => 'Edytuj blok',

'actions' => [

'save' => [
'label' => 'Zapisz zmiany',
],

],

],

],

'reorder' => [
'label' => 'Przesuń',
],
Expand Down Expand Up @@ -185,6 +237,15 @@

],

'svg' => [

'messages' => [
'confirmation' => 'Edycja plików SVG nie jest zalecana, ponieważ może to prowadzić do utraty jakości podczas skalowania.\n Czy na pewno chcesz kontynuować?',
'disabled' => 'Edycja plików SVG jest wyłączona, ponieważ może to prowadzić do utraty jakości podczas skalowania.',
],

],

],

],
Expand Down Expand Up @@ -241,6 +302,15 @@

],

'radio' => [

'boolean' => [
'true' => 'Tak',
'false' => 'Nie',
],

],

'repeater' => [

'actions' => [
Expand All @@ -249,6 +319,10 @@
'label' => 'Dodaj do :label',
],

'add_between' => [
'label' => 'Dodaj pomiędzy',
],

'delete' => [
'label' => 'Usuń',
],
Expand Down Expand Up @@ -334,6 +408,8 @@

'create_option' => [

'label' => 'Utwórz',

'modal' => [

'heading' => 'Utwórz',
Expand All @@ -356,6 +432,8 @@

'edit_option' => [

'label' => 'Edytuj',

'modal' => [

'heading' => 'Edytuj',
Expand Down Expand Up @@ -397,6 +475,31 @@
'placeholder' => 'Nowy tag',
],

'text_input' => [

'actions' => [

'hide_password' => [
'label' => 'Ukryj hasło',
],

'show_password' => [
'label' => 'Pokaż hasło',
],

],

],

'toggle_buttons' => [

'boolean' => [
'true' => 'Tak',
'false' => 'Nie',
],

],

'wizard' => [

'actions' => [
Expand Down
10 changes: 10 additions & 0 deletions packages/forms/resources/lang/pl/validation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

return [

'distinct' => [
'must_be_selected' => 'Przynajmniej jedno pole :attribute musi być zaznaczone.',
'only_one_must_be_selected' => 'Tylko jedno pole :attribute musi być zaznaczone.'
],

];
38 changes: 38 additions & 0 deletions packages/infolists/resources/lang/pl/components.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

return [

'entries' => [

'text' => [

'actions' => [
'collapse_list' => 'Pokaż :count mniej',
'expand_list' => 'Pokaż :count więcej',
],

'more_list_items' => 'dodaj :count więcej',

],

'key_value' => [

'columns' => [

'key' => [
'label' => 'Klucz',
],

'value' => [
'label' => 'Wartość',
],

],

'placeholder' => 'Brak wpisów',

],

],

];
8 changes: 8 additions & 0 deletions packages/panels/resources/lang/pl/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,12 @@

],

'avatar' => [
'alt' => 'Awatar :name',
],

'logo' => [
'alt' => 'Logo :name',
],

];
26 changes: 26 additions & 0 deletions packages/panels/resources/lang/pl/pages/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,30 @@

'title' => 'Panel',

'actions' => [

'filter' => [

'label' => 'Filtruj',

'modal' => [

'heading' => 'Filtruj',

'actions' => [

'apply' => [

'label' => 'Zastosuj',

],

],

],

],

],

];
7 changes: 7 additions & 0 deletions packages/panels/resources/lang/pl/unsaved-changes-alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

return [

'body' => 'Masz niezapisane zmiany. Czy na pewno chcesz opuścić tę stronę?',

];
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

return [

'form' => [

'actions' => [

'save' => [
'label' => 'Zapisz',
],

],

],

'notifications' => [

'saved' => [
'title' => 'Zapisano zmiany',
],

],

];
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

return [

'active_locale' => [
'label' => 'Aktywny język',
],

];
8 changes: 8 additions & 0 deletions packages/support/resources/lang/pl/components/pagination.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,18 @@

'actions' => [

'first' => [
'label' => 'Pierwsza',
],

'go_to_page' => [
'label' => 'Przejdź do strony :page',
],

'last' => [
'label' => 'Osatnia',
],

'next' => [
'label' => 'Następna',
],
Expand Down
Loading

0 comments on commit 3bcd26f

Please sign in to comment.