-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add polish translation for Menu module.
Signed-off-by: Mariusz Fik <[email protected]>
- Loading branch information
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
return [ | ||
'form' => [ | ||
'page' => 'Strona', | ||
'module' => 'Moduł', | ||
'target' => 'Cel', | ||
'same tab' => 'Ta sama karta', | ||
'new tab' => 'Nowa karta', | ||
'icon' => 'Ikona', | ||
'class' => 'Klasa CSS', | ||
'parent menu item' => 'Element nadrzędnego menu', | ||
], | ||
'link-type' => [ | ||
'link type' => 'Rodzaj odnośnika', | ||
'page' => 'Strona', | ||
'internal' => 'Zewnętrzny', | ||
'external' => 'Wewnętrzny', | ||
], | ||
'list resource' => 'Wyświetlanie', | ||
'create resource' => 'Tworzenie', | ||
'edit resource' => 'Edycja', | ||
'destroy resource' => 'Usuwanie', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
return [ | ||
'title' => 'Menu', | ||
'titles' => [ | ||
'menu' => 'Zarządzanie menu', | ||
'create menu' => 'Tworzenie menu', | ||
'edit menu' => 'Edycja menu', | ||
'create menu item' => 'Tworzenie elementu menu', | ||
'edit menu item' => 'Edycja elementu menu', | ||
], | ||
'breadcrumb' => [ | ||
'menu' => 'Zarządzanie menu', | ||
'create menu' => 'Tworzenie menu', | ||
'edit menu' => 'Edycja menu', | ||
'create menu item' => 'Tworzenie elementu menu', | ||
'edit menu item' => 'Edycja elementu menu', | ||
], | ||
'button' => [ | ||
'create menu item' => 'Utwórz element menu', | ||
'create menu' => 'Utwórz menu', | ||
], | ||
'table' => [ | ||
'name' => 'Nazwa', | ||
'title' => 'Tytuł', | ||
], | ||
'form' => [ | ||
'title' => 'Tytuł', | ||
'name' => 'Nazwa', | ||
'status' => 'Online', | ||
'uri' => 'URI', | ||
'url' => 'URL', | ||
'primary' => 'Menu główne (używane jako nawigacja na stronie głównej)', | ||
], | ||
'navigation' => [ | ||
'back to index' => 'Powrót do zarządzania menu', | ||
], | ||
'list resource' => 'Wyświetlanie', | ||
'create resource' => 'Tworzenie', | ||
'edit resource' => 'Edycja', | ||
'destroy resource' => 'Usuwanie', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
return [ | ||
/* Menu management */ | ||
'menu created' => 'Pomyślnie utworzono menu.', | ||
'menu not found' => 'Nie znaleziono menu.', | ||
'menu updated' => 'Pomyślnie zaktualizowano menu.', | ||
'menu deleted' => 'Pomyślnie usunięto menu.', | ||
/* MenuItem management */ | ||
'menuitem created' => 'Pomyślnie utworzono element menu.', | ||
'menuitem not found' => 'Nie znaleziono elementu menu.', | ||
'menuitem updated' => 'Pomyślnie zaktualizowano element menu.', | ||
'menuitem deleted' => 'Pomyślnie usunięto element menu.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
return [ | ||
'only one primary menu' => 'Tylko jedno menu może być menu głównym', | ||
'name is required' => 'Nazwa jest wymagana', | ||
]; |