[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[3516] trunk/templates/demo



Revision: 3516
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3516&view=rev
Author:   einhverfr
Date:     2011-07-15 02:30:47 +0000 (Fri, 15 Jul 2011)

Log Message:
-----------
HTML templates now fully support localized strings in the templates

Modified Paths:
--------------
    trunk/templates/demo/request_quotation.html
    trunk/templates/demo/sales_order.html
    trunk/templates/demo/sales_quotation.html
    trunk/templates/demo/statement.html
    trunk/templates/demo/timecard.html
    trunk/templates/demo/work_order.html

Modified: trunk/templates/demo/request_quotation.html
===================================================================
--- trunk/templates/demo/request_quotation.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/request_quotation.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -9,7 +9,8 @@
     <td width=10>&nbsp;</td>
   
     <th colspan=3>
-      <h4>R E Q U E S T &nbsp;&nbsp; F O R &nbsp;&nbsp; Q U O T A T I O N</h4>
+      <h4 style="text-transform:uppercase; letter-spacing:0.5em">
+        <?lsmb text('Request for Quotation') ?><h4>
     </th>
   </tr>
 
@@ -19,8 +20,10 @@
     <td>
       <table width="100%">
 	<tr bgcolor=000000>
-	  <th align=left width="50%"><font color=ffffff>To:</th>
-	  <th align=left width="50%"><font color=ffffff>Ship To:</th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('To:') ?>
+         </th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('Ship To:') ?>
+         </th>
 	</tr>
 
 	<tr valign=top>
@@ -40,15 +43,15 @@
           <br>
 	  
 	  <?lsmb IF contact ?>
-	  <br>Attn: <?lsmb contact ?>
+	  <br><?lsmb text('Attn: [_1]', contact) ?>
 	  <?lsmb END ?>
 	  
 	  <?lsmb IF vendorphone ?>
-	  <br>Tel: <?lsmb vendorphone ?>
+	  <br><?lsmb text('Tel: [_1]', vendorphone) ?>
 	  <?lsmb END ?>
 	  
 	  <?lsmb IF vendorfax ?>
-	  <br>Fax: <?lsmb vendorfax ?>
+	  <br><?lsmb text('Fax: [_1]', vendorfax) ?>
 	  <?lsmb END ?>
 	  </td>
 
@@ -68,15 +71,15 @@
           <br>
 
 	  <?lsmb IF shiptocontact ?>
-	  <br>Attn: <?lsmb shiptocontact ?>
+	  <br><?lsmb text('Attn: [_1]', shiptocontact) ?>
 	  <?lsmb END ?>
 	  
 	  <?lsmb IF shiptophone ?>
-	  <br>Tel: <?lsmb shiptophone ?>
+	  <br><?lsmb text('Tel: [_1]', shiptophone) ?>
 	  <?lsmb END ?>
 	  
 	  <?lsmb IF shiptofax ?>
-	  <br>Fax: <?lsmb shiptofax ?>
+	  <br><?lsmb text('Fax: [_1]', shiptofax) ?>
 	  <?lsmb END ?>
 	  </td>
 	</tr>
@@ -92,12 +95,12 @@
     <td>
       <table width=100% border=1>
 	<tr>
-	  <th width=17% align=left>RFQ #</th>
-	  <th width=17% align=left>Date</th>
-	  <th width=17% align=left>Required by</th>
-	  <th width=17% align=left>Contact</th>
-	  <th width=17% align=left>Shipping Point</th>
-	  <th width=15% align=left>Ship via</th>
+	  <th width=17% align=left><?lsmb text('RFQ #') ?></th>
+	  <th width=17% align=left><?lsmb text('Date') ?></th>
+	  <th width=17% align=left><?lsmb text('Required by') ?></th>
+	  <th width=17% align=left><?lsmb text('Contact') ?></th>
+	  <th width=17% align=left><?lsmb text('Shipping Point') ?></th>
+	  <th width=15% align=left><?lsmb text('Ship via') ?></th>
 	</tr>
 
 	<tr>
@@ -117,7 +120,7 @@
   <tr>
     <td>&nbsp;</td>
     
-    <td>Please provide price and delivery time for the following items:</td>
+    <td><?lsmb text('Please provide price and delivery time for the following items:') ?></td>
   </tr>
 
   <tr height="10"></tr>
@@ -128,14 +131,14 @@
     <td>
       <table width="100%">
 	<tr>
-	  <th align=right>Item</th>
-	  <th align=left>Number</th>
-	  <th align=left><font color=ffffff>Description</th>
-	  <th>Qt'y</th>
+	  <th align=right><?lsmb text('Item') ?></th>
+	  <th align=left><?lsmb text('Number') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Description') ?></th>
+	  <th><?lsmb text('Qty') ?></th>
 	  <th>&nbsp;</th>
-	  <th>Delivery</th>
-	  <th>Unit Price</th>
-	  <th>Extended</th>
+	  <th><?lsmb text('Delivery') ?></th>
+	  <th<?lsmb text('Unit Price') ?></th>
+	  <th<?lsmb text('Extended') ?></th>
 	</tr>
 
         <?lsmb FOREACH number ?>
@@ -164,7 +167,7 @@
     <td>
       <table width="100%">
 	<tr valign=top>
-	  <td>Notes</td>
+	  <td<?lsmb text('Notes') ?></td>
 	  <td><?lsmb notes ?></td>
 	</tr>
 

Modified: trunk/templates/demo/sales_order.html
===================================================================
--- trunk/templates/demo/sales_order.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/sales_order.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -9,7 +9,8 @@
     <td width=10>&nbsp;</td>
     
     <th colspan=3>
-      <h4>S A L E S &nbsp;&nbsp; O R D E R</h4>
+      <h4 style="text-transform:uppercase; letter-spacing:0.5em">
+          <?lsmb text('Sales Order') ?></h4>
     </th>
   </tr>
 
@@ -19,8 +20,9 @@
     <td>
       <table width=100% cellspacing=0 cellpadding=0>
 	<tr bgcolor=000000>
-	  <th align=left width="50%"><font color=ffffff>To</th>
-	  <th align=left width="50%"><font color=ffffff>Ship To</th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('To') ?></th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('Ship To') ?>
+          </th>
 	</tr>
 
 	<tr valign=top>
@@ -39,13 +41,13 @@
 	  <?lsmb END ?>
           <br>
 	  <?lsmb IF contact ?>
-	  <br>Attn: <?lsmb contact ?>
+	  <br><?lsmb text('Attn: [_1]', contact) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF customerphone ?>
-	  <br>Tel: <?lsmb customerphone ?>
+	  <br><?lsmb text('Tel: [_1]', customerphone) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF customerfax ?>
-	  <br>Fax: <?lsmb customerfax ?>
+	  <br><?lsmb text('Fax: [_1]', customerfax) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF email ?>
 	  <br><?lsmb email ?>
@@ -70,10 +72,10 @@
           <br><?lsmb shiptocontact ?>
           <?lsmb END ?>
 	  <?lsmb IF shiptophone ?>
-	  <br>Tel: <?lsmb shiptophone ?>
+	  <br><?lsmb text('Tel: [_1]', shiptophone) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF shiptofax ?>
-	  <br>Fax: <?lsmb shiptofax ?>
+	  <br><?lsmb text('Fax: [_1]', shiptofax) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF shiptoemail ?>
 	  <br><?lsmb shiptoemail ?>
@@ -92,12 +94,12 @@
     <td>
       <table width=100% border=1>
 	<tr>
-	  <th width=17% align=left nowrap>Order #</th>
-	  <th width=17% align=left>Order Date</th>
-	  <th width=17% align=left>Required by</th>
-	  <th width=17% align=left nowrap>Salesperson</th>
-	  <th width=17% align=left nowrap>Shipping Point</th>
-	  <th width=15% align=left nowrap>Ship Via</th>
+	  <th width=17% align=left nowrap><?lsmb text('Order #') ?></th>
+	  <th width=17% align=left><?lsmb text('Order Date') ?></th>
+	  <th width=17% align=left><?lsmb text('Required by') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Salesperson') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Shipping Point') ?></th>
+	  <th width=15% align=left nowrap><?lsmb text('Ship Via') ?></th>
 	</tr>
 
 	<tr>
@@ -118,14 +120,14 @@
     <td>
       <table width="100%">
 	<tr bgcolor=000000>
-	  <th align=right><font color=ffffff>Item</th>
-	  <th align=left><font color=ffffff>Number</th>
-	  <th align=left><font color=ffffff>Description</th>
-	  <th><font color=ffffff>Qt'y</th>
+	  <th align=right><font color=ffffff><?lsmb text('Item') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Number') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Description') ?></th>
+	  <th><font color=ffffff><?lsmb text('Qty') ?></th>
 	  <th>&nbsp;</th>
-	  <th><font color=ffffff>Price</th>
-	  <th><font color=ffffff>Disc %</th>
-	  <th><font color=ffffff>Amount</th>
+	  <th><font color=ffffff><?lsmb text('Price') ?></th>
+	  <th><font color=ffffff><?lsmb text('Disc %') ?></th>
+	  <th><font color=ffffff><?lsmb text('Amount') ?></th>
 	</tr>
 
 	<?lsmb FOREACH number ?>
@@ -148,10 +150,10 @@
 	
 	<tr>
 	  <?lsmb IF taxincluded ?>
-	  <th colspan=6 align=right>Total</th>
+	  <th colspan=6 align=right><?lsmb text('Total') ?></th>
 	  <td colspan=2 align=right><?lsmb invtotal ?></td>
 	  <?lsmb ELSE ?>
-	  <th colspan=6 align=right>Subtotal</th>
+	  <th colspan=6 align=right><?lsmb text('Subtotal') ?></th>
 	  <td colspan=2 align=right><?lsmb subtotal ?></td>
 	  <?lsmb END ?>
 	</tr>
@@ -173,10 +175,10 @@
 	  <td colspan=4>
           <?lsmb text_amount ?> ***** <?lsmb decimal ?>/100
 	  <?lsmb IF terms ?>
-	  <br>Terms Net <b><?lsmb terms ?></b> days
+	  <br><?lsmb text('Terms Net [_1] days', terms) ?>
 	  <?lsmb END ?>
 	  </td>
-	  <th colspan=2 align=right>Total</th>
+	  <th colspan=2 align=right><?lsmb text('Total') ?></th>
 	  <th colspan=2 align=right><?lsmb ordtotal ?></th>
 	</tr>
 	
@@ -195,11 +197,11 @@
       <table width="100%">
 	<tr valign=top>
 	  <?lsmb IF notes ?>
-	  <td>Notes</td>
+	  <td><?lsmb text('Notes') ?></td>
 	  <td><?lsmb notes ?></td>
 	  <?lsmb END ?>
 	  <td align=right nowrap>
-	  All prices in <?lsmb currency ?> Funds</b>
+	  <?lsmb text('All prices in [_1] Funds', currency) ?>
 	  </td>
 	</tr>
       </table>
@@ -213,7 +215,7 @@
       <table width="100%">
 	<tr valign=top>
 	  <td width="60%"><font size=-3>
-	  Special order items are subject to a 10% order cancellation fee.
+	  <?lsmb text('Special order items are subject to a 10% order cancellation fee.') ?>
 	  </font>
 	  </td>
 	  <td width="40%">

Modified: trunk/templates/demo/sales_quotation.html
===================================================================
--- trunk/templates/demo/sales_quotation.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/sales_quotation.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -8,8 +8,8 @@
   <tr>
     <td width=10>&nbsp;</td>
   
-    <th colspan=3>
-      <h4>Q U O T A T I O N</h4>
+    <th colspan=3 style="text-transform:uppercase; letter-spacing:0.5em">
+      <h4><?lsmb text('Quotation') ?></h4>
     </th>
   </tr>
 
@@ -36,15 +36,15 @@
 
 	  <br>
 	  <?lsmb IF contact ?>
-	  <br>Attn: <?lsmb contact ?>
+	  <br><?lsmb text('Attn: [_1]', contact) ?>
 	  <?lsmb END ?>
 
 	  <?lsmb IF customerphone ?>
-	  <br>Tel: <?lsmb customerphone ?>
+	  <br><?lsmb text('Tel: [_1]', customerphone) ?>
 	  <?lsmb END ?>
 
 	  <?lsmb IF customerfax ?>
-	  <br>Fax: <?lsmb customerfax ?>
+	  <br><?lsmb text('Fax: [_1]', customerfax) ?>
 	  <?lsmb END ?>
 
 	  <?lsmb IF email ?>
@@ -63,12 +63,12 @@
     <td>
       <table width=100% border=1>
 	<tr>
-	  <th width=17% align=left nowrap>Number</th>
-	  <th width=17% align=left>Date</th>
-	  <th width=17% align=left>Valid until</th>
-	  <th width=17% align=left nowrap>Contact</th>
-	  <th width=17% align=left nowrap>Shipping Point</th>
-	  <th width=15% align=left nowrap>Ship via</th>
+	  <th width=17% align=left nowrap><?lsmb text('Number') ?></th>
+	  <th width=17% align=left><?lsmb text('Date') ?></th>
+	  <th width=17% align=left><?lsmb text('Valid until') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Contact') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Shipping Point') ?></th>
+	  <th width=15% align=left nowrap><?lsmb text('Ship via') ?></th>
 	</tr>
 
 	<tr>
@@ -89,14 +89,14 @@
     <td>
       <table width="100%">
 	<tr bgcolor=000000>
-	  <th align=right><font color=ffffff>Item</th>
-	  <th align=left><font color=ffffff>Number</th>
-	  <th align=left><font color=ffffff>Description</th>
-	  <th><font color=ffffff>Qt'y</th>
+	  <th align=right><font color=ffffff><?lsmb text('Item') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Number') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Description') ?></th>
+	  <th><font color=ffffff><?lsmb text('Qty') ?></th>
 	  <th>&nbsp;</th>
-	  <th><font color=ffffff>Price</th>
-	  <th><font color=ffffff>Disc %</th>
-	  <th><font color=ffffff>Amount</th>
+	  <th><font color=ffffff><?lsmb text('Price') ?></th>
+	  <th><font color=ffffff><?lsmb text('Disc %') ?></th>
+	  <th><font color=ffffff><?lsmb text('Amount') ?></th>
 	</tr>
 
         <?lsmb FOREACH number ?>
@@ -119,10 +119,10 @@
 	
 	<tr>
 	  <?lsmb IF taxincluded ?>
-	  <th colspan=6 align=right>Total</th>
+	  <th colspan=6 align=right><?lsmb text('Total') ?></th>
 	  <td colspan=2 align=right><?lsmb invtotal ?></td>
 	  <?lsmb ELSE ?>
-	  <th colspan=6 align=right>Subtotal</th>
+	  <th colspan=6 align=right><?lsmb text('Subtotal') ?></th>
 	  <td colspan=2 align=right><?lsmb subtotal ?></td>
 	  <?lsmb END ?>
 	</tr>
@@ -143,10 +143,10 @@
 	<tr>
 	  <td colspan=4>&nbsp;
 	  <?lsmb IF terms ?>
-	  Terms Net <b><?lsmb terms ?></b> days
+	  <?lsmb text('Terms Net [_1] days', terms) ?>
 	  <?lsmb END ?>
 	  </td>
-	  <th colspan=2 align=right>Total</th>
+	  <th colspan=2 align=right><?lsmb text('Total') ?></th>
 	  <th colspan=2 align=right><?lsmb quototal ?></th>
 	</tr>
 	
@@ -165,11 +165,11 @@
       <table width="100%">
 	<tr valign=top>
           <?lsmb IF notes ?>
-	  <td>Notes</td>
+	  <td><?lsmb text('Notes') ?></td>
 	  <td><?lsmb notes ?></td>
           <?lsmb END ?>
 	  <td align=right>
-	  All prices in <b><?lsmb currency ?></b> Funds
+	  <?lsmb text('All prices in [_1] Funds', currency) ?>
 	  </td>
 	</tr>
       </table>
@@ -183,7 +183,9 @@
       <table width="100%">
 	<tr valign=top>
 	  <td width="60%"><font size=-3>
-	  Special order items are subject to a 10% cancellation fee.
+	  <?lsmb 
+             text('Special order items are subject to a 10% cancellation fee.')
+           ?>
 	  </font>
 	  </td>
 	  <td width="40%">

Modified: trunk/templates/demo/statement.html
===================================================================
--- trunk/templates/demo/statement.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/statement.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -11,7 +11,8 @@
   <tr>
     <td width=10>&nbsp;</td>
     
-    <th colspan=3><h4>S T A T E M E N T</h4></th>
+    <th colspan=3><h4 style="text-transform:uppercase; letter-spacing:0.5em">
+         <?lsmb text('Statement') ?></h4></th>
     
   </tr>
 
@@ -42,10 +43,10 @@
 	  <?lsmb END ?>
 	  <br>
           <?lsmb IF customerphone ?>
-	  <br>Tel: <?lsmb customerphone ?>
+	  <br><?lsmb text('Tel: [_1],' customerphone) ?>
           <?lsmb END ?>
           <?lsmb IF customerfax ?>
-	  <br>Fax: <?lsmb customerfax ?>
+	  <br><?lsmb text('Fax: [_1]', customerfax) ?>
           <?lsmb END ?>
           <?lsmb IF email ?>
 	  <br><?lsmb email ?>
@@ -64,14 +65,14 @@
     <td>
       <table width="100%">
         <tr>
-	  <th align=left>Invoice #</th>
-          <th align=left>Order#</th>
-	  <th width="10%">Date</th>
-	  <th width="10%">Due</th>
-	  <th width="10%">Current</th>
-	  <th width="10%">30</th>
-	  <th width="10%">60</th>
-	  <th width="10%">90</th>
+	  <th align=left><?lsmb text('Invoice #') ?></th>
+          <th align=left><?lsmb text('Order#') ?></th>
+	  <th width="10%"><?lsmb text('Date') ?></th>
+	  <th width="10%"><?lsmb text('Due') ?></th>
+	  <th width="10%"><?lsmb text('Current') ?></th>
+	  <th width="10%"><?lsmb text('30') ?></th>
+	  <th width="10%"><?lsmb text('60') ?></th>
+	  <th width="10%"><?lsmb text('90') ?></th>
 	</tr>
         
 	<?lsmb FOREACH invnumber ?>
@@ -114,7 +115,7 @@
     <td align=right>
       <table width="50%">
         <tr>
-	  <th>Total Outstanding</th>
+	  <th><?lsmb text('Total Outstanding') ?></th>
           <th align=right><?lsmb total ?></th>
 	</tr>
       </table>
@@ -129,8 +130,8 @@
   
   <tr>
     <td>&nbsp;</td>
-    <td>All amounts in <b><?lsmb currency ?></b> funds.
-    <br>Please make check payable to <b><?lsmb company ?></b>.
+    <td><?lsmb text('All amounts in [_1] Funds', currency) ?>
+    <br><?lsmb text('Please make check payable to [_1].', company) ?>
     </td>
   </tr>
 

Modified: trunk/templates/demo/timecard.html
===================================================================
--- trunk/templates/demo/timecard.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/timecard.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -8,7 +8,8 @@
     <td width=10>&nbsp;</td>
 
     <th colspan=3>
-      <h4>T I M E &nbsp;&nbsp; C A R D</h4>
+      <h4 style="text-transform:uppercase; letter-spacing:0.5em">
+        <?lsmb text('Time Card') ?></h4>
     </th>
   </tr>
 
@@ -21,11 +22,11 @@
 	  <td>
 	    <table>
 	      <tr>
-		<th align=left>Employee</th>
+		<th align=left><?lsmb text('Employee') ?></th>
 		<td><?lsmb employee ?></td>
 	      </tr>
 	      <tr>
-		<th align=left>ID</th>
+		<th align=left><?lsmb text('ID') ?></th>
 		<td><?lsmb employee_id ?></td>
 	      </tr>
 	    </table>
@@ -34,23 +35,23 @@
 	  <td align=right>
 	    <table>
 	      <tr>
-		<th align=left nowrap>Card ID</th>
+		<th align=left nowrap><?lsmb text('Card ID') ?></th>
 		<td><?lsmb id ?></td>
 	      </tr>
 	      <tr>
-		<th align=left nowrap>Date</th>
+		<th align=left nowrap><?lsmb text('Date') ?></th>
 		<td><?lsmb transdate ?></td>
 	      </tr>
 	      <tr>
-		<th align=left nowrap>In</th>
+		<th align=left nowrap><?lsmb text('In') ?></th>
 		<td><?lsmb checkedin ?></td>
 	      </tr>
               <tr>
-                <th align=left>Out</th>
+                <th align=left><?lsmb text('Out') ?></th>
 		<td><?lsmb checkedout ?></td>
 	      </tr>
 	      <tr>
-		<th align=left nowrap>Hours</th>
+		<th align=left nowrap><?lsmb text('Hours') ?></th>
 		<td><?lsmb qty ?></td>
 	      </tr>
 	    </table>
@@ -71,19 +72,19 @@
 	  <td>
 	    <table>
 	      <tr valign=top>
-	        <th align=left>Job/Project #</th>
+	        <th align=left><?lsmb text('Job/Project #') ?></th>
 		<td><?lsmb projectnumber ?></td>
 	      </tr>
 	      <tr>
-	        <th align=left>Description</th>
+	        <th align=left><?lsmb text('Description') ?></th>
 		<td><?lsmb projectdescription ?></td>
 	      </tr>
 	      <tr valign=top>
-	        <th align=left>Labor/Service Code</th>
+	        <th align=left><?lsmb text('Labor/Service Code') ?></th>
 		<td><?lsmb partnumber ?></td>
 	      </tr>
 	      <tr>
-	        <th align=left>Description</th>
+	        <th align=left><?lsmb text('Description') ?></th>
 		<td><?lsmb description ?></td>
 	      </tr>
 	    </table>
@@ -91,11 +92,11 @@
 	  <td align=right>
 	    <table>
 	      <tr>
-	        <th align=right>Rate</th>
+	        <th align=right><?lsmb text('Rate') ?></th>
 		<td><?lsmb sellprice ?></td>
 	      </tr>
 	      <tr>
-		<th align=right>Total</th>
+		<th align=right><?lsmb text('Total') ?></th>
 		<td><?lsmb total ?></td>
 	      </tr>
 	    </table>

Modified: trunk/templates/demo/work_order.html
===================================================================
--- trunk/templates/demo/work_order.html	2011-07-15 00:54:00 UTC (rev 3515)
+++ trunk/templates/demo/work_order.html	2011-07-15 02:30:47 UTC (rev 3516)
@@ -9,7 +9,8 @@
     <td width=10>&nbsp;</td>
     
     <th colspan=3>
-      <h4>W O R K &nbsp;&nbsp; O R D E R</h4>
+      <h4 style="text-transform:uppercase; letter-spacing:0.5em">
+	<?lsmb text('Work Order') ?></h4>
     </th>
   </tr>
 
@@ -19,8 +20,9 @@
     <td>
       <table width=100% cellspacing=0 cellpadding=0>
 	<tr bgcolor=000000>
-	  <th align=left width="50%"><font color=ffffff>To</th>
-	  <th align=left width="50%"><font color=ffffff>Ship To</th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('To') ?></th>
+	  <th align=left width="50%"><font color=ffffff><?lsmb text('Ship To') ?>
+          </th>
 	</tr>
 
 	<tr valign=top>
@@ -39,13 +41,13 @@
 	  <?lsmb END ?>
           <br>
 	  <?lsmb IF contact ?>
-	  <br>Attn: <?lsmb contact ?>
+	  <br><?lsmb text('Attn: [_1]', contact) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF customerphone ?>
-	  <br>Tel: <?lsmb customerphone ?>
+	  <br><?lsmb text('Tel: [_1]', customerphone) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF customerfax ?>
-	  <br>Fax: <?lsmb customerfax ?>
+	  <br><?lsmb text('Fax: [_1]', customerfax) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF email ?>
 	  <br><?lsmb email ?>
@@ -70,10 +72,10 @@
           <br><?lsmb shiptocontact ?>
           <?lsmb END ?>
 	  <?lsmb IF shiptophone ?>
-	  <br>Tel: <?lsmb shiptophone ?>
+	  <br><?lsmb text('Tel: [_1]', shiptophone) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF shiptofax ?>
-	  <br>Fax: <?lsmb shiptofax ?>
+	  <br><?lsmb text('Fax: [_1]', shiptofax) ?>
 	  <?lsmb END ?>
 	  <?lsmb IF shiptoemail ?>
 	  <br><?lsmb shiptoemail ?>
@@ -92,12 +94,12 @@
     <td>
       <table width=100% border=1>
 	<tr>
-	  <th width=17% align=left nowrap>Order #</th>
-	  <th width=17% align=left>Order Date</th>
-	  <th width=17% align=left>Required by</th>
-	  <th width=17% align=left nowrap>Salesperson</th>
-	  <th width=17% align=left nowrap>Shipping Point</th>
-	  <th width=15% align=left nowrap>Ship Via</th>
+	  <th width=17% align=left nowrap><?lsmb text('Order #') ?></th>
+	  <th width=17% align=left><?lsmb text('Order Date') ?></th>
+	  <th width=17% align=left><?lsmb text('Required by') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Salesperson') ?></th>
+	  <th width=17% align=left nowrap><?lsmb text('Shipping Point') ?></th>
+	  <th width=15% align=left nowrap><?lsmb text('Ship Via') ?></th>
 	</tr>
 
 	<tr>
@@ -118,13 +120,13 @@
     <td>
       <table width="100%">
 	<tr bgcolor=000000>
-	  <th align=right><font color=ffffff>Item</th>
-	  <th align=left><font color=ffffff>Number</th>
-	  <th align=left><font color=ffffff>Description</th>
-	  <th><font color=ffffff>Qt'y</th>
+	  <th align=right><font color=ffffff><?lsmb text('Item') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Number') ?></th>
+	  <th align=left><font color=ffffff><?lsmb text('Description') ?></th>
+	  <th><font color=ffffff><?lsmb text('Qty') ?></th>
 	  <th>&nbsp;</th>
-           <th><font color=ffffff>Bin</th>
-	  <th><font color=ffffff>Serial #</th>
+           <th><font color=ffffff><?lsmb text('Bin') ?></th>
+	  <th><font color=ffffff><?lsmb text('Serial #') ?></th>
 	</tr>
 
 	<?lsmb FOREACH number ?>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.