diff 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
line wrap: on
line diff
--- a/src/ui_pathsel.c	Sun Aug 24 10:00:40 2008 +0000
+++ b/src/ui_pathsel.c	Sun Aug 24 13:22:08 2008 +0000
@@ -430,13 +430,13 @@
 	if (isname(new_path))
 		{
 		buf = g_strdup_printf(_("A file with name %s already exists."), new);
-		warning_dialog("Rename failed", buf, GTK_STOCK_DIALOG_INFO, dd->entry);
+		warning_dialog(_("Rename failed"), buf, GTK_STOCK_DIALOG_INFO, dd->entry);
 		g_free(buf);
 		}
 	else if (!rename_file(old_path, new_path))
 		{
 		buf = g_strdup_printf(_("Failed to rename %s to %s."), old, new);
-		warning_dialog("Rename failed", buf, GTK_STOCK_DIALOG_ERROR, dd->entry);
+		warning_dialog(_("Rename failed"), buf, GTK_STOCK_DIALOG_ERROR, dd->entry);
 		g_free(buf);
 		}
 	else