Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[JENKINS-38557] Localized empty category and type.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jan 4, 2017
1 parent f210dee commit a2a98c5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 2 deletions.
Expand Up @@ -14,7 +14,13 @@
<j:forEach var="container" items="${it.container.categories}">
<tr>
<td class="pane">
<a href="category.${container.name.hashCode()}/">${container.name}</a>
<j:set var="name" value="${container.name}" />
<j:if test="${name == '-'}">
<j:set var="name" value="${%undefined}" />
</j:if>
<a href="category.${container.name.hashCode()}/">
${name}
</a>
</td>
<td class="pane">${container.numberOfAnnotations}
</td>
Expand Down
@@ -0,0 +1 @@
undefined=(none)
@@ -1,3 +1,4 @@
undefined=(ohne)
Category=Kategorie
Total=Gesamt
Distribution=Verteilung
Expand Up @@ -14,7 +14,13 @@
<j:forEach var="container" items="${it.container.types}">
<tr>
<td class="pane">
<a href="type.${container.name.hashCode()}/">${container.name}</a>
<j:set var="name" value="${container.name}" />
<j:if test="${name == '-'}">
<j:set var="name" value="${%undefined}" />
</j:if>
<a href="category.${container.name.hashCode()}/">
${name}
</a>
</td>
<td class="pane">${container.numberOfAnnotations}
</td>
Expand Down
@@ -0,0 +1 @@
undefined=(none)
@@ -1,3 +1,4 @@
undefined=(ohne)
Type=Typ
Total=Gesamt
Distribution=Verteilung

0 comments on commit a2a98c5

Please sign in to comment.