diff options
author | Olivier Humbert <trebmuh@tuxfamily.org> | 2020-08-20 18:15:57 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-08-30 15:59:30 +0200 |
commit | a02b7366438a9d00d8a5184123b1608daf41835a (patch) | |
tree | 8349fac010619970126ac77f243ceae0c244f6c5 /plugingui/resamplingframecontent.cc | |
parent | 781de78b46c0cf63e685a48b0e557808438d4bec (diff) |
Add even more _(...) and translations of strings of the UI.
Diffstat (limited to 'plugingui/resamplingframecontent.cc')
-rw-r--r-- | plugingui/resamplingframecontent.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugingui/resamplingframecontent.cc b/plugingui/resamplingframecontent.cc index ef10f0b..035781f 100644 --- a/plugingui/resamplingframecontent.cc +++ b/plugingui/resamplingframecontent.cc @@ -78,9 +78,9 @@ void ResamplingframeContent::resize(std::size_t width, std::size_t height) void ResamplingframeContent::updateContent() { text_field.setText( - "Session samplerate: " + session_samplerate + "\n" - "Drumkit samplerate: " + drumkit_samplerate + "\n" - "Resampling recommended: " + resampling_recommended + "\n" + _("Session samplerate: ") + session_samplerate + "\n" + + _("Drumkit samplerate: ") + drumkit_samplerate + "\n" + + _("Resampling recommended: ") + resampling_recommended + "\n" ); } |