|
From: <te...@us...> - 2014-09-11 02:32:23
|
Revision: 6874
http://sourceforge.net/p/web-erp/reponame/6874
Author: tehonu
Date: 2014-09-11 02:32:16 +0000 (Thu, 11 Sep 2014)
Log Message:
-----------
Empty gettext strings fixed. Reported by Harald.
Modified Paths:
--------------
trunk/PrintWOItemSlip.php
trunk/WOCanBeProducedNow.php
Modified: trunk/PrintWOItemSlip.php
===================================================================
--- trunk/PrintWOItemSlip.php 2014-09-11 02:15:34 UTC (rev 6873)
+++ trunk/PrintWOItemSlip.php 2014-09-11 02:32:16 UTC (rev 6874)
@@ -167,11 +167,11 @@
$pdf->addTextWrap($Xpos,$YPos,150,$FontSize,_('Component Code'), 'left');
$pdf->addTextWrap(150,$YPos,50,$FontSize,_('Qty BOM'), 'right');
- $pdf->addTextWrap(200,$YPos,30,$FontSize,_(''), 'left');
+ $pdf->addTextWrap(200,$YPos,30,$FontSize,'', 'left');
$pdf->addTextWrap(230,$YPos,50,$FontSize,_('Qty Needed'), 'right');
- $pdf->addTextWrap(280,$YPos,30,$FontSize,_(''), 'left');
+ $pdf->addTextWrap(280,$YPos,30,$FontSize,'', 'left');
$pdf->addTextWrap(310,$YPos,50,$FontSize,_('Shrinkage'), 'right');
- $pdf->addTextWrap(360,$YPos,30,$FontSize,_(''), 'left');
+ $pdf->addTextWrap(360,$YPos,30,$FontSize,'', 'left');
$FontSize=10;
$YPos -= $line_height;
Modified: trunk/WOCanBeProducedNow.php
===================================================================
--- trunk/WOCanBeProducedNow.php 2014-09-11 02:15:34 UTC (rev 6873)
+++ trunk/WOCanBeProducedNow.php 2014-09-11 02:32:16 UTC (rev 6874)
@@ -50,7 +50,7 @@
<th>' . _('Needed') . '</th>
<th>' . _('Shrinkage') . '</th>
<th>' . _('UOM') . '</th>
- <th>' . _('') . '</th>
+ <th>' . '' . '</th>
<th>' . _('Result') . '</th>
</tr>';
|