diff options
author | Matthias Clasen <mclasne@redhat.com> | 2008-02-12 22:43:35 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-02-12 22:43:35 +0000 |
commit | 9d6954734dc70551583c2c96802bc7379627d188 (patch) | |
tree | e7cbb19c664cdc126912dcad72ca06a2942e481f /gtk/gtkprintoperation.c | |
parent | 1cda35d32cff144f6b2f23e8408a372ef72fd358 (diff) | |
download | gtk+-9d6954734dc70551583c2c96802bc7379627d188.tar.gz |
Fix some i18n errors. Pointed out by Behdad Esfahbod.
2008-02-12 Matthias Clasen <mclasne@redhat.com>
* gtk/gtkpapersize.c:
* gtk/gtkprintoperation.c:
* gtk/gtkvolumebutton.c:
* gtk/gtkbulderparser.c: Fix some i18n errors. Pointed
out by Behdad Esfahbod.
svn path=/trunk/; revision=19547
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index 14b3a6a762..3b7bff403d 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -1518,8 +1518,7 @@ _gtk_print_operation_set_status (GtkPrintOperation *op, status = GTK_PRINT_STATUS_FINISHED_ABORTED; if (string == NULL) - string = g_strip_context (status_strs[status], - gettext (status_strs[status])); + string = g_strip_context (status_strs[status], _(status_strs[status])); if (priv->status == status && strcmp (string, priv->status_string) == 0) |