-
-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translated curve types #3319
Translated curve types #3319
Conversation
Added translation string STR_VCURVETYPE
Added #define TR_VCURVETYPE "Diff","Expo","Func","Cstm" for translations of curve types
f03c24d
to
4d34941
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM now - yet another hard-coded string brought out to be translated :)
There are a few hard-coded strings left but they are quite specialised (yaml, cli, afhds3) so I think they can be left as is. |
Yup, but bit by bit we are removing them. And there is the |
Would it be useful if I looked into other possible translations, or rather those that could be moved to untranslated.h? |
It becomes a double-edged sword between having to look at a separate file to find out what is in a variable, and it not all being in one place. I generally agree with the list you said leave as-is ... maybe with the exception of I think these are candidates for full translation
This would have been a candidate but is only used internally, so not worth moving
This one can't be changed as it describes what gets written to the theme file... maybe that can be changed when it gets ported over to using the built in yaml parsing (unless the names used in the theme manage UI come from somewhere else again)...
Ones like this are just annoying but probably need to stay as they are for now at least.
I don't know about the other guys, but I use the DRY (don't repeat yourself) rule in looking at this... ie. they don't belong where they are if the same thing is repeated multiple times. And in some cases, like with the initial If you think you can do anything with this, that would be appreciated, and as always more than happy to help if you get stuck with anything. |
I think I can work with this. But before I start , pls let me know if I understand your comments correctly: // full translation // move to untranslated.h |
@pfeerick - I am struggling with this and due to limited understanding of the code I haven't managed to translate anything else than: So all in all two new translated strings and three strings moved to untranslated.h is what I can do. Probably easy to do for you software developers but not for me. Is it worth going ahead with this or should I drop it? |
Fixes #3309
Summary of changes:
Added translations for curve types used in Inputs and Mixes (TR_VCURVETYPE).
Languages with active translators have been properly translated.