From e5d711f1ae371704de8c251b27ad52165ec55690 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Sat, 3 Mar 2012 11:43:18 +0100 Subject: Correct the use of plurals --- src/indicator-printer-state-notifier.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/indicator-printer-state-notifier.c b/src/indicator-printer-state-notifier.c index 8261274..65eb5b0 100644 --- a/src/indicator-printer-state-notifier.c +++ b/src/indicator-printer-state-notifier.c @@ -120,16 +120,14 @@ show_alert_box (const gchar *printer, GtkWidget *image; gchar *primary_text; gchar *secondary_text; - const gchar *fmt; image = gtk_image_new_from_icon_name ("printer", GTK_ICON_SIZE_DIALOG); primary_text = g_strdup_printf (reason, printer); - if (njobs == 1) - fmt = _("You have %d job queued to print on this printer."); - else - fmt = _("You have %d jobs queued to print on this printer."); - secondary_text = g_strdup_printf (fmt, njobs); + secondary_text = g_strdup_printf (ngettext( + "You have %d job queued to print on this printer.", + "You have %d jobs queued to print on this printer.", njobs), + njobs); dialog = g_object_new (GTK_TYPE_MESSAGE_DIALOG, "title", _("Printing Problem"), -- cgit v1.2.3