Multiple translation field in once #14474
Answered
by
nijel
RenegadeBananas
asked this question in
Q&A
-
Hi ! I would like to use Weblate to translate spells name and description from a mmo. I have a .json file with sources in this format :
It creates keys : 4044.name, 4044.description and 4044.aura_description Ideally, when I translate, I would like to have name and description on the screen at the same time to translate them together. Is it possible ? |
Beta Was this translation helpful? Give feedback.
Answered by
nijel
Apr 9, 2025
Replies: 1 comment 3 replies
-
You can group these using variants: https://docs.weblate.org/en/latest/devel/translations.html#string-variants |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Regular expression variant
\.(name|description|aura_description)$
should work for the JSON you've posted.