mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => 'Profil',
|
|
'option' => [
|
|
'read' => 'Peut lire le profil? ',
|
|
'write' => 'Peut créer / éditer un profil? ',
|
|
'delete' => 'Peut supprimer le profil?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => 'Une robe',
|
|
'option' => [
|
|
'read' => 'Peut lire l\\'adresse? ',
|
|
'write' => 'Peut créer / modifier l\\'adresse? ',
|
|
'delete' => 'Peut effacer l\\'adresse?',
|
|
],
|
|
],
|
|
'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?',
|
|
],
|
|
],
|
|
];
|