commit 864fd8e5fe8be79f565c9234ceb1ac3d43054309
parent 2baec79262e41790484f46e9b3b9ccc5b3f49983
Author: Ricardo Mones <ricardo@mones.org>
Date: Sat, 12 Apr 2014 13:25:18 +0200
Fix bug #3094 “OK or Yes to create new directory?”
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/exphtmldlg.c b/src/exphtmldlg.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 2002-2012 Match Grun and the Claws Mail team
+ * Copyright (C) 2002-2014 Match Grun and the Claws Mail team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -174,10 +174,10 @@ static gboolean exp_html_move_file( void ) {
/* Prompt to create */
msg = g_strdup_printf( _(
- "HTML Output Directory '%s'\n" \
- "does not exist. OK to create new directory?" ),
+ "The HTML output directory '%s'\n" \
+ "does not exist. Do you want to create it?" ),
_exportCtl_->dirOutput );
- aval = alertpanel( _("Create Directory" ),
+ aval = alertpanel( _("Create directory" ),
msg, GTK_STOCK_NO, GTK_STOCK_YES, NULL );
g_free( msg );
if( aval != G_ALERTALTERNATE ) return FALSE;