[glib] GDBusMessage: Use ngettext() where appropriate
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] GDBusMessage: Use ngettext() where appropriate
- Date: Sat, 27 Aug 2011 17:17:56 +0000 (UTC)
commit 1a2265889b174c069a58beb16dc57fc13a009263
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Aug 27 13:15:42 2011 -0400
GDBusMessage: Use ngettext() where appropriate
Pointed out in bug 657452.
gio/gdbusmessage.c | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
---
diff --git a/gio/gdbusmessage.c b/gio/gdbusmessage.c
index f29f5d9..c6cdccb 100644
--- a/gio/gdbusmessage.c
+++ b/gio/gdbusmessage.c
@@ -994,7 +994,10 @@ read_string (GMemoryInputStream *mis,
g_set_error (error,
G_IO_ERROR,
G_IO_ERROR_INVALID_ARGUMENT,
- _("Wanted to read %lu bytes but got EOF"),
+ g_dngettext (GETTEXT_PACKAGE,
+ "Wanted to read %lu byte but got EOF",
+ "Wanted to read %lu bytes but got EOF",
+ (gulong)to_read),
(gulong)to_read);
goto fail;
}
@@ -1317,7 +1320,10 @@ parse_value_from_blob (GMemoryInputStream *mis,
g_set_error (&local_error,
G_IO_ERROR,
G_IO_ERROR_INVALID_ARGUMENT,
- _("Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)."),
+ g_dngettext (GETTEXT_PACKAGE,
+ "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB).",
+ "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB).",
+ array_len),
array_len);
goto fail;
}
@@ -1811,7 +1817,10 @@ g_dbus_message_new_from_blob (guchar *blob,
g_set_error (error,
G_IO_ERROR,
G_IO_ERROR_INVALID_ARGUMENT,
- _("No signature header in message but the message body is %u bytes"),
+ g_dngettext (GETTEXT_PACKAGE,
+ "No signature header in message but the message body is %u byte",
+ "No signature header in message but the message body is %u bytes",
+ message_body_len),
message_body_len);
goto out;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]