feat: update UI text to Indonesian language across various components and pages

This commit is contained in:
Ardeman
2025-03-25 01:20:20 +08:00
parent 1f2f15d204
commit 35c02d1643
14 changed files with 53 additions and 54 deletions
+3 -3
View File
@@ -39,7 +39,7 @@ export const UsersPage = () => {
data: 'created_at',
},
{
title: 'User',
title: 'Pengguna',
},
{
title: 'Phone',
@@ -70,7 +70,7 @@ export const UsersPage = () => {
return (
<div className="relative">
<TitleDashboard title="User" />
<TitleDashboard title="Pengguna" />
<div className="mb-8 flex items-end justify-between gap-5">
<div className="flex-1">{/* TODO: Filter */}</div>
@@ -80,7 +80,7 @@ export const UsersPage = () => {
data={dataTable || []}
columns={dataColumns}
slots={dataSlot}
title="Daftar User"
title="Daftar Pengguna"
/>
</div>
)