[pulseaudio-commits] src/utils

Tanu Kaskinen tanuk at kemper.freedesktop.org
Mon Mar 24 00:22:52 PDT 2014


 src/utils/pacat.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 568702f44ec5d5d25c19a8a77ce888174ce2ed00
Author: Tanu Kaskinen <tanu.kaskinen at linux.intel.com>
Date:   Mon Mar 24 09:22:20 2014 +0200

    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 e1abc31..a3f3aa9 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;



More information about the pulseaudio-commits mailing list