pacat: Fix partially translated message

The word "not" was not translated.

BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=76529
This commit is contained in:
Tanu Kaskinen 2014-03-24 09:22:20 +02:00
parent cd13fb368d
commit 568702f44e

View file

@ -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_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_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_name(s),
pa_stream_get_device_index(s), pa_stream_get_device_index(s),
pa_stream_is_suspended(s) ? "" : "not "); pa_yes_no(pa_stream_is_suspended(s)));
} }
break; break;