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/statusframecontent.cc | |
parent | 781de78b46c0cf63e685a48b0e557808438d4bec (diff) |
Add even more _(...) and translations of strings of the UI.
Diffstat (limited to 'plugingui/statusframecontent.cc')
-rw-r--r-- | plugingui/statusframecontent.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugingui/statusframecontent.cc b/plugingui/statusframecontent.cc index 9c2efc3..3152dfd 100644 --- a/plugingui/statusframecontent.cc +++ b/plugingui/statusframecontent.cc @@ -69,14 +69,14 @@ void StatusframeContent::resize(std::size_t width, std::size_t height) void StatusframeContent::updateContent() { text_field.setText( - "Drumkit status: " + drumkit_load_status + "\n" - // "Midimap status: " + midimap_load_status + "\n" - "Drumkit name: " + drumkit_name + "\n" - "Drumkit description: " + drumkit_description + "\n" - // "Drumkit version: " + drumkit_version + "\n" - "Session buffer size: " + buffer_size + "\n" - "Number of underruns: " + number_of_underruns + "\n" + - "Messages:\n" + messages + _("Drumkit status: ") + drumkit_load_status + "\n" + + // _("Midimap status: ") + midimap_load_status + "\n" + + _("Drumkit name: ") + drumkit_name + "\n" + + _("Drumkit description: ") + drumkit_description + "\n" + + // _("Drumkit version: ") + drumkit_version + "\n" + + _("Session buffer size: ") + buffer_size + "\n" + + _("Number of underruns: ") + number_of_underruns + "\n" + + _("Messages:\n") + messages ); } |