Translate the default job name, and don't utf8-validate the job name in

2007-04-30  Matthias Clasen <mclasen@redhat.com>

        * gtk/gtkprintoperation.c: Translate the default job
        name, and don't utf8-validate the job name in the
        setter.  (#421993, Morten Welinder)



svn path=/trunk/; revision=17726
This commit is contained in:
Matthias Clasen 2007-04-30 05:08:26 +00:00 committed by Matthias Clasen
parent a8698a24c7
commit 23263cd43c
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2007-04-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintoperation.c: Translate the default job
name, and don't utf8-validate the job name in the
setter. (#421993, Morten Welinder)
2007-04-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintjob.c (gtk_print_job_get_surface): Use

View File

@ -164,7 +164,11 @@ gtk_print_operation_init (GtkPrintOperation *operation)
priv->unit = GTK_UNIT_PIXEL;
appname = g_get_application_name ();
priv->job_name = g_strdup_printf ("%s job #%d", appname, ++job_nr);
/* translators: this string is the default job title for print
* jobs. %s gets replaced by the application name, %d gets replaced
* by the job number.
*/
priv->job_name = g_strdup_printf (_("%s job #%d"), appname, ++job_nr);
}
static void
@ -1297,7 +1301,7 @@ gtk_print_operation_set_job_name (GtkPrintOperation *op,
GtkPrintOperationPrivate *priv;
g_return_if_fail (GTK_IS_PRINT_OPERATION (op));
g_return_if_fail (g_utf8_validate (job_name, -1, NULL));
g_return_if_fail (job_name != NULL);
priv = op->priv;