generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 15
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 #40 from StevyMarlino/feat/add-fr-lang
feat: Add french lang for the translation.
- Loading branch information
Showing
1 changed file
with
85 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,85 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
return [ | ||
'form' => [ | ||
'title' => 'Titre', | ||
'url' => 'URL', | ||
'linkable_type' => 'Type', | ||
'linkable_id' => 'ID', | ||
], | ||
'resource' => [ | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'locations' => [ | ||
'label' => 'Emplacements', | ||
'empty' => 'Non assigné', | ||
], | ||
'items' => [ | ||
'label' => 'Éléments', | ||
], | ||
'is_visible' => [ | ||
'label' => 'Visibilité', | ||
'visible' => 'Visible', | ||
'hidden' => 'Masqué', | ||
], | ||
], | ||
'actions' => [ | ||
'add' => [ | ||
'label' => 'Ajouter au menu', | ||
], | ||
'locations' => [ | ||
'label' => 'Emplacements', | ||
'heading' => 'Gérer les emplacements', | ||
'description' => 'Choisissez quel menu apparaît à chaque emplacement.', | ||
'submit' => 'Mettre à jour', | ||
'form' => [ | ||
'location' => [ | ||
'label' => 'Emplacement', | ||
], | ||
'menu' => [ | ||
'label' => 'Menu assigné', | ||
], | ||
], | ||
'empty' => [ | ||
'heading' => 'Aucun emplacement enregistré', | ||
], | ||
], | ||
], | ||
'items' => [ | ||
'expand' => 'Développer', | ||
'empty' => [ | ||
'heading' => 'Il n’y a aucun élément dans ce menu.', | ||
], | ||
], | ||
'custom_link' => 'Lien personnalisé', | ||
'open_in' => [ | ||
'label' => 'Ouvrir dans', | ||
'options' => [ | ||
'self' => 'Même onglet', | ||
'blank' => 'Nouvel onglet', | ||
'parent' => 'Onglet parent', | ||
'top' => 'Onglet supérieur', | ||
], | ||
], | ||
'notifications' => [ | ||
'created' => [ | ||
'title' => 'Lien créé', | ||
], | ||
'locations' => [ | ||
'title' => 'Emplacements de menu mis à jour', | ||
], | ||
], | ||
'panel' => [ | ||
'empty' => [ | ||
'heading' => 'Aucun élément trouvé', | ||
'description' => 'Il n’y a aucun élément dans ce menu.', | ||
], | ||
'pagination' => [ | ||
'previous' => 'Précédent', | ||
'next' => 'Suivant', | ||
], | ||
], | ||
]; |