backbone for i18n support (#55)

This commit is contained in:
Athou
2013-05-11 19:21:53 +02:00
parent 637c41f2ce
commit 3778b44588
7 changed files with 181 additions and 11 deletions

View File

@@ -467,6 +467,7 @@
<source>${basedir}/src/main/webapp/templates</source>
<prefix>templates/</prefix>
<destination>${basedir}/target/generated-sources/angularjs/all-templates.html</destination>
<i18nPath>${basedir}/src/main/resources/i18n/</i18nPath>
</properties>
<scriptpath>
<element>${basedir}/src/main/script</element>
@@ -477,8 +478,11 @@
project.properties['prefix'];
def dest =
project.properties['destination'];
def i18n =
project.properties['i18nPath'];
new
HTMLConcat().concat(source, prefix, dest);
HTMLConcat().concat(source,
prefix, dest, i18n);
</source>
</configuration>
</execution>