Exclude filename from file mask, and enable languages #15571
Answered
by
nijel
rffontenelle
asked this question in
Q&A
-
I have translation filesnames like pt.json or pt-BR.json. In the same directory there is 'Manifest.json' that is used like a LINGUAS file, I.e. to list enabled languages. Have can I make Weblate use this file to update languages whenever there is a new language? What regexp should I use to exclude this file from file mask? |
Beta Was this translation helpful? Give feedback.
Answered by
nijel
Jul 27, 2025
Replies: 1 comment 1 reply
-
Language filter should do that (see https://docs.weblate.org/en/latest/admin/projects.html#language-filter) with a negative lookahead: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rffontenelle
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Language filter should do that (see https://docs.weblate.org/en/latest/admin/projects.html#language-filter) with a negative lookahead:
^(?!(Manifest)$).+$