mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
24 lines
656 B
Plaintext
24 lines
656 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>bundles</title>
|
|
</head>
|
|
|
|
<body>
|
|
<g:if test="${bundles}">
|
|
<g:each in="${bundles}" var="bundle">
|
|
${bundle.name} <br />
|
|
<g:each in="${bundle.propertiesList}" var="properties">
|
|
-> ${properties.name} <br />
|
|
${properties.text.eachLine { line ->
|
|
print('----------> ' + line + '<br/>')
|
|
}}
|
|
</g:each>
|
|
</g:each>
|
|
</g:if>
|
|
<g:else>
|
|
There is no bundles!
|
|
</g:else>
|
|
</body>
|
|
</html> |