summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanu Kaskinen <tanu.kaskinen@linux.intel.com>2014-03-24 09:22:20 +0200
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2014-03-24 09:22:20 +0200
commit568702f44ec5d5d25c19a8a77ce888174ce2ed00 (patch)
treed7fd8480a5aa0be5f5b2e2de7665893805b4b240
parentcd13fb368dd5ee286f83eba500098c37b0df28f0 (diff)
pacat: Fix partially translated message
The word "not" was not translated. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=76529
-rw-r--r--src/utils/pacat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/pacat.c b/src/utils/pacat.c
index e1abc3178..a3f3aa9c0 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;