-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
[MU3] Cleanup translatable texts #7161
Conversation
Jojo-Schmitz
commented
Dec 25, 2020
•
edited
Loading
edited
- Fix time signature names translation in palettes
- Fix compiler warnings
- Fix translatable strings
- 'Untranslate' some button texts
- British vs. American English
- Reset texts mismatch with settings they refer to
- Make text consistent with neighbours
- Some fixes that where pending since 3.5 string freeze
- Add missing strings from order.xml and make sure "Custom" gets translated too
- Use same string as the corresponding UI file does
- Remove trailing space
- Remove superfluous colon
5f1a0f6
to
b69ee9e
Compare
What we can do if we want to avoid conflicts, is that I add the fixes you did in |
Yes, I agree. Credit is not really needed though ;-) |
b69ee9e
to
750b319
Compare
4d34007
to
5097733
Compare
@Jojo-Schmitz Do you think you are ready with And maybe you also want to do for 3.x, what I did for master here: c93dbd5 |
I left my comment there, that %n is perfectly correct there and I'd rather not break it for 3.x ;-) |
Unfortunately I don't see your comment (yet)... could you maybe post a link to it? If you find something else in editstyle.ui, please let me know and I will add it! |
92857b3
to
5a04a84
Compare
5a04a84
to
ce0e366
Compare
* 'Untranslate' some button texts * British vs. American English * Reset texts mismatch with settings they refer to * Make text consistent with neighbours * Some fixes that where pending since 3.5 string freeze * Add missing strings from order.xml and make sure "Custom" gets translated too * Use same string as the corresponding UI file does * Remove trailing space * Remove superfluous colon
ce0e366
to
90e8e55
Compare
@@ -4977,8 +4977,9 @@ static void annotations(ExportMusicXml* exp, int strack, int etrack, int track, | |||
wtrack = findTrackForAnnotations(e->track(), seg); | |||
|
|||
if (track == wtrack) { | |||
if (commonAnnotations(exp, e, sstaff)) | |||
if (commonAnnotations(exp, e, sstaff)) { | |||
; // already handled |
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.
why do we need this 'IF' at all?
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.