comparison src/ui_pathsel.c @ 989:50e1f5e54c1a

Fix untranslated messages. French translation and POTFILES.in were updated.
author zas_
date Sun, 24 Aug 2008 13:22:08 +0000
parents 1698baa37871
children 3096a47232ec
comparison
equal deleted inserted replaced
988:788eaa70a5c4 989:50e1f5e54c1a
428 g_free(buf); 428 g_free(buf);
429 429
430 if (isname(new_path)) 430 if (isname(new_path))
431 { 431 {
432 buf = g_strdup_printf(_("A file with name %s already exists."), new); 432 buf = g_strdup_printf(_("A file with name %s already exists."), new);
433 warning_dialog("Rename failed", buf, GTK_STOCK_DIALOG_INFO, dd->entry); 433 warning_dialog(_("Rename failed"), buf, GTK_STOCK_DIALOG_INFO, dd->entry);
434 g_free(buf); 434 g_free(buf);
435 } 435 }
436 else if (!rename_file(old_path, new_path)) 436 else if (!rename_file(old_path, new_path))
437 { 437 {
438 buf = g_strdup_printf(_("Failed to rename %s to %s."), old, new); 438 buf = g_strdup_printf(_("Failed to rename %s to %s."), old, new);
439 warning_dialog("Rename failed", buf, GTK_STOCK_DIALOG_ERROR, dd->entry); 439 warning_dialog(_("Rename failed"), buf, GTK_STOCK_DIALOG_ERROR, dd->entry);
440 g_free(buf); 440 g_free(buf);
441 } 441 }
442 else 442 else
443 { 443 {
444 const gchar *text; 444 const gchar *text;