diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-08-14 03:12:58 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-08-14 03:12:58 +0000 |
commit | a50b2ee48fb950f9459dccbd2e49fd5d136be7c5 (patch) | |
tree | ff80ac23d03bb24ae7934be7445b28f76879da75 /modules/printbackends | |
parent | 375e16715cb667952a216c5b9fddc801c2a70f4b (diff) | |
download | gtk+-a50b2ee48fb950f9459dccbd2e49fd5d136be7c5.tar.gz |
Add translator hints
svn path=/trunk/; revision=21113
Diffstat (limited to 'modules/printbackends')
-rw-r--r-- | modules/printbackends/cups/gtkprintbackendcups.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/printbackends/cups/gtkprintbackendcups.c b/modules/printbackends/cups/gtkprintbackendcups.c index 1a3ebae8a1..e2c3326f1c 100644 --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -1368,10 +1368,13 @@ cups_request_printer_list_cb (GtkPrintBackendCups *cups_backend, if (state_msg != NULL && strlen (state_msg) == 0) { if (is_paused && !is_accepting_jobs) + /* Translators: this is a printer status. */ tmp_msg2 = g_strdup ( N_("Paused ; Rejecting Jobs")); if (is_paused && is_accepting_jobs) + /* Translators: this is a printer status. */ tmp_msg2 = g_strdup ( N_("Paused")); if (!is_paused && !is_accepting_jobs) + /* Translators: this is a printer status. */ tmp_msg2 = g_strdup ( N_("Rejecting Jobs")); if (tmp_msg2 != NULL) @@ -2006,11 +2009,17 @@ static const struct { const char *translation; } cups_choice_translations[] = { { "Duplex", "None", N_("One Sided") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "Auto", N_("Auto Select") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "AutoSelect", N_("Auto Select") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "Default", N_("Printer Default") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "None", N_("Printer Default") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "PrinterDefault", N_("Printer Default") }, + /* Translators: this is an option of "Paper Source" */ { "InputSlot", "Unspecified", N_("Auto Select") }, }; |