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
@@ -28,7 +28,7 @@ export const registerSchema = z
.optional()
.nullable()
.refine((data) => !!data, {
message: 'Please select a Subscribe Plan',
message: 'Silakan pilih paket berlangganan',
}),
})
.refine((field) => field.password === field.rePassword, {
@@ -121,8 +121,8 @@ export const DialogRegister = () => {
<Combobox
id="subscribe_plan"
name="subscribe_plan"
label="Subscribe Plan"
placeholder="Pilih Subscribe Plan"
label="Paket Berlangganan"
placeholder="Pilih Paket Berlangganan"
options={subscribePlan}
/>