From: buliabyak Date: Mon, 29 May 2006 02:03:23 +0000 (+0000) Subject: remove 'Preferences' from dialog title, as discussed on ml X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8ebf3a0e7c221fb678f8b011611cd5042cd27adc;p=inkscape.git remove 'Preferences' from dialog title, as discussed on ml --- diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp index 3058b939f..4265f9c47 100644 --- a/src/extension/prefdialog.cpp +++ b/src/extension/prefdialog.cpp @@ -30,7 +30,7 @@ PrefDialog::PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * co Gtk::Dialog::Dialog("Temp Title", true, true), _help(help), _name(name) { /* A hack to internationalize the title properly */ - gchar * title = g_strdup_printf(_("%s Preferences"), name.c_str()); + gchar * title = g_strdup_printf("%s", name.c_str()); this->set_title(title); g_free(title);