generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 195
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 #389 from dajanvulaj/patch-1
Added (sq) Albanian language
- 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' => 'Emri', | ||
'column.guard_name' => 'Emri i rojes', | ||
'column.roles' => 'Rolet', | ||
'column.permissions' => 'Lejet', | ||
'column.updated_at' => 'Përditësuar në', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Form Fields | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'field.name' => 'Emri', | ||
'field.guard_name' => 'Emri i rojes', | ||
'field.permissions' => 'Lejet', | ||
'field.select_all.name' => 'Zgjidh të gjitha', | ||
'field.select_all.message' => 'Aktivizo të gjitha lejet aktualisht <span class="text-primary font-medium">Aktivizuar</span> për këtë rol', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Navigation & Resource | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'nav.group' => 'Filament Shield', | ||
'nav.role.label' => 'Rolet', | ||
'nav.role.icon' => 'heroicon-o-shield-check', | ||
'resource.label.role' => 'Rol', | ||
'resource.label.roles' => 'Rolet', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Section & Tabs | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'section' => 'Seksioni', | ||
'resources' => 'Burimet', | ||
'widgets' => 'Widgets', | ||
'pages' => 'Faqet', | ||
'custom' => 'Lejet e personalizuara', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Messages | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'forbidden' => 'Nuk ke leje për të hyrë', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Resource Permissions' Labels | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'resource_permission_prefixes_labels' => [ | ||
'view' => 'Shiko', | ||
'view_any' => 'Shiko çdo', | ||
'create' => 'Krijo', | ||
'update' => 'Përditëso', | ||
'delete' => 'Fshi', | ||
'delete_any' => 'Fshi çdo', | ||
'force_delete' => 'Fshije me forcë', | ||
'force_delete_any' => 'Fshije me forcë çdo', | ||
'restore' => 'Rikthe', | ||
'reorder' => 'Rirendit', | ||
'restore_any' => 'Rikthe çdo', | ||
'replicate' => 'Ripërsërit', | ||
], | ||
]; |