generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create filament-bookmarks-menu.php (#9)
- Loading branch information
Showing
1 changed file
with
61 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,61 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Filament Bookmarks Menu | ||
|-------------------------------------------------------------------------- | ||
| | ||
| All translateable strings goes into this file for this plugin | ||
| | ||
*/ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Menu labels | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
'label.global' => 'Global', | ||
'label.private' => 'Privado', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Navigation & Resource | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
'nav.label' => 'Marcadores', | ||
'nav.icon' => 'heroicon-o-bookmark', | ||
|
||
'resource.label.bookmark' => 'Marcador', | ||
'resource.label.bookmarks' => 'Marcadores', | ||
|
||
'resource.form.label' => 'Etiqueta', | ||
'resource.form.url' => 'Url', | ||
'resource.form.target' => 'Destino', | ||
'resource.form.sort_order' => 'Orden', | ||
'resource.form.user' => 'Usuario', | ||
|
||
'resource.form.target.self' => 'Mismo marco (_self)', | ||
'resource.form.target.top' => 'Misma ventana (_top)', | ||
'resource.form.target.blank' => 'Nueva Ventana (_blank)', | ||
|
||
'resource.form.user.placeholder.label' => 'Seleccionar usuario', | ||
'resource.form.target.placeholder.label' => 'Seleccionar destino', | ||
|
||
'resource.table.label' => 'Etiqueta', | ||
'resource.table.url' => 'Url', | ||
'resource.table.target' => 'Destino', | ||
'resource.table.sort_order' => 'Orden', | ||
'resource.table.user' => 'Pertenece al usuario', | ||
|
||
'delete.confirm' => '¿Seguro?', | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Notifications | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
'notification.add' => '¡Tu marcador fue agregado correctamente!', | ||
'notification.remove' => '¡Tu marcador fue borrado correctamente!', | ||
'notification.empty' => 'No tienes marcadores. ¡Agrega uno y vuelve para encontrarlo aquí!', | ||
]; |