[glib] Fix a mixup of singular and plural



commit f1173dd7251d51f1c8895fceb89f4ccdda912b47
Author: Matthias Clasen <mclasen redhat com>
Date:   Thu Mar 7 16:44:36 2013 -0500

    Fix a mixup of singular and plural
    
    Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=695339

 gio/gdbusmessage.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gdbusmessage.c b/gio/gdbusmessage.c
index 9181029..cc94375 100644
--- a/gio/gdbusmessage.c
+++ b/gio/gdbusmessage.c
@@ -1380,8 +1380,8 @@ read_string (GMemoryBuffer          *mbuf,
                    G_IO_ERROR,
                    G_IO_ERROR_INVALID_ARGUMENT,
                    g_dngettext (GETTEXT_PACKAGE,
-                                "Wanted to read %lu bytes but only got %lu",
                                 "Wanted to read %lu byte but only got %lu",
+                                "Wanted to read %lu bytes but only got %lu",
                                 (gulong)len),
                                 (gulong)len,
                    (gulong)mbuf->valid_len - mbuf->pos);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]