when cutting away ellipsis, also look for U+2026 HORIZONTAL ELLIPSIS.

2006-06-16  Sven Neumann  <neumann@jpk.com>

	* app/pdb/gimppluginprocedure.c (gimp_plug_in_procedure_get_label):
	* plug-ins/script-fu/script-fu-interface.c (script_fu_interface):
	when cutting away ellipsis, also look for U+2026 HORIZONTAL ELLIPSIS.
This commit is contained in:
Sven Neumann
2006-06-16 12:25:02 +00:00
committed by Sven Neumann
parent b12f1abb5f
commit bee8fb744c
4 changed files with 35 additions and 18 deletions

View File

@ -211,8 +211,13 @@ script_fu_interface (SFScript *script)
g_free (sf_interface->title);
sf_interface->title = tmp;
tmp = strstr (sf_interface->title, "...");
if (tmp)
/* cut off ellipsis */
tmp = (strstr (sf_interface->title, "..."));
if (! tmp)
/* U+2026 HORIZONTAL ELLIPSIS */
tmp = strstr (sf_interface->title, "\342\200\246");
if (tmp && tmp == (sf_interface->title + strlen (sf_interface->title) - 3))
*tmp = '\0';
title = g_strdup_printf (_("Script-Fu: %s"), sf_interface->title);