From: Francois Cartegnie Date: Thu, 16 Sep 2010 13:09:39 +0000 (+0200) Subject: broken avi dialog: don't confuse user by asking a binary answer X-Git-Tag: 1.2.0-pre1~5253 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f42b56bb857128e3551baafb8f8acc34da18c40b;hp=dea4f0a1b9ca2132ac32b2b31b0b6063a03c8bc0;p=vlc broken avi dialog: don't confuse user by asking a binary answer --- diff --git a/modules/demux/avi/avi.c b/modules/demux/avi/avi.c index cc3f374747..1420fecf6c 100644 --- a/modules/demux/avi/avi.c +++ b/modules/demux/avi/avi.c @@ -655,11 +655,11 @@ aviindex: b_index = true; goto aviindex; } - switch( dialog_Question( p_demux, _("AVI Index") , - _( "This AVI file is broken. Seeking will not work correctly.\n" - "Do you want to try to fix it?\n\n" - "This might take a long time." ), - _( "Repair" ), _( "Don't repair" ), _( "Cancel") ) ) + switch( dialog_Question( p_demux, _("Broken AVI Index") , + _( "Because this AVI file is broken, seeking will not work correctly.\n" + "It can be fixed, but this step might take a long time.\n" + "What do you want to do ?" ), + _( "Repair and play" ), _( "Play as is" ), _( "Do not play") ) ) { case 1: b_index = true;