[open-ils-commits] r8698 -
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Feb 8 08:20:05 EST 2008
Author: miker
Date: 2008-02-08 07:51:19 -0500 (Fri, 08 Feb 2008)
New Revision: 8698
Modified:
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_source.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_fund_sources.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/navigate.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund_source.html
Log:
Fund Source -> Funding Source, to differentiate the labels a little
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html 2008-02-08 06:31:45 UTC (rev 8697)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html 2008-02-08 12:51:19 UTC (rev 8698)
@@ -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:
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_source.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_source.html 2008-02-08 06:31:45 UTC (rev 8697)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_source.html 2008-02-08 12:51:19 UTC (rev 8698)
@@ -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>
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_fund_sources.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_fund_sources.html 2008-02-08 06:31:45 UTC (rev 8697)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_fund_sources.html 2008-02-08 12:51:19 UTC (rev 8698)
@@ -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>
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/navigate.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/navigate.html 2008-02-08 06:31:45 UTC (rev 8697)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/navigate.html 2008-02-08 12:51:19 UTC (rev 8698)
@@ -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>
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund_source.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund_source.html 2008-02-08 06:31:45 UTC (rev 8697)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund_source.html 2008-02-08 12:51:19 UTC (rev 8698)
@@ -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>
More information about the open-ils-commits
mailing list