Skip to content

Commit

Permalink
Merge pull request #374 from AngryDragonite/feat/add-pl-lang
Browse files Browse the repository at this point in the history
feat: add Polish translation
  • Loading branch information
bezhanSalleh committed May 14, 2024
2 parents ca21a5e + 873e2a1 commit aef5b92
Showing 1 changed file with 80 additions and 0 deletions.
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',
],
];

0 comments on commit aef5b92

Please sign in to comment.