mirror of
https://github.com/openclassify/openclassify.git
synced 2026-03-12 19:23:52 -05:00
* New translations field.php (Italian) * New translations field.php (Hebrew) * New translations field.php (Greek) * New translations field.php (German) * New translations field.php (Arabic) * New translations field.php (Spanish) * New translations field.php (Bulgarian) * New translations field.php (Hebrew) * New translations field.php (Greek)
37 lines
995 B
PHP
37 lines
995 B
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => 'Profile',
|
|
'option' => [
|
|
'read' => 'Can read profile?',
|
|
'write' => 'Can create/edit profile?',
|
|
'delete' => 'Can delete profile?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => 'Adress',
|
|
'option' => [
|
|
'read' => 'Can read adress?',
|
|
'write' => 'Can create/edit adress?',
|
|
'delete' => 'Can delete adress?',
|
|
],
|
|
],
|
|
'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?',
|
|
],
|
|
],
|
|
];
|