mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => '프로필',
|
|
'option' => [
|
|
'read' => '프로필을 읽을 수 있습니까?',
|
|
'write' => '프로필을 만들거나 편집 할 수 있습니까?',
|
|
'delete' => '프로필을 삭제할 수 있습니까?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => '주소',
|
|
'option' => [
|
|
'read' => '주소를 읽을 수 있습니까?',
|
|
'write' => '주소를 만들거나 편집 할 수 있습니까?',
|
|
'delete' => '주소를 삭제할 수 있습니까?',
|
|
],
|
|
],
|
|
'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?',
|
|
],
|
|
],
|
|
];
|