Closed kisvegabor closed 5 years ago
That's strange, probably wrong glob pattern.
Could you attach zip with sample and commands to run?
Sure!
lv_i18n extract -s './**.+(c|cpp|h|hpp)' -t './*.yml'
finds the phrases only in source.c
and not in source_dir.c
and source_dir2.c
https://github.com/isaacs/node-glob#readme
Change search path to this: lv_i18n extract -s './**/*.+(c|cpp|h|hpp)' -t './*.yml'
**
match zero or more subdirs*
match inside nameWorking, thanks!
With
lv_i18n extract -s './**.+(c|cpp|h|hpp)' -t './*.yml'
the_("msgid")
patterns are not found in the subfolders. I gotNo phrases to translate
. With-s '.path/to/folder/*.+(c|cpp|h|hpp)'
it's working.