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

feat: add Polish translation #374

Merged
merged 1 commit into from
May 14, 2024
Merged
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
80 changes: 80 additions & 0 deletions resources/lang/pl/filament_shield.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?php

return [
/*
|--------------------------------------------------------------------------
| Table Columns
|--------------------------------------------------------------------------
*/

'column.name' => 'Nazwa',
'column.guard_name' => 'Nazwa strażnika',
'column.roles' => 'Role',
'column.permissions' => 'Permisje',
'column.updated_at' => 'Zaktualizowano',

/*
|--------------------------------------------------------------------------
| Form Fields
|--------------------------------------------------------------------------
*/

'field.name' => 'Nazwa',
'field.guard_name' => 'Nzwa strażnika',
'field.permissions' => 'Permisje',
'field.select_all.name' => 'Zaznacz wszystkie',
'field.select_all.message' => 'Włącz wszystkie permisje obecnie<span class="text-primary font-medium">Włączone</span> dla tej roli',

/*
|--------------------------------------------------------------------------
| Navigation & Resource
|--------------------------------------------------------------------------
*/

'nav.group' => 'Filament Shield',
'nav.role.label' => 'Role',
'nav.role.icon' => 'heroicon-o-shield-check',
'resource.label.role' => 'Rola',
'resource.label.roles' => 'Role',

/*
|--------------------------------------------------------------------------
| Section & Tabs
|--------------------------------------------------------------------------
*/

'section' => 'Podmioty',
'resources' => 'Zasoby',
'widgets' => 'Widżety',
'pages' => 'Strony',
'custom' => 'Niestandardowe permisje',

/*
|--------------------------------------------------------------------------
| Messages
|--------------------------------------------------------------------------
*/

'forbidden' => 'Nie masz uprawnień do dostępu',

/*
|--------------------------------------------------------------------------
| Resource Permissions' Labels
|--------------------------------------------------------------------------
*/

'resource_permission_prefixes_labels' => [
'view' => 'Widok',
'view_any' => 'Widok dowolnego',
'create' => 'Tworzenie',
'update' => 'Aktualizacja',
'delete' => 'Usuwanie',
'delete_any' => 'Usuwanie dowolnego',
'force_delete' => 'Wymuszone usunięcie',
'force_delete_any' => 'Wymuszone usunięcie dowolnego',
'restore' => 'Przywracanie',
'reorder' => 'Zmiana kolejności',
'restore_any' => 'Przywracanie dowolnego',
'replicate' => 'Duplikowanie',
],
];