summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2013-07-17 22:37:50 -0400
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2013-07-17 22:37:50 -0400
commit2378bff415a239f4627dec1a5a58120d6c53ddfc (patch)
tree8df32f31c4fde14cca9c8b78f4c6ff0fb67f23d6
parent67bfa41645beddca95c44395527f4d7c1f26b628 (diff)
downloadgtk+-2378bff415a239f4627dec1a5a58120d6c53ddfc.tar.gz
Use proper quotation marks
As per https://wiki.gnome.org/GnomeOS/Design/Whiteboards/Typography
-rw-r--r--gtk/gtkappchooserdialog.c8
-rw-r--r--gtk/gtkappchooserwidget.c2
-rw-r--r--gtk/gtkfilechooserdefault.c4
-rw-r--r--gtk/gtkprintunixdialog.c4
4 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkappchooserdialog.c b/gtk/gtkappchooserdialog.c
index 29b1627d02..bb0ffc9ceb 100644
--- a/gtk/gtkappchooserdialog.c
+++ b/gtk/gtkappchooserdialog.c
@@ -331,16 +331,16 @@ set_dialog_properties (GtkAppChooserDialog *self)
if (name != NULL)
{
/* Translators: %s is a filename */
- label = g_strdup_printf (_("Select an application to open \"%s\""), name);
- string = g_strdup_printf (_("No applications available to open \"%s\""),
+ label = g_strdup_printf (_("Select an application to open “%s”"), name);
+ string = g_strdup_printf (_("No applications available to open “%s”"),
name);
}
else
{
/* Translators: %s is a file type description */
- label = g_strdup_printf (_("Select an application for \"%s\" files"),
+ label = g_strdup_printf (_("Select an application for “%s” files"),
unknown ? self->priv->content_type : description);
- string = g_strdup_printf (_("No applications available to open \"%s\" files"),
+ string = g_strdup_printf (_("No applications available to open “%s” files"),
unknown ? self->priv->content_type : description);
}
diff --git a/gtk/gtkappchooserwidget.c b/gtk/gtkappchooserwidget.c
index 83cab70d1a..10309bed51 100644
--- a/gtk/gtkappchooserwidget.c
+++ b/gtk/gtkappchooserwidget.c
@@ -657,7 +657,7 @@ add_no_applications_label (GtkAppChooserWidget *self)
if (self->priv->content_type)
desc = g_content_type_get_description (self->priv->content_type);
- string = text = g_strdup_printf (_("No applications available to open \"%s\""),
+ string = text = g_strdup_printf (_("No applications available to open “%s”"),
desc);
g_free (desc);
}
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c
index 9d216c7a33..b25c0bc9a8 100644
--- a/gtk/gtkfilechooserdefault.c
+++ b/gtk/gtkfilechooserdefault.c
@@ -5475,10 +5475,10 @@ confirm_dialog_should_accept_filename (GtkFileChooserDefault *impl,
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
- _("A file named \"%s\" already exists. Do you want to replace it?"),
+ _("A file named “%s” already exists. Do you want to replace it?"),
file_part);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- _("The file already exists in \"%s\". Replacing it will "
+ _("The file already exists in “%s”. Replacing it will "
"overwrite its contents."),
folder_display_name);
diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c
index db0c5599e5..cbf0e2fa58 100644
--- a/gtk/gtkprintunixdialog.c
+++ b/gtk/gtkprintunixdialog.c
@@ -673,11 +673,11 @@ error_dialogs (GtkPrintUnixDialog *print_dialog,
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
- _("A file named \"%s\" already exists. Do you want to replace it?"),
+ _("A file named “%s” already exists. Do you want to replace it?"),
basename);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- _("The file already exists in \"%s\". Replacing it will "
+ _("The file already exists in “%s”. Replacing it will "
"overwrite its contents."),
dirname);