55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Buttons
|
|
'save' => 'Simpan',
|
|
'cancel' => 'Batal',
|
|
'delete' => 'Hapus',
|
|
'edit' => 'Edit',
|
|
'update' => 'Perbarui',
|
|
'create' => 'Buat',
|
|
'submit' => 'Kirim',
|
|
'confirm' => 'Konfirmasi',
|
|
'back' => 'Kembali',
|
|
'next' => 'Selanjutnya',
|
|
'logout' => 'Keluar',
|
|
'login' => 'Masuk',
|
|
'register' => 'Daftar',
|
|
|
|
// Messages
|
|
'welcome' => 'Selamat Datang',
|
|
'dashboard' => 'Dashboard',
|
|
'profile' => 'Profil',
|
|
'settings' => 'Pengaturan',
|
|
'success' => 'Berhasil',
|
|
'error' => 'Kesalahan',
|
|
'warning' => 'Peringatan',
|
|
'loading' => 'Sedang memuat...',
|
|
'no_data' => 'Tidak ada data',
|
|
|
|
// Auth
|
|
'email' => 'Email',
|
|
'password' => 'Password',
|
|
'confirm_password' => 'Konfirmasi Password',
|
|
'sign_in' => 'Masuk',
|
|
'sign_up' => 'Daftar',
|
|
'forgot_your_password' => 'Lupa password Anda?',
|
|
'dont_have_account' => 'Belum punya akun?',
|
|
'already_have_account' => 'Sudah punya akun?',
|
|
|
|
// Profile
|
|
'profile_information' => 'Informasi Profil',
|
|
'update_password' => 'Perbarui Password',
|
|
'current_password' => 'Password Saat Ini',
|
|
'new_password' => 'Password Baru',
|
|
'delete_account_permanently' => 'Hapus Akun Secara Permanen',
|
|
|
|
// Feedback
|
|
'saved_successfully' => 'Berhasil disimpan!',
|
|
'deleted_successfully' => 'Berhasil dihapus!',
|
|
'updated_successfully' => 'Berhasil diperbarui!',
|
|
'created_successfully' => 'Berhasil dibuat!',
|
|
'password_updated' => 'Password berhasil diperbarui!',
|
|
'profile_updated' => 'Profil berhasil diperbarui!',
|
|
];
|