diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-08-22 11:03:07 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-09-29 23:05:21 -0400 |
commit | c7930417b4d7912753a64f4e61186599f22610ad (patch) | |
tree | 7432f17cf516212497290ef0f4cbc0643738ebbc /gtk/deprecated | |
parent | 9b5e70c9c29be42243437f395da574180efd428a (diff) | |
download | gtk+-c7930417b4d7912753a64f4e61186599f22610ad.tar.gz |
GtkColorSelection: Better typography
Use U+201C/U+201D for quoting, and use U+2019 instead of apostrophe.
https://bugzilla.gnome.org/show_bug.cgi?id=735192
Diffstat (limited to 'gtk/deprecated')
-rw-r--r-- | gtk/deprecated/gtkcolorsel.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/deprecated/gtkcolorsel.c b/gtk/deprecated/gtkcolorsel.c index 6f9bd12df8..c0d358b6d6 100644 --- a/gtk/deprecated/gtkcolorsel.c +++ b/gtk/deprecated/gtkcolorsel.c @@ -512,7 +512,7 @@ gtk_color_selection_init (GtkColorSelection *colorsel) gtk_widget_set_tooltip_text (priv->hex_entry, _("You can enter an HTML-style hexadecimal color " - "value, or simply a color name such as 'orange' " + "value, or simply a color name such as “orange” " "in this entry.")); gtk_entry_set_width_chars (GTK_ENTRY (priv->hex_entry), 7); @@ -1068,22 +1068,22 @@ update_tooltips (GtkColorSelection *colorsel) { gtk_widget_set_tooltip_text (priv->old_sample, _("The previously-selected color, for comparison to the color " - "you're selecting now. You can drag this color to a palette " + "you’re selecting now. You can drag this color to a palette " "entry, or select this color as current by dragging it to the " "other color swatch alongside.")); gtk_widget_set_tooltip_text (priv->cur_sample, - _("The color you've chosen. You can drag this color to a palette " + _("The color you’ve chosen. You can drag this color to a palette " "entry to save it for use in the future.")); } else { gtk_widget_set_tooltip_text (priv->old_sample, _("The previously-selected color, for comparison to the color " - "you're selecting now.")); + "you’re selecting now.")); gtk_widget_set_tooltip_text (priv->cur_sample, - _("The color you've chosen.")); + _("The color you’ve chosen.")); } } @@ -1693,7 +1693,7 @@ palette_new (GtkColorSelection *colorsel) gtk_widget_set_tooltip_text (retval, _("Click this palette entry to make it the current color. " "To change this entry, drag a color swatch here or right-click " - "it and select \"Save color here.\"")); + "it and select “Save color here.”")); return retval; } |