mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta name="layout" content="main"/>
|
|
<title><g:message code="plugin.translations.overview.show.page.title" args="${[bundle.name]}" /></title>
|
|
<r:require modules="bootstrap"/>
|
|
</head>
|
|
|
|
<body>
|
|
<h1><g:message code="plugin.translations.overview.show.page.title" args="${[bundle.name]}" /></h1>
|
|
<br/>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<g:each in="${bundle.propertiesList}" var="propertyFile">
|
|
<th>${propertyFile.name}</th>
|
|
</g:each>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<g:each in="${bundle.propertiesList}" var="propertyFile">
|
|
<td>${propertyFile.text}</td>
|
|
</g:each>
|
|
</tr>
|
|
<tr>
|
|
<g:each in="${bundle.propertiesList}" var="propertyFile">
|
|
<td><g:message code="plugin.translations.totalRecords" args="${propertyFile.readLines().size()}"/></td>
|
|
</g:each>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |