]> Pileus Git - ~andy/gtk/commitdiff
Add translator hints
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 14 Aug 2008 03:12:58 +0000 (03:12 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 14 Aug 2008 03:12:58 +0000 (03:12 +0000)
svn path=/trunk/; revision=21113

ChangeLog
modules/printbackends/cups/gtkprintbackendcups.c

index 9ad68f34a8dfe0783185b39a75934060b3989239..2afb383b5c308d279fe6f2bfb498c3f4ee9b98ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-08-13  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 547516 – Add comments for translators in gtkprintbackendcups.c
+
+       * modules/printbackends/cups/gtkprintbackendcups.c: Add translator
+       hints. Patch by Leonardo Ferreira Fontenelle
+
 2008-08-13  Michael Natterer  <mitch@imendio.com>
 
        * gtk/gtkmarshalers.list: get rid of the deprecated aliases NONE
index 1a3ebae8a1e451b12dc0d9ee7a25f20234786f2b..e2c3326f1c49e3dff1e82b90f7733610f4000f3c 100644 (file)
@@ -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") },
 };