* capplets/mime-type/edit-window.c (initialize_main_win_vals): For

easier i18n, used g_strdup_printf() instead of g_strconcat().
This commit is contained in:
cwryu 1999-08-09 12:37:43 +00:00
parent 3d88953c11
commit 5c49287e52
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ initialize_main_win_vals (void)
gtk_widget_show_all (GNOME_DIALOG (main_win->window)->vbox);
/* we initialize everything */
title = g_strconcat (_("Set actions for "), mi->mime_type, NULL);
title = g_strdup_printf (_("Set actions for %s"), mi->mime_type);
gtk_window_set_title (GTK_WINDOW (main_win->window), title);
g_free (title);
if (mi->ext[0]) {