generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from boyfromhell/main
- Loading branch information
Showing
1 changed file
with
80 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,80 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Table Columns | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'column.name' => 'Număr', | ||
'column.guard_name' => 'Numele paznicului', | ||
'column.roles' => 'Roluri', | ||
'column.permissions' => 'Permisiuni', | ||
'column.updated_at' => 'Actualizat la', | ||
|
||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Form Fields | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'field.name' => 'Nume', | ||
'field.guard_name' => 'Numele paznicului', | ||
'field.permissions' => 'Permisiuni', | ||
'field.select_all.name' => 'Selectați tot', | ||
'field.select_all.message' => 'Activați toate permisiunile în prezent <span class="text-primary font-medium">Activate</span> pentru acest rol', | ||
|
||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Navigation & Resources | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'nav.group' => 'Scut', | ||
'nav.role.label' => 'Roluri', | ||
'nav.role.icon' => 'heroicon-o-shield-check', | ||
'resource.label.role' => 'Rol', | ||
'resource.label.roles' => 'Roluri', | ||
|
||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Section & Tabs | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'section' => 'Entități', | ||
'resources' => 'Resurse', | ||
'widgets' => 'Widget-uri', | ||
'pages' => 'Pagini', | ||
'custom' => 'Permisiuni personalizate', | ||
|
||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Posts | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'forbidden' => 'Nu aveți permisiunea de a accesa', | ||
|
||
/* | ||
|------------------------------------------------- ------------------------- | ||
| Resource Permissions' Labels | ||
|------------------------------------------------- ------------------------- | ||
*/ | ||
|
||
'resource_permission_prefixes_labels' => [ | ||
'view' => 'Vizualizare', | ||
'view_any' => 'Vedeți orice', | ||
'create' => 'Creează', | ||
'update' => 'Actualizare', | ||
'delete' => 'Șterge', | ||
'delete_any' => 'Șterge orice', | ||
'force_delete' => 'Forțat ștergerea', | ||
'force_delete_any' => 'Forțat ștergerea oricărei', | ||
'restore' => 'Restaurare', | ||
'reorder' => 'Reordonare', | ||
'restore_any' => 'Restaurează orice', | ||
'replicate' => 'Replicare', | ||
], | ||
]; |