${authenticator}
diff --git a/webapp/web/templates/freemarker/body/admin/admin-showThreads.ftl b/webapp/web/templates/freemarker/body/admin/admin-showThreads.ftl
index 6b2b9a127..d9b5d8e38 100644
--- a/webapp/web/templates/freemarker/body/admin/admin-showThreads.ftl
+++ b/webapp/web/templates/freemarker/body/admin/admin-showThreads.ftl
@@ -17,15 +17,15 @@ table.threadInfo th {
-Background Threads
+${i18n().background_threads}
<#list threads as threadInfo>
- Name ${threadInfo.name}
- WorkLevel ${threadInfo.workLevel}
- Since ${threadInfo.since}
- Flags ${threadInfo.flags}
+ ${i18n().name} ${threadInfo.name}
+ ${i18n().work_level} ${threadInfo.workLevel}
+ ${i18n().since} ${threadInfo.since}
+ ${i18n().flags} ${threadInfo.flags}
#list>
\ No newline at end of file
diff --git a/webapp/web/templates/freemarker/body/admin/searchIndex.ftl b/webapp/web/templates/freemarker/body/admin/searchIndex.ftl
index ab5ee849e..6486e17c8 100644
--- a/webapp/web/templates/freemarker/body/admin/searchIndex.ftl
+++ b/webapp/web/templates/freemarker/body/admin/searchIndex.ftl
@@ -4,40 +4,40 @@
Template for the page that controls the updating or rebuilding of the Search Index.
-->
-Search Index Status
+${i18n().search_index_status}
<#if !indexIsConnected>
-
- The search index is not connected.
- SolrServer.ping() failed.
-
Check startup status page and/or Tomcat logs for more information.
+
+ ${i18n().search_index_not_connected}
+ SolrServer.ping() ${i18n().failed}.
+
${i18n().check_startup_status}
<#elseif worklevel == "IDLE">
- The search indexer is idle.
+ ${i18n().search_indexer_idle}
<#if hasPreviousBuild??>
- The most recent update was at ${since?string("hh:mm:ss a, MMMM dd, yyyy")}
+ ${i18n().most_recent_update} ${since?string("hh:mm:ss a, MMMM dd, yyyy")}
#if>
<#elseif totalToDo == 0>
- Preparing to rebuild the search index.
- since ${since?string("hh:mm:ss a, MMMM dd, yyyy")}, elapsed time ${elapsed}
+ ${i18n().preparing_to_rebuild_index}
+ ${i18n().since_elapsed_time(since?string("hh:mm:ss a, MMMM dd, yyyy"),elapsed)}
<#else>
- ${currentTask} the search index.
- since ${since?string("hh:mm:ss a, MMMM dd, yyyy")}, elapsed time ${elapsed}, estimated total time ${expected}
- Completed ${completedCount} out of ${totalToDo} index records.
+ ${i18n().current_task(currentTask)}
+ ${i18n().since_elapsed_time_est_total(since?string("hh:mm:ss a, MMMM dd, yyyy"),elapsed,expected)}
+ ${i18n().index_recs_completed(completedCount,totalToDo)}
#if>
diff --git a/webapp/web/templates/freemarker/body/admin/startupStatus-display.ftl b/webapp/web/templates/freemarker/body/admin/startupStatus-display.ftl
index f55cb53fc..1d8288d33 100644
--- a/webapp/web/templates/freemarker/body/admin/startupStatus-display.ftl
+++ b/webapp/web/templates/freemarker/body/admin/startupStatus-display.ftl
@@ -35,9 +35,9 @@
${stylesheets.add(' ')}
<#if status.errorItems?has_content>
- Fatal error
+ ${i18n().fatal_error}
- ${applicationName} detected a fatal error during startup.
+ ${i18n().fatal_error_detected(applicationName)}
<#list status.errorItems as item>
@@ -47,9 +47,9 @@ ${stylesheets.add(' <#list status.warningItems as item>
<@statusItem item=item />
@@ -57,9 +57,9 @@ ${stylesheets.add('
<#list status.statusItems as item>
diff --git a/webapp/web/templates/freemarker/body/admin/startupStatus-displayRaw.ftl b/webapp/web/templates/freemarker/body/admin/startupStatus-displayRaw.ftl
index ff1351e5a..ce638c1fb 100644
--- a/webapp/web/templates/freemarker/body/admin/startupStatus-displayRaw.ftl
+++ b/webapp/web/templates/freemarker/body/admin/startupStatus-displayRaw.ftl
@@ -1,10 +1,10 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
-<#--
- Template for the raw page that displays the StartupStatus if there
+<#--
+ Template for the raw page that displays the StartupStatus if there
are warnings or errors.
- "raw" because this template works outside of the usual framework, in
+ "raw" because this template works outside of the usual framework, in
case the Freemarker context didn't initialize properly.
This file can't even include a reference to an external CSS file, in case
@@ -63,7 +63,7 @@
background-color: #FFDDDD;
}
#startup-trace li.warning{
- background-color: #FFFFDD;
+ background-color: #FFFFDD;
}
#startup-trace li.info {
background-color: #DDFFDD;
@@ -72,7 +72,7 @@
background-color: #F3F3F0;
}
-
+
@@ -101,7 +101,7 @@
<#-- If there were no fatal errors, let them go forward from here. -->
<#if showLink>
Continue
- #if>
+ #if>
#if>
@@ -115,4 +115,4 @@
#list>
-