aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-printer-state-notifier.c
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2012-03-06 22:16:06 +0100
committerLars Uebernickel <lars.uebernickel@canonical.com>2012-03-06 22:16:06 +0100
commit85fc36ca17b8d908434c9e480a3240be72b1b6fa (patch)
tree3964d6a90698e68f7cc96f17d073c1afa4239647 /src/indicator-printer-state-notifier.c
parent66cdfa18d909ad66f376b217047664235ccfc6f8 (diff)
parenteec4fb8e1b1edf50f770b6f25f4601ffbfe37aa9 (diff)
downloadayatana-indicator-printers-85fc36ca17b8d908434c9e480a3240be72b1b6fa.tar.gz
ayatana-indicator-printers-85fc36ca17b8d908434c9e480a3240be72b1b6fa.tar.bz2
ayatana-indicator-printers-85fc36ca17b8d908434c9e480a3240be72b1b6fa.zip
Import upstream version 0.1.4
Diffstat (limited to 'src/indicator-printer-state-notifier.c')
-rw-r--r--src/indicator-printer-state-notifier.c10
1 files changed, 4 insertions, 6 deletions
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"),