GtkVolumeButton: Better typography

Use a small space before %. This matches what we do for percentages
elsewhere.

https://bugzilla.gnome.org/show_bug.cgi?id=735192
This commit is contained in:
Matthias Clasen 2014-08-22 11:06:47 -04:00
parent 67b4f8ea75
commit 3fc0c2a8ea

View File

@ -246,7 +246,7 @@ cb_query_tooltip (GtkWidget *button,
* Translate the "%d" to "%Id" if you want to use localised digits,
* or otherwise translate the "%d" to "%d".
*/
str = g_strdup_printf (C_("volume percentage", "%d %%"), percent);
str = g_strdup_printf (C_("volume percentage", "%d%%"), percent);
}
gtk_tooltip_set_text (tooltip, str);