You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
597 B
25 lines
597 B
<?php
|
|
|
|
use App\Domains\Account\Enums\GenderOption;
|
|
|
|
return [
|
|
'gender' => [
|
|
GenderOption::MALE->value => 'Laki-laki',
|
|
GenderOption::FEMALE->value => 'Perempuan',
|
|
],
|
|
'user_settings' => [
|
|
'notification' => 'Notifikasi',
|
|
'language' => 'Bahasa',
|
|
'timezone' => 'Zona Waktu',
|
|
'options' => [
|
|
'language' => [
|
|
'en' => 'Inggris',
|
|
'id' => 'Indonesia',
|
|
],
|
|
'notification' => [
|
|
'on' => 'Aktif',
|
|
'off' => 'Nonaktif',
|
|
],
|
|
],
|
|
],
|
|
];
|
|
|