mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-24 22:11:01 -06:00
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => 'Profiel',
|
|
'option' => [
|
|
'read' => 'Kan profiel lezen? ',
|
|
'write' => 'Kan profiel maken / bewerken? ',
|
|
'delete' => 'Kan profiel verwijderen?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => 'Een jurk',
|
|
'option' => [
|
|
'read' => 'Kan adres lezen? ',
|
|
'write' => 'Kan adres worden gemaakt / bewerkt? ',
|
|
'delete' => 'Kan adres worden verwijderd?',
|
|
],
|
|
],
|
|
'education' => [
|
|
'name' => 'Education',
|
|
'option' => [
|
|
'read' => 'Can read education?',
|
|
'write' => 'Can create/edit education?',
|
|
'delete' => 'Can delete education?',
|
|
],
|
|
],
|
|
'education_part' => [
|
|
'name' => 'Education part',
|
|
'option' => [
|
|
'read' => 'Can read education part?',
|
|
'write' => 'Can create/edit education part?',
|
|
'delete' => 'Can delete education part?',
|
|
],
|
|
],
|
|
];
|