Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
David Planella
juk
Commits
50b004f5
Commit
50b004f5
authored
Feb 25, 2014
by
Arnold Dumas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the % symbol translatable in the volume popup button.
REVIEW: 116034 BUG: 330164
parent
16ab0dff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
volumepopupbutton.cpp
volumepopupbutton.cpp
+1
-1
No files found.
volumepopupbutton.cpp
View file @
50b004f5
...
...
@@ -106,7 +106,7 @@ VolumePopupButton::volumeChanged( float newVolume )
else
setIcon
(
KIcon
(
"audio-volume-high"
)
);
m_volumeLabel
->
setText
(
QString
::
number
(
int
(
newVolume
*
100
)
)
+
'%'
);
m_volumeLabel
->
setText
(
i18n
(
"%1%"
,
int
(
newVolume
*
100
)
)
);
if
(
newVolume
!=
m_volumeSlider
->
value
()
)
m_volumeSlider
->
setValue
(
newVolume
*
100
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment