comparison src/utilops.c @ 71:7425cb0aeb03

Sat Oct 14 05:18:45 2006 John Ellis <johne@verizon.net> * utilops.c: Mark string for translation. * fi.po: Update Finnish translation [merge from 2.0.2], submitted by Lauri Nurmi <lanurmi@iki.fi>. * README: Updates.
author gqview
date Sat, 14 Oct 2006 09:22:02 +0000
parents f63ecca6c087
children a10fc0308c12
comparison
equal deleted inserted replaced
70:13e76f7b2cbb 71:7425cb0aeb03
2659 } 2659 }
2660 2660
2661 if (!rename_file(old_path, new_path)) 2661 if (!rename_file(old_path, new_path))
2662 { 2662 {
2663 gchar *text = g_strdup_printf(_("Failed to rename %s to %s."), old_name, new_name); 2663 gchar *text = g_strdup_printf(_("Failed to rename %s to %s."), old_name, new_name);
2664 file_util_warning_dialog("Rename failed", text, GTK_STOCK_DIALOG_ERROR, parent); 2664 file_util_warning_dialog(_("Rename failed"), text, GTK_STOCK_DIALOG_ERROR, parent);
2665 g_free(text); 2665 g_free(text);
2666 2666
2667 return FALSE; 2667 return FALSE;
2668 } 2668 }
2669 2669