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.
36 lines
1.4 KiB
36 lines
1.4 KiB
<?php
|
|
|
|
use App\Domains\System\Enums\LifecycleStatus;
|
|
use App\Domains\System\Enums\SystemSettingKey;
|
|
|
|
return [
|
|
'lifecycle_status' => [
|
|
LifecycleStatus::ACTIVE->value => 'Aktif',
|
|
LifecycleStatus::INACTIVE->value => 'Tidak Aktif',
|
|
],
|
|
'system_setting_key' => [
|
|
SystemSettingKey::WEB_NAME->value => 'Nama Situs Web',
|
|
SystemSettingKey::WEB_DESCRIPTION->value => 'Deskripsi Situs Web',
|
|
SystemSettingKey::WEB_LOGO->value => 'Logo Situs Web',
|
|
SystemSettingKey::WEB_FAVICON->value => 'Favicon Situs Web',
|
|
SystemSettingKey::WEB_PHONE->value => 'Telepon Situs Web',
|
|
SystemSettingKey::WEB_EMAIL->value => 'Email Situs Web',
|
|
SystemSettingKey::WEB_ADDRESS->value => 'Alamat Situs Web',
|
|
SystemSettingKey::DEFAULT_LANGUAGE->value => 'Bahasa Default',
|
|
SystemSettingKey::TIMEZONE->value => 'Zona Waktu',
|
|
SystemSettingKey::GOOGLE_TAG_MANAGER_ID->value => 'ID Google Tag Manager',
|
|
SystemSettingKey::GOOGLE_WEBMASTER_ID->value => 'ID Google Webmaster',
|
|
],
|
|
'system_setting_key_options' => [
|
|
'default_language' => [
|
|
'en' => 'Inggris',
|
|
'id' => 'Indonesia',
|
|
],
|
|
'timezone' => [
|
|
'UTC' => 'UTC',
|
|
'Asia/Jakarta' => 'Waktu Indonesia Barat (Jakarta)',
|
|
'Asia/Makassar' => 'Waktu Indonesia Tengah (Makassar)',
|
|
'Asia/Jayapura' => 'Waktu Indonesia Timur (Jayapura)',
|
|
],
|
|
],
|
|
];
|
|
|