mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
* 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:
parent
3d88953c11
commit
5c49287e52
@ -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]) {
|
||||
|
Loading…
Reference in New Issue
Block a user