From: Tanu Kaskinen Date: Mon, 24 Mar 2014 07:22:20 +0000 (+0200) Subject: pacat: Fix partially translated message X-Git-Url: https://code.delx.au/pulseaudio/commitdiff_plain/568702f44ec5d5d25c19a8a77ce888174ce2ed00 pacat: Fix partially translated message The word "not" was not translated. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=76529 --- diff --git a/src/utils/pacat.c b/src/utils/pacat.c index e1abc317..a3f3aa9c 100644 --- a/src/utils/pacat.c +++ b/src/utils/pacat.c @@ -356,10 +356,10 @@ static void stream_state_callback(pa_stream *s, void *userdata) { pa_sample_spec_snprint(sst, sizeof(sst), pa_stream_get_sample_spec(s)), pa_channel_map_snprint(cmt, sizeof(cmt), pa_stream_get_channel_map(s))); - pa_log(_("Connected to device %s (%u, %ssuspended)."), + pa_log(_("Connected to device %s (index: %u, suspended: %s)."), pa_stream_get_device_name(s), pa_stream_get_device_index(s), - pa_stream_is_suspended(s) ? "" : "not "); + pa_yes_no(pa_stream_is_suspended(s))); } break;