diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2012-11-26 08:59:27 +0000 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2012-11-26 08:59:27 +0000 |
commit | ceb866dfe6be6d88b8f83a3cbdb8a2a688419c82 (patch) | |
tree | 199d37cb5ed552bbe04503667fe4153952405939 /gtk/gtkcustompaperunixdialog.c | |
parent | 788f1a0934b17c64c86ed86021d54d59271195c1 (diff) | |
download | gtk+-ceb866dfe6be6d88b8f83a3cbdb8a2a688419c82.tar.gz |
Bug 595615 — Use proper ellipses
Use ‘…’ instead of ‘...’ in translatable strings.
Closes: https://bugzilla.gnome.org/show_bug.cgi?id=595615
Diffstat (limited to 'gtk/gtkcustompaperunixdialog.c')
-rw-r--r-- | gtk/gtkcustompaperunixdialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcustompaperunixdialog.c b/gtk/gtkcustompaperunixdialog.c index a76bc4545c..57494c94a3 100644 --- a/gtk/gtkcustompaperunixdialog.c +++ b/gtk/gtkcustompaperunixdialog.c @@ -602,7 +602,7 @@ custom_paper_printer_data_func (GtkCellLayout *cell_layout, if (printer) g_object_set (cell, "text", gtk_printer_get_name (printer), NULL); else - g_object_set (cell, "text", _("Margins from Printer..."), NULL); + g_object_set (cell, "text", _("Margins from Printer…"), NULL); if (printer) g_object_unref (printer); |