CMXX - Initial translation engine

This commit is contained in:
“VeLiTi”
2025-01-08 13:20:09 +01:00
parent 2c44556567
commit 30b60c8652
7 changed files with 457 additions and 14 deletions

View File

@@ -24,11 +24,11 @@ $rma_status = 'Status';
$rma_sw_version_latest = 'Latest software version';
$rma_servicereport_latest = 'Servicereport created last 7days';
$rma_status0_text = '1';
$rma_status1_text = '2';
$rma_status2_text = '3';
$rma_status3_text = '4';
$rma_status4_text = '5';
$rma_status0_text = 'New';
$rma_status1_text = 'In Progress';
$rma_status2_text = 'Approved';
$rma_status3_text = 'Completed';
$rma_status4_text = 'Cancelled';
$rma_information = 'RMA information';
$rma_return_reason = 'Return reason';
@@ -179,9 +179,9 @@ $view .= '
<tr>
<th class="responsive-hidden">'.($rma_rowID ?? 'Request number').'</th>
<th>'.($rma_status ?? 'Status').'</th>
<th>'.getRelativeTime($general_created).'</th>
<th>'.$general_created.'</th>
<th>'.$general_createdby.'</th>
<th>'.getRelativeTime($general_updated).'</th>
<th>'.$general_updated.'</th>
<th>'.$general_actions.'</th>
</tr>
</thead>
@@ -206,9 +206,9 @@ $view .= '
<tr>
<td class="responsive-hidden">'.$response['rowID'].'</td>
<td>'.$$status_text.'</td>
<td>'.$response['created'].'</td>
<td>'.getRelativeTime($response['created']).'</td>
<td>'.$response['createdby'].'</td>
<td>'.$response['updated'].'</td>
<td>'.getRelativeTime($response['updated']).'</td>
<td><a href="index.php?page=rma&rowID='.$response['rowID'].'" class="btn_link">'.$general_view.'</a></td>
</tr>
';