[totem] screenshot: Use Unicode in translatable strings



commit 1589eb56efe6b78aae80f8c735ab5fd2974368bc
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Fri Nov 11 18:22:37 2016 +0100

    screenshot: Use Unicode in translatable strings
    
    See https://developer.gnome.org/hig/stable/typography.html
    
    https://bugzilla.gnome.org/show_bug.cgi?id=774286

 src/plugins/screenshot/totem-gallery-progress.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/plugins/screenshot/totem-gallery-progress.c b/src/plugins/screenshot/totem-gallery-progress.c
index bd460b4..818f023 100644
--- a/src/plugins/screenshot/totem-gallery-progress.c
+++ b/src/plugins/screenshot/totem-gallery-progress.c
@@ -104,7 +104,7 @@ totem_gallery_progress_new (GPid child_pid, const gchar *output_filename)
        gtk_dialog_set_default_response (GTK_DIALOG (self), GTK_RESPONSE_CANCEL);
 
        /* Set the progress label */
-       label_text = g_strdup_printf (_("Saving gallery as \"%s\""), output_filename);
+       label_text = g_strdup_printf (_("Saving gallery as “%s”"), output_filename);
        gtk_progress_bar_set_show_text (self->priv->progress_bar, TRUE);
        gtk_progress_bar_set_text (self->priv->progress_bar, label_text);
        g_free (label_text);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]