From 864fd8e5fe8be79f565c9234ceb1ac3d43054309 Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Sat, 12 Apr 2014 13:25:18 +0200 Subject: [PATCH] =?utf8?q?Fix=20bug=20#3094=20=E2=80=9COK=20or=20Yes=20to?= =?utf8?q?=20create=20new=20directory=3F=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/exphtmldlg.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/exphtmldlg.c b/src/exphtmldlg.c index 12b6deb77..49db84cf9 100644 --- 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; -- 2.25.1