Only TinyScheme should translate strings in script files. Fixes bug #696790.

This commit is contained in:
Kevin Cozens
2013-04-02 15:15:22 -04:00
parent 1e85ae981a
commit c953368164
3 changed files with 11 additions and 11 deletions

View File

@ -334,7 +334,7 @@ script_fu_script_get_title (SFScript *script)
g_return_val_if_fail (script != NULL, NULL);
/* strip mnemonics from the menupath */
title = gimp_strip_uline (gettext (script->menu_label));
title = gimp_strip_uline (script->menu_label);
/* if this looks like a full menu path, use only the last part */
if (title[0] == '<' && (tmp = strrchr (title, '/')) && tmp[1])