-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
WTrackmenu: use moveToTrash() with Qt >= 5.15 #11842
Conversation
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 otherwise.
tr("%1 track files were moved to trash and purged " | ||
"from the Mixxx database.") | ||
#else | ||
tr("%1 track files were deleted from disk and purged " |
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.
shouldn't this also follow the dynamic plural forms?
tr("%1 track files were moved to trash and purged " | |
"from the Mixxx database.") | |
#else | |
tr("%1 track files were deleted from disk and purged " | |
tr("%n track file(s) were moved to trash and purged " | |
"from the Mixxx database.") | |
#else | |
tr("%n track file(s) were deleted from disk and purged " |
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.
I just didn't want to touch existing tr strings to not lose the translations short before the release. Considering we drop support for Ubuntu 20.04 and can also switch to Qt 5.15 on macOS for Mixxx 2.5, I think the tr inconsistencies are okay.
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.
fair.
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
Thank you |
Thanks for your review! |
No description provided.