Fix translation context (amend 47e4216012)

This commit is contained in:
Robin Gareus 2020-04-21 20:50:45 +02:00
parent 80dc3a38e0
commit 35fe4f79f5
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 2 deletions

View File

@ -907,11 +907,11 @@ EngineControl::update_sensitivity ()
start_stop_button.set_sensitive(true);
start_stop_button.show();
if (engine_running) {
start_stop_button.set_text(_("Engine|Stop"));
start_stop_button.set_text(S_("Engine|Stop"));
update_devices_button.set_sensitive(false);
use_buffered_io_button.set_sensitive(false);
} else {
start_stop_button.set_text(_("Engine|Start"));
start_stop_button.set_text(S_("Engine|Start"));
update_devices_button.set_sensitive (backend->can_request_update_devices ());
use_buffered_io_button.set_sensitive (backend->can_use_buffered_io ());
}