[sword-svn] r342 - trunk/webapp
refdoc at www.crosswire.org
refdoc at www.crosswire.org
Tue Nov 11 03:25:52 MST 2008
Author: refdoc
Date: 2008-11-11 03:25:51 -0700 (Tue, 11 Nov 2008)
New Revision: 342
Modified:
trunk/webapp/wordsearchresults.jsp
Log:
some more strings made translatable
Modified: trunk/webapp/wordsearchresults.jsp
===================================================================
--- trunk/webapp/wordsearchresults.jsp 2008-11-09 00:41:48 UTC (rev 341)
+++ trunk/webapp/wordsearchresults.jsp 2008-11-11 10:25:51 UTC (rev 342)
@@ -83,7 +83,7 @@
if (modInfo[i].category.equals(SwordOrb.BIBLES)) {
SWModule module = mgr.getModuleByName(modInfo[i].name);
%>
- <li><a href="wordsearchresults.jsp?mod=<%= URLEncoder.encode(modInfo[i].name) %>" title="view Romans 8:26-39 in <%= module.getDescription() %>"><%= module.getDescription() %></a></li>
+ <li><a href="wordsearchresults.jsp?mod=<%= URLEncoder.encode(modInfo[i].name) %>" title="<t:t>View search results in</t:t> <%= module.getDescription() %>"><%= module.getDescription() %></a></li>
<%
}
}
@@ -93,7 +93,7 @@
</tiles:put>
<tiles:put name="sidebar_right" type="string">
- <h2>Original Language:</h2>
+ <h2><t:t>Original Language:</t:t></h2>
</tiles:put>
<tiles:put name="content" type="string">
@@ -173,7 +173,7 @@
<%
if ( navStart > 0 ) {
%>
- <li><a href="wordsearchresults.jsp?start=0" title="First page (<%= results[0].key %>) of search results">1</a> [...]</li>
+ <li><a href="wordsearchresults.jsp?start=0" title="<t:t>First page (</t:t><%= results[0].key %><t:t>) of search results</t:t>">1</a> [...]</li>
<%
}
else {
@@ -198,14 +198,14 @@
<% }
else {
%>
- <li><a href="wordsearchresults.jsp?start=<%= i * resultLimit.intValue() %>&<%= linkOptions %>" title="page <%= i+1 %> (<%= results[i * resultLimit.intValue()].key %>) of search results"><%= i+1 %></a></li>
+ <li><a href="wordsearchresults.jsp?start=<%= i * resultLimit.intValue() %>&<%= linkOptions %>" title="<t:t>page </t:t><%= i+1 %> (<%= results[i * resultLimit.intValue()].key %><t:t>) of search results</t:t>"><%= i+1 %></a></li>
<%
}
}
int lastPage = (results.length / resultLimit.intValue()) + ((results.length % resultLimit.intValue()) > 0 ? 1 : 0) -1;
if (navEnd < lastPage) {
%>
- <li> [...] <a href="wordsearchresults.jsp?start=<%= lastPage*resultLimit.intValue() %>&<%= linkOptions %>" title="Last page (<%= results[lastPage].key %>) of search results"><%= lastPage+1 %></a></li>
+ <li> [...] <a href="wordsearchresults.jsp?start=<%= lastPage*resultLimit.intValue() %>&<%= linkOptions %>" title="<t:t>>Last page (</t:t><%= results[lastPage].key %><t:t>) of search results</t:t>"><%= lastPage+1 %></a></li>
<%
}
%>
More information about the sword-cvs
mailing list