generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 17
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 #46 from Senexis/feature-nl
Add Dutch 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' => 'Titel', | ||
'url' => 'URL', | ||
'linkable_type' => 'Type', | ||
'linkable_id' => 'ID', | ||
], | ||
'resource' => [ | ||
'name' => [ | ||
'label' => 'Naam', | ||
], | ||
'locations' => [ | ||
'label' => 'Locaties', | ||
'empty' => 'Niet ingesteld', | ||
], | ||
'items' => [ | ||
'label' => 'Items', | ||
], | ||
'is_visible' => [ | ||
'label' => 'Zichtbaarheid', | ||
'visible' => 'Zichtbaar', | ||
'hidden' => 'Verborgen', | ||
], | ||
], | ||
'actions' => [ | ||
'add' => [ | ||
'label' => 'Toevoegen aan menu', | ||
], | ||
'locations' => [ | ||
'label' => 'Locaties', | ||
'heading' => 'Locaties beheren', | ||
'description' => 'Stel in welk menu op welke locatie wordt getoond.', | ||
'submit' => 'Wijzigingen opslaan', | ||
'form' => [ | ||
'location' => [ | ||
'label' => 'Locatie', | ||
], | ||
'menu' => [ | ||
'label' => 'Gekoppeld menu', | ||
], | ||
], | ||
'empty' => [ | ||
'heading' => 'Geen locaties gevonden', | ||
], | ||
], | ||
], | ||
'items' => [ | ||
'expand' => 'Uitklappen', | ||
'empty' => [ | ||
'heading' => 'Dit menu heeft geen items.', | ||
], | ||
], | ||
'custom_link' => 'Aangepaste link', | ||
'open_in' => [ | ||
'label' => 'Openen op', | ||
'options' => [ | ||
'self' => 'Huidig tabblad', | ||
'blank' => 'Nieuw tabblad', | ||
'parent' => 'Bovenliggend tabblad', | ||
'top' => 'Hoofdtabblad', | ||
], | ||
], | ||
'notifications' => [ | ||
'created' => [ | ||
'title' => 'Link aangemaakt', | ||
], | ||
'locations' => [ | ||
'title' => 'Menulocaties bijgewerkt', | ||
], | ||
], | ||
'panel' => [ | ||
'empty' => [ | ||
'heading' => 'Geen items gevonden', | ||
'description' => 'Dit menu heeft geen items.', | ||
], | ||
'pagination' => [ | ||
'previous' => 'Vorige', | ||
'next' => 'Volgende', | ||
], | ||
], | ||
]; |