Fund Source -> Funding Source, to differentiate the labels a little
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 Feb 2008 12:51:19 +0000 (12:51 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 Feb 2008 12:51:19 +0000 (12:51 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8698 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html
Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_source.html
Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_fund_sources.html
Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/navigate.html
Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund_source.html

index 4f08a49..4f3860d 100644 (file)
@@ -2,7 +2,7 @@
 <!-- vim:set filetype=mako: -->
 <%inherit file='../base.html'/>
 <%namespace file='../../common/widgets.html' name='widget'/>
-<%def name="page_title()">${_('Create Fund Allocation')}</%def>
+<%def name="page_title()">${_('Create Funding Allocation')}</%def>
 <%def name="block_content()">
 
 <form action='${c.oils.acq.prefix}/fund/allocate' method='POST'>
@@ -17,7 +17,7 @@
                 </td>
             </tr>
             <tr>
-                <td class='oils-admin-label'>${_('Fund Source')}</td>
+                <td class='oils-admin-label'>${_('Funding Source')}</td>
                 <td> 
                     <select name='${c.oils.acq.fund_allocation_source_.cgi_name}'>
                         % for source in c.oils.acq.fund_source_list:
index b7972d7..caedd47 100644 (file)
@@ -2,20 +2,20 @@
 <!-- vim:set filetype=mako: -->
 <%inherit file='../base.html'/>
 <%namespace file='../../common/widgets.html' name='widget'/>
-<%def name="page_title()">${_('Create Fund Source')}</%def>
+<%def name="page_title()">${_('Create Funding Source')}</%def>
 <%def name="block_content()">
 
 <form action='${c.oils.acq.prefix}/fund_source/create' method='POST'>
     <table class='oils-admin-table'>
         <tbody>
             <tr>
-                <td class='oils-admin-label'>${_('Fund Source Name')}</td>
+                <td class='oils-admin-label'>${_('Funding Source Name')}</td>
                 <td> 
                     <input type='text' size='42' name='${c.oils.acq.fund_source_name_.cgi_name}'/>
                 </td>
             </tr>
             <tr>
-                <td class='oils-admin-label'>${_('Fund Source Onwer')}</td>
+                <td class='oils-admin-label'>${_('Funding Source Onwer')}</td>
                 <td> 
                     ${widget.org_select(
                         c.oils.acq.fund_source_owner_.cgi_name, 
@@ -24,7 +24,7 @@
                 </td>
             </tr>
             <tr>
-                <td class='oils-admin-label'>${_('Fund Source Currency Type')}</td>
+                <td class='oils-admin-label'>${_('Funding Source Currency Type')}</td>
                 <td> 
                     <select name='${c.oils.acq.fund_source_currency_type_.cgi_name}'>
                         % for type in c.oils.acq.currency_types:
@@ -35,7 +35,7 @@
             </tr>
             <tr>
                 <td colspan='2'>
-                    <input type='submit' value='${_("Create Fund Source")}'/>
+                    <input type='submit' value='${_("Create Funding Source")}'/>
                 </td>
             </tr>
         </tbody>
index 3021a8c..d63ce64 100644 (file)
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 <%inherit file='../base.html'/>
 <%namespace file='../../common/widgets.html' name='widget'/>
-<%def name="page_title()">${_('Fund Sources')}</%def>
+<%def name="page_title()">${_('Funding Sources')}</%def>
 <%def name="block_content()">
 
 <table class='oils-admin-table'>
     <thead>
         <tr>
-            <td>${_('Fund Source Name')}</td>
-            <td>${_('Fund Source Owner')}</td>
-            <td>${_('Fund Source Currency Type')}</td>
+            <td>${_('Funding Source Name')}</td>
+            <td>${_('Funding Source Owner')}</td>
+            <td>${_('Funding Source Currency Type')}</td>
         </tr>
     </thead>
     <tbody>
index ca67507..e06ad8f 100644 (file)
@@ -6,9 +6,9 @@
     <a href='${c.oils.core.prefix}/acq/fund/create'>${_('New Fund')}</a>
 </div>
 <div class='oils-base-navigate-item'>
-    <a href='${c.oils.core.prefix}/acq/fund_source/list'>${_('Fund Sources')}</a>
+    <a href='${c.oils.core.prefix}/acq/fund_source/list'>${_('Funding Sources')}</a>
 </div>
 <div class='oils-base-navigate-item'>
-    <a href='${c.oils.core.prefix}/acq/fund_source/create'>${_('New Fund Source')}</a>
+    <a href='${c.oils.core.prefix}/acq/fund_source/create'>${_('New Funding Source')}</a>
 </div>
    
index 0c248e3..7b6631a 100644 (file)
@@ -1,20 +1,20 @@
 # -*- coding: utf-8 -*-
 <%inherit file='../base.html'/>
 <%namespace file='../../common/widgets.html' name='widget'/>
-<%def name="page_title()">${_('View Fund Source')}</%def>
+<%def name="page_title()">${_('View Funding Source')}</%def>
 <%def name="block_content()">
 <table class='oils-admin-table'>
     <tbody>
         <tr>
-            <td class='oils-admin-label'>${_('Fund Source Name')}</td>
+            <td class='oils-admin-label'>${_('Funding Source Name')}</td>
             <td>${c.oils.acq.fund_source.name()}</td>
         </tr>
         <tr>
-            <td class='oils-admin-label'>${_('Fund Source Onwer')}</td>
+            <td class='oils-admin-label'>${_('Funding Source Onwer')}</td>
             <td>${c.oils.acq.fund_source.owner().name()}</td> 
         </tr>
         <tr>
-            <td class='oils-admin-label'>${_('Fund Source Currency Type')}</td>
+            <td class='oils-admin-label'>${_('Funding Source Currency Type')}</td>
             <td>${c.oils.acq.fund_source.currency_type()}</td> 
         </tr>
     </tbody>