I'm not sure I understand your question.
On Sep 6, 11:15 am, markus <
gadaleta.ma...@gmail.com> wrote:
> Hello everyone,
> i'm trying to use the closure library to program my new work...
> I'm using soy templates to generate translation file for my
> application.
Soy can only generate translation files for messages defined in Soy
templates. It cannot handle translation for your whole app.
> It work fine until i try to import all inside my project.
> I've a trouble to understand How i can use the files inside the
> project.
> It's possible to refer to generated js using goog.require instruction?
Yes, you can use goog.require on your template files' namespaces. What
you need to do is add the flag
--shouldProvideRequireSoyNamespaces
When this option is used, each generated JS file will contain a
goog.provide statement for the corresponding Soy file's namespace.