From: <rc...@us...> - 2017-09-07 03:43:34
|
Revision: 7825 http://sourceforge.net/p/web-erp/reponame/7825 Author: rchacon Date: 2017-09-07 03:43:31 +0000 (Thu, 07 Sep 2017) Log Message: ----------- Fix currency translation in PO_AuthorisationLevels.php. Modified Paths: -------------- trunk/PO_AuthorisationLevels.php trunk/doc/Change.log trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po Modified: trunk/PO_AuthorisationLevels.php =================================================================== --- trunk/PO_AuthorisationLevels.php 2017-09-06 06:08:38 UTC (rev 7824) +++ trunk/PO_AuthorisationLevels.php 2017-09-07 03:43:31 UTC (rev 7825) @@ -3,11 +3,15 @@ /* $Id$*/ include('includes/session.php'); - $Title = _('Purchase Order Authorisation Maintenance'); +$ViewTopic = ''; +$BookMark = 'PO_AuthorisationLevels'; include('includes/header.php'); -echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/group_add.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p><br />'; +echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, + '/images/group_add.png" title="', // Icon image. + $Title, '" /> ', // Icon title. + $Title, '</p>';// Page title. /*Note: If CanCreate==0 then this means the user can create orders @@ -127,6 +131,7 @@ <th>' . _('Create Order') . '</th> <th>' . _('Can Release') . '<br />' . _('Invoices') . '</th> <th>' . _('Authority Level') . '</th> + <th colspan="2"> </th> </tr>'; while ($myrow=DB_fetch_array($Result)) { @@ -143,7 +148,7 @@ echo '<tr> <td>' . $myrow['userid'] . '</td> <td>' . $myrow['realname'] . '</td> - <td>' . $myrow['currency'] . '</td> + <td>', _($myrow['currency']), '</td> <td>' . $DisplayCanCreate . '</td> <td>' . $DisplayOffHold . '</td> <td class="number">' . locale_number_format($myrow['authlevel'],$myrow['decimalplaces']) . '</td> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-09-06 06:08:38 UTC (rev 7824) +++ trunk/doc/Change.log 2017-09-07 03:43:31 UTC (rev 7825) @@ -1,5 +1,6 @@ webERP Change Log +17/09/06 RChacon: Fix currency translation in PO_AuthorisationLevels.php. 17/09/06 Exson: Fixed the bug that invoice cannot be issued by same transaction multiple times in SuppTrans.php. 17/08/30 Exson: Fixed the bug that can not display correctly while the same debtors has more than one transaction and make GL account which is not AR account or bank account transaction showing on too. 17/08/30 Exson: Fixed the default shipper does not work in CustomerBranches.php reported by Steven. 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 2017-09-06 06:08:38 UTC (rev 7824) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-09-07 03:43:31 UTC (rev 7825) @@ -8,7 +8,7 @@ "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-08-15 10:37-0600\n" -"PO-Revision-Date: 2017-08-15 10:58-0600\n" +"PO-Revision-Date: 2017-09-06 21:28-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" "Language: es_ES\n" @@ -22829,7 +22829,7 @@ #: PO_AuthorisationLevels.php:7 msgid "Purchase Order Authorisation Maintenance" -msgstr "Administrar la Autorización de Orden de Compra" +msgstr "Administrar la autorización de orden de compra" #: PO_AuthorisationLevels.php:53 msgid "There already exists an entry for this user/currency combination" @@ -22850,7 +22850,7 @@ #: PO_AuthorisationLevels.php:127 msgid "Create Order" -msgstr "Crear Pedido" +msgstr "Crear pedido" #: PO_AuthorisationLevels.php:128 msgid "Can Release" |