From: <rc...@us...> - 2013-06-06 16:33:26
|
Revision: 6008 http://sourceforge.net/p/web-erp/reponame/6008 Author: rchacon Date: 2013-06-06 16:33:23 +0000 (Thu, 06 Jun 2013) Log Message: ----------- PO_PDFOrderPageHeader.inc: Includes CurrenciesArray.php to get the currency name. es_ES.utf8: Several translation ajustements. Modified Paths: -------------- trunk/includes/PO_PDFOrderPageHeader.inc trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po Modified: trunk/includes/PO_PDFOrderPageHeader.inc =================================================================== --- trunk/includes/PO_PDFOrderPageHeader.inc 2013-06-06 15:05:33 UTC (rev 6007) +++ trunk/includes/PO_PDFOrderPageHeader.inc 2013-06-06 16:33:23 UTC (rev 6008) @@ -67,7 +67,8 @@ $LeftOvers = $pdf->addTextWrap($FormDesign->Comments->x, $Page_Height - $FormDesign->Comments->y-$line_height,$FormDesign->Comments->Length,$FormDesign->Comments->FontSize,$LeftOvers, 'left'); } /*Now the currency the order is in */ -$pdf->addText($FormDesign->Currency->x,$Page_Height - $FormDesign->Currency->y,$FormDesign->Currency->FontSize, _('All amounts stated in').' - ' . $POHeader['currcode']); +include($PathPrefix . 'includes/CurrenciesArray.php'); /* To get the currency name */ +$pdf->addText($FormDesign->Currency->x,$Page_Height - $FormDesign->Currency->y,$FormDesign->Currency->FontSize, _('All amounts stated in').' - ' . $POHeader['currcode'] . ' ' . $CurrencyArray[$POHeader['currcode']]['Currency']); /*draw a square grid for entering line headings */ $pdf->Rectangle($FormDesign->HeaderRectangle->x, $Page_Height - $FormDesign->HeaderRectangle->y, $FormDesign->HeaderRectangle->width,$FormDesign->HeaderRectangle->height); /*Set up headings */ @@ -80,4 +81,4 @@ $pdf->addText($FormDesign->Headings->Column7->x,$Page_Height - $FormDesign->Headings->Column7->y, $FormDesign->Headings->Column7->FontSize, _('Total') ); /*draw a rectangle to hold the data lines */ $pdf->Rectangle($FormDesign->DataRectangle->x, $Page_Height - $FormDesign->DataRectangle->y, $FormDesign->DataRectangle->width,$FormDesign->DataRectangle->height); -?> \ No newline at end of file +?> Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2013-06-06 15:05:33 UTC (rev 6007) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2013-06-06 16:33:23 UTC (rev 6008) @@ -8,7 +8,7 @@ "Project-Id-Version: WebERP 4.081\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-05-25 11:02+1200\n" -"PO-Revision-Date: 2013-06-06 08:52-0600\n" +"PO-Revision-Date: 2013-06-06 09:12-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" "Language: es_ES\n" @@ -16205,6 +16205,7 @@ msgid "" "Your customer login will only allow you to view your own purchase orders" msgstr "" +"Su sesión de cliente sólo le permitirá ver sus propias órdenes de compra" #: OrderDetails.php:70 msgid "Order Header Details For Order No" @@ -19899,7 +19900,7 @@ #: PO_PDFPurchOrder.php:20 PO_PDFPurchOrder.php:123 #: includes/MainMenuLinksArray.php:176 msgid "Purchase Order Inquiry" -msgstr "Consultar Órdenes de Compra" +msgstr "Consultar órdenes de compra" #: PO_PDFPurchOrder.php:30 msgid "This page must be called with a purchase order number to print" |