feat: update UI text to Indonesian language across various components and pages
This commit is contained in:
@@ -54,7 +54,7 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
||||
|
||||
if (fetcher.data?.success) {
|
||||
toast.success(
|
||||
`Subscribe Plan berhasil ${subscribePlanData ? 'diupdate' : 'dibuat'}!`,
|
||||
`Paket Berlangganan berhasil ${subscribePlanData ? 'diupdate' : 'dibuat'}!`,
|
||||
)
|
||||
navigate('/lg-admin/subscribe-plan')
|
||||
}
|
||||
@@ -69,7 +69,7 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
||||
return (
|
||||
<div className="relative">
|
||||
<TitleDashboard
|
||||
title={`${subscribePlanData ? 'Update' : 'Buat'} Subscribe Plan`}
|
||||
title={`${subscribePlanData ? 'Update' : 'Buat'} Paket Berlangganan`}
|
||||
/>
|
||||
<div>
|
||||
<RemixFormProvider {...formMethods}>
|
||||
@@ -82,8 +82,8 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
||||
<div className="flex items-end justify-between gap-4">
|
||||
<Input
|
||||
id="name"
|
||||
label="Subscribe Plan"
|
||||
placeholder="Masukkan Nama Subscribe Plan"
|
||||
label="Paket Berlangganan"
|
||||
placeholder="Masukkan Nama Paket Berlangganan"
|
||||
name="name"
|
||||
className="border-0 bg-white shadow read-only:bg-gray-100 focus:ring-1 focus:ring-[#2E2F7C] focus:outline-none disabled:bg-gray-100"
|
||||
labelClassName="text-sm font-medium text-[#363636]"
|
||||
@@ -92,7 +92,7 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
||||
<Input
|
||||
id="code"
|
||||
label="Kode"
|
||||
placeholder="Masukkan Kode Subscribe Plan"
|
||||
placeholder="Masukkan Kode Paket Berlangganan"
|
||||
readOnly
|
||||
name="code"
|
||||
className="border-0 bg-white shadow read-only:bg-gray-100 focus:ring-1 focus:ring-[#2E2F7C] focus:outline-none disabled:bg-gray-100"
|
||||
@@ -112,9 +112,9 @@ export const FormSubscribePlanPage = (properties: TProperties) => {
|
||||
<div className="flex items-end justify-between gap-4">
|
||||
<Input
|
||||
id="length"
|
||||
label="Length"
|
||||
label="Durasi"
|
||||
type="number"
|
||||
placeholder="Masukkan Subscribe Plan Length (days)"
|
||||
placeholder="Masukkan Durasi Paket Berlangganan (hari)"
|
||||
name="length"
|
||||
className="border-0 bg-white shadow read-only:bg-gray-100 focus:ring-1 focus:ring-[#2E2F7C] focus:outline-none"
|
||||
labelClassName="text-sm font-medium text-[#363636]"
|
||||
|
||||
Reference in New Issue
Block a user