Skip to content

Commit

Permalink
wheeldrive
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Apr 16, 2024
1 parent 764bac5 commit 7a9fa5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions application/language/english/itin_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@
$lang['electric'] = 'Electric';
$lang['cng'] = 'CNG';
$lang['lng'] = 'LNG';
$lang['wheeldrive_vhcl'] = 'Κίνηση';
$lang['wheeldrive_vhcl'] = 'Drive';
$lang['fwd'] = 'Front wheel drive';
$lang['rwd'] = 'Rear wheel drive';
$lang['awd'] = 'All whell drive - 4x4';
$lang['awd'] = 'AWD - 4x4';


//INSPECTION
Expand Down Expand Up @@ -127,6 +127,7 @@
$lang['pdf_model_vhcl'] = 'Model:';
$lang['pdf_nxtdate_vhcl'] = 'Next MOT Check:';
$lang['pdf_vin_vhcl'] = 'VIN:';
$lang['pdf_wheeldrive_vhcl'] = 'Drive:';
$lang['pdf_mlg_vhcl'] = 'Mileage*:';
$lang['pdf_displpow_vhcl'] = 'Power/Displac.:';
$lang['pdf_firstreg_vhcl'] = 'Reg. Date:';
Expand Down
1 change: 1 addition & 0 deletions application/language/greek/itin_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
$lang['pdf_model_vhcl'] = 'Εμπορική ονομασία:';
$lang['pdf_nxtdate_vhcl'] = 'Επόμενος Τεχ.ελεγχ.:';
$lang['pdf_vin_vhcl'] = 'Αριθμός Πλαισίου:';
$lang['pdf_wheeldrive_vhcl'] = 'Κίνηση:';
$lang['pdf_mlg_vhcl'] = 'Ένδειξη χλμ*<br />(καταγεγραμμένη):';
$lang['pdf_displpow_vhcl'] = 'Ισχύς/Κυβισμός:';
$lang['pdf_firstreg_vhcl'] = 'Ημ.1ης ταξινόμησης:';
Expand Down
2 changes: 1 addition & 1 deletion application/views/pdfreport.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<td class="frcellfld"><?= $this->lang->line('pdf_model_vhcl'); ?></td><td><?php echo $inspection->model_vhcl; ?></td><td class="frcellfld" nowrap><?= $this->lang->line('fuel_vhcl'); ?>:</td><td><?php echo $this->lang->line($inspection->fueltyp_vhcl); ?></td>
</tr>
<tr>
<td class="frcellfld"><?= $this->lang->line('pdf_vin_vhcl'); ?></td><td class="small"><?php echo $inspection->vin_vhcl; ?></td><td class="frcellfld"><?= $this->lang->line('pdf_mlg_vhcl'); ?></td><td><?php echo $inspection->mlg_vhcl; ?></td>
<td class="frcellfld"><?= $this->lang->line('pdf_wheeldrive_vhcl'); ?></td><td><?php echo $this->lang->line($inspection->wheeldrive_vhcl); ?></td><td class="frcellfld"><?= $this->lang->line('pdf_mlg_vhcl'); ?></td><td><?php echo $inspection->mlg_vhcl; ?></td>
</tr>
<tr>
<td class="frcellfld"><?= $this->lang->line('pdf_displpow_vhcl'); ?></td><td><?php echo $inspection->pow_vhcl; ?>kW / <?php echo $inspection->displ_vhcl; ?>ccm</td><td class="frcellfld" nowrap><?= $this->lang->line('pdf_firstreg_vhcl'); ?></td><td><?php echo date("m/Y", strtotime($inspection->firstreg_vhcl)); ?></td>
Expand Down

0 comments on commit 7a9fa5a

Please sign in to comment.