Made possible to save translations into file.

Minor fixes...
This commit is contained in:
Prominence
2016-06-28 11:53:32 +03:00
parent e2e134b352
commit e0fe33ecbf
3 changed files with 13 additions and 8 deletions
@@ -20,9 +20,11 @@
<tbody>
<tr>
<g:each in="${bundle.languages}" var="language">
<td>${language.translations.each {key, value ->
print (key + '=' + value)
}}</td>
<td>
<g:each in="${language.translations}" var="translation">
${translation.key} = ${translation.value} </br>
</g:each>
</td>
</g:each>
</tr>
<tr>