| Summary: | Hardcoded + untranslatable percent sign in volumepopupbutton.cpp | ||
|---|---|---|---|
| Product: | [Applications] juk | Reporter: | Burkhard Lück <lueck> |
| Component: | general | Assignee: | Scott Wheeler <wheeler> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | mpyne |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | http://commits.kde.org/juk/50b004f5638a3f6563f513f8b7a5390b32854e7f | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
Git commit 50b004f5638a3f6563f513f8b7a5390b32854e7f by Arnold Dumas. Committed on 25/02/2014 at 08:38. Pushed by arnolddumas into branch 'master'. Make the % symbol translatable in the volume popup button. REVIEW: 116034 M +1 -1 volumepopupbutton.cpp http://commits.kde.org/juk/50b004f5638a3f6563f513f8b7a5390b32854e7f |
volumepopupbutton.cpp:109: m_volumeLabel->setText( QString::number( int( newVolume * 100 ) ) + '%' ); Problem: In german there has to be a space char between number + percent sign ("89 %") and other languages like Turkish have the percent sign as prefix before the number, see https://bugs.kde.org/show_bug.cgi?id=330135 With the hard coded percent sign in volumepopupbutton.cpp:109 it is not possible to translate it properly in de, tr and probably many more languages.