mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
refactor(FE-114): translate RecordingForm titles and table headers to Indonesian
This commit is contained in:
@@ -561,7 +561,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
{/* Basic Info Card */}
|
{/* Basic Info Card */}
|
||||||
<div className='card bg-base-100 shadow mb-4'>
|
<div className='card bg-base-100 shadow mb-4'>
|
||||||
<div className='card-body flex flex-col gap-6'>
|
<div className='card-body flex flex-col gap-6'>
|
||||||
<h2 className='card-title'>Recording Information</h2>
|
<h2 className='card-title'>Informasi Recording</h2>
|
||||||
|
|
||||||
<div className='grid grid-cols-1 md:grid-cols-2 gap-6'>
|
<div className='grid grid-cols-1 md:grid-cols-2 gap-6'>
|
||||||
<SelectInput
|
<SelectInput
|
||||||
@@ -668,7 +668,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
{/* Feed Data Table */}
|
{/* Feed Data Table */}
|
||||||
<div className='card bg-base-100 shadow mb-4'>
|
<div className='card bg-base-100 shadow mb-4'>
|
||||||
<div className='card-body'>
|
<div className='card-body'>
|
||||||
<h2 className='card-title mb-4'>Feed Data</h2>
|
<h2 className='card-title mb-4'>Data Pakan</h2>
|
||||||
<div className='overflow-x-auto'>
|
<div className='overflow-x-auto'>
|
||||||
<table className='table'>
|
<table className='table'>
|
||||||
<thead>
|
<thead>
|
||||||
@@ -700,9 +700,9 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
)}
|
)}
|
||||||
<th>Feed Name</th>
|
<th>Nama Pakan</th>
|
||||||
<th>Feed Qty (Available Stock)</th>
|
<th>Total Stock pada saat ini</th>
|
||||||
<th>Feed Stock (Used)</th>
|
<th>Jumlah Stock yang digunakan</th>
|
||||||
{type !== 'detail' && <th>Action</th>}
|
{type !== 'detail' && <th>Action</th>}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -899,7 +899,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
{/* Body Weight Table */}
|
{/* Body Weight Table */}
|
||||||
<div className='card bg-base-100 shadow mb-4'>
|
<div className='card bg-base-100 shadow mb-4'>
|
||||||
<div className='card-body'>
|
<div className='card-body'>
|
||||||
<h2 className='card-title mb-4'>Body Weight</h2>
|
<h2 className='card-title mb-4'>Berat Ayam</h2>
|
||||||
<div className='overflow-x-auto'>
|
<div className='overflow-x-auto'>
|
||||||
<table className='table'>
|
<table className='table'>
|
||||||
<thead>
|
<thead>
|
||||||
@@ -931,9 +931,9 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
)}
|
)}
|
||||||
<th>Chicken Weight</th>
|
<th>Berat (Gram)</th>
|
||||||
<th>Chicken Count</th>
|
<th>Jumlah Ayam</th>
|
||||||
<th>Average Weight</th>
|
<th>Rata-rata berat Ayam</th>
|
||||||
{type !== 'detail' && <th>Action</th>}
|
{type !== 'detail' && <th>Action</th>}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -1161,9 +1161,9 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
)}
|
)}
|
||||||
<th>Vaccine Name</th>
|
<th>Name Vaksin</th>
|
||||||
<th>Total Stock (Available Stock)</th>
|
<th>Total Stock pada saat ini</th>
|
||||||
<th>Used Stock</th>
|
<th>Jumlah Stock yang digunakan</th>
|
||||||
{type !== 'detail' && <th>Action</th>}
|
{type !== 'detail' && <th>Action</th>}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -1369,7 +1369,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
{/* Mortality Table */}
|
{/* Mortality Table */}
|
||||||
<div className='card bg-base-100 shadow mb-4'>
|
<div className='card bg-base-100 shadow mb-4'>
|
||||||
<div className='card-body'>
|
<div className='card-body'>
|
||||||
<h2 className='card-title mb-4'>Mortality</h2>
|
<h2 className='card-title mb-4'>Mortalitas</h2>
|
||||||
<div className='overflow-x-auto'>
|
<div className='overflow-x-auto'>
|
||||||
<table className='table'>
|
<table className='table'>
|
||||||
<thead>
|
<thead>
|
||||||
@@ -1401,8 +1401,8 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
)}
|
)}
|
||||||
<th>Condition</th>
|
<th>Kondisi/Alasan Mortalitas</th>
|
||||||
<th>Count</th>
|
<th>Jumlah</th>
|
||||||
{type !== 'detail' && <th>Action</th>}
|
{type !== 'detail' && <th>Action</th>}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
Reference in New Issue
Block a user