diff options
author | Felipe Borges <felipeborges@gnome.org> | 2016-04-13 20:00:19 +0200 |
---|---|---|
committer | Felipe Borges <felipeborges@gnome.org> | 2016-04-14 18:55:21 +0200 |
commit | b0b1bf2f58fa036668e1669e2f465f0218a168a1 (patch) | |
tree | 30cdc9ca60a72068112cbff587519449969ab26a /modules | |
parent | e92eaaa0493f50ff9b9e01049c026cc42b8653e2 (diff) | |
download | gtk+-b0b1bf2f58fa036668e1669e2f465f0218a168a1.tar.gz |
cups: make string non-literals translatable again
Notice that C_ just takes string literals as arguments.
https://bugzilla.gnome.org/show_bug.cgi?id=764585
Diffstat (limited to 'modules')
-rw-r--r-- | modules/printbackends/cups/gtkprintbackendcups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/printbackends/cups/gtkprintbackendcups.c b/modules/printbackends/cups/gtkprintbackendcups.c index 9a4b733201..661037b227 100644 --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -4442,7 +4442,7 @@ get_ipp_choice_translation_string (gint index, g_assert_not_reached (); } - translation = NC_("output-bin", string); + translation = g_dpgettext2 (GETTEXT_PACKAGE, "output-bin", string); } return translation; |