|
From: <rc...@us...> - 2014-12-27 19:53:44
|
Revision: 7044
http://sourceforge.net/p/web-erp/reponame/7044
Author: rchacon
Date: 2014-12-27 19:53:03 +0000 (Sat, 27 Dec 2014)
Log Message:
-----------
Allow translation of typename in GLAccountInquiry.php.
Modified Paths:
--------------
trunk/GLAccountInquiry.php
trunk/doc/Change.log
Modified: trunk/GLAccountInquiry.php
===================================================================
--- trunk/GLAccountInquiry.php 2014-12-27 18:28:36 UTC (rev 7043)
+++ trunk/GLAccountInquiry.php 2014-12-27 19:53:03 UTC (rev 7044)
@@ -1,5 +1,4 @@
<?php
-
/* $Id$*/
include ('includes/session.inc');
@@ -293,7 +292,7 @@
<td class="number"><b>%s</b></td>
<td>%s</td>
</tr>',
- $myrow['typename'],
+ _($myrow['typename']),
$URL_to_TransDetail,
$myrow['typeno'],
$FormatedTranDate,
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2014-12-27 18:28:36 UTC (rev 7043)
+++ trunk/doc/Change.log 2014-12-27 19:53:03 UTC (rev 7044)
@@ -1,5 +1,6 @@
webERP Change Log
+27/12/14 RChacon: Allow translation of typename in GLAccountInquiry.php.
27/12/14 RChacon: In AutomaticTranslationDescriptions.php, add comment for the SVN repository automatically updates the revision number, add $ViewTopic and $BookMark, and else if no translation. Add info to manual.
27/12/14 RChacon: Set boolean field needrevision to tiny integer with a maximum display width of 1, signed and not null. Add comments to sql file.
20/12/14 Exson: Make COGSGLPostings.php, SalesGLPostings.php SQL strict mode compatible.
|