|
From: <dai...@us...> - 2012-09-03 10:35:01
|
Revision: 5620
http://web-erp.svn.sourceforge.net/web-erp/?rev=5620&view=rev
Author: daintree
Date: 2012-09-03 10:34:54 +0000 (Mon, 03 Sep 2012)
Log Message:
-----------
typos per Thomas Lie
Modified Paths:
--------------
trunk/ContractBOM.php
trunk/CustomerReceipt.php
trunk/PO_Items.php
trunk/Z_ChangeStockCode.php
trunk/api/api_xml-rpc.php
trunk/includes/PDFSuppTransListingPageHeader.inc
Modified: trunk/ContractBOM.php
===================================================================
--- trunk/ContractBOM.php 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/ContractBOM.php 2012-09-03 10:34:54 UTC (rev 5620)
@@ -156,7 +156,7 @@
if($_SESSION['Contract'.$identifier]->Status!=2){
$_SESSION['Contract'.$identifier]->Remove_ContractComponent($_GET['Delete']);
} else {
- prnMsg( _('The contract BOM cannot be alterned because the customer has already placed the order'),'warn');
+ prnMsg( _('The contract BOM cannot be altered because the customer has already placed the order'),'warn');
}
}
Modified: trunk/CustomerReceipt.php
===================================================================
--- trunk/CustomerReceipt.php 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/CustomerReceipt.php 2012-09-03 10:34:54 UTC (rev 5620)
@@ -22,7 +22,7 @@
$Cancel=1;
}
-if (isset($_GET['Type']) and $_GET['Type']=='GL') {
+if (isset($_GET['Type']) AND $_GET['Type']=='GL') {
$_POST['GLEntry']=1;
}
Modified: trunk/PO_Items.php
===================================================================
--- trunk/PO_Items.php 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/PO_Items.php 2012-09-03 10:34:54 UTC (rev 5620)
@@ -704,7 +704,7 @@
}
echo '<td>' . $POLine->StockID . '</td>
- <td><input type="text" name="ItemDescription' . $POLine->LineNo.'" size="80" value="' .$POLine->ItemDescription .'" /></td>
+ <td><input type="text" name="ItemDescription' . $POLine->LineNo.'" size="30" value="' .$POLine->ItemDescription .'" /></td>
<td class="number">' . locale_number_format($POLine->Quantity,$POLine->DecimalPlaces) . '</td>
<td>' . $POLine->Units . '</td>
<td class="number">' . $DisplayPrice . '</td>
Modified: trunk/Z_ChangeStockCode.php
===================================================================
--- trunk/Z_ChangeStockCode.php 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/Z_ChangeStockCode.php 2012-09-03 10:34:54 UTC (rev 5620)
@@ -228,7 +228,7 @@
echo '<br />' . _('Changing the contract BOM table records');
$sql = "UPDATE contractbom SET stockid='" . $_POST['NewStockID'] . "' WHERE stockid='" . $_POST['OldStockID'] . "'";
- $ErrMsg = _('The SQL to contract BOM records failed');
+ $ErrMsg = _('The SQL to update the contract BOM records failed');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg,true);
echo ' ... ' . _('completed');
Modified: trunk/api/api_xml-rpc.php
===================================================================
--- trunk/api/api_xml-rpc.php 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/api/api_xml-rpc.php 2012-09-03 10:34:54 UTC (rev 5620)
@@ -2954,12 +2954,12 @@
return $rtn;
}
- $Description = _('Returns the webERP reports_dir for the company selected');
+ $Description = _('Returns the webERP reports directory for the company selected');
$Parameter[0]['name'] = _('User name');
$Parameter[0]['description'] = _('A valid weberp username. This user should have security access to this data.');
$Parameter[1]['name'] = _('User password');
$Parameter[1]['description'] = _('The weberp password associated with this user name. ');
- $ReturnValue[0] = _('If successful this function returns a string containing the path to the company reporte_dir') . ' ' . _('Otherwise an array of error codes is returned. ');
+ $ReturnValue[0] = _('If successful this function returns a string containing the path to the company reports directory') . ' ' . _('Otherwise an array of error codes is returned. ');
$GetReportsDirectory_sig = array(array($xmlrpcStruct),
array($xmlrpcStruct,$xmlrpcString,$xmlrpcString));
Modified: trunk/includes/PDFSuppTransListingPageHeader.inc
===================================================================
--- trunk/includes/PDFSuppTransListingPageHeader.inc 2012-09-01 05:19:56 UTC (rev 5619)
+++ trunk/includes/PDFSuppTransListingPageHeader.inc 2012-09-03 10:34:54 UTC (rev 5620)
@@ -12,13 +12,13 @@
Switch ($_POST['TransType']) {
case 20:
- $TransType=_('Suppier Invoices');
+ $TransType=_('Supplier Invoices');
break;
case 21:
- $TransType=_('Suppier Credit Notes');
+ $TransType=_('Supplier Credit Notes');
break;
case 22:
- $TransType=_('Suppier Payments');
+ $TransType=_('Supplier Payments');
}
$XPos = $Left_Margin;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|