template changes for internationalization -- replaced displayed text with calls to properties file containing actual strings

This commit is contained in:
tworrall 2013-05-13 12:17:39 -04:00
parent 6d7f8e05c8
commit fa68e0c057
24 changed files with 407 additions and 116 deletions

View file

@ -17,15 +17,15 @@ table.threadInfo th {
</style>
<h2>Background Threads</h2>
<h2>${i18n().background_threads}</h2>
<section id="show-threads" role="region">
<#list threads as threadInfo>
<table class="threadInfo ${threadInfo.workLevel}" summary="Thread ${threadInfo.name}">
<tr><th>Name</th><td>${threadInfo.name}</td></tr>
<tr><th>WorkLevel</th><td>${threadInfo.workLevel}</td></tr>
<tr><th>Since</th><td>${threadInfo.since}</td></tr>
<tr><th>Flags</th><td>${threadInfo.flags}</td></tr>
<tr><th>${i18n().name}</th><td>${threadInfo.name}</td></tr>
<tr><th>${i18n().work_level}</th><td>${threadInfo.workLevel}</td></tr>
<tr><th>${i18n().since}</th><td>${threadInfo.since}</td></tr>
<tr><th>${i18n().flags}</th><td>${threadInfo.flags}</td></tr>
</table>
</#list>
</section>