X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fftp.c;h=070cf4099ed2cd0d2f4f48e2e84b75012b0f4808;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=7233819bcd6c8f3709241bf40759a44bd1ee90e6;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/access/ftp.c b/modules/access/ftp.c index 7233819bcd..070cf4099e 100644 --- a/modules/access/ftp.c +++ b/modules/access/ftp.c @@ -126,7 +126,7 @@ static int Login( vlc_object_t *p_access, access_sys_t *p_sys ) if( fd == -1 ) { msg_Err( p_access, "connection failed" ); - intf_UserFatal( p_access, VLC_FALSE, _("Network interaction failed"), + intf_UserFatal( p_access, VLC_FALSE, _("Network interaction failed"), _("VLC could not connect with the given server.") ); return -1; } @@ -136,7 +136,7 @@ static int Login( vlc_object_t *p_access, access_sys_t *p_sys ) if( i_answer / 100 != 2 ) { msg_Err( p_access, "connection rejected" ); - intf_UserFatal( p_access, VLC_FALSE, _("Network interaction failed"), + intf_UserFatal( p_access, VLC_FALSE, _("Network interaction failed"), _("VLC's connection to the given server was rejected.") ); return -1; } @@ -196,8 +196,8 @@ static int Login( vlc_object_t *p_access, access_sys_t *p_sys ) if( i_answer / 100 != 2 ) { msg_Err( p_access, "account rejected" ); - intf_UserFatal( p_access, VLC_FALSE, - _("Network interaction failed"), + intf_UserFatal( p_access, VLC_FALSE, + _("Network interaction failed"), _("Your account was rejected.") ); return -1; } @@ -206,16 +206,16 @@ static int Login( vlc_object_t *p_access, access_sys_t *p_sys ) default: msg_Err( p_access, "password rejected" ); - intf_UserFatal( p_access, VLC_FALSE, - _("Network interaction failed"), + intf_UserFatal( p_access, VLC_FALSE, + _("Network interaction failed"), _("Your password was rejected.") ); return -1; } break; default: msg_Err( p_access, "user rejected" ); - intf_UserFatal( p_access, VLC_FALSE, - _("Network interaction failed"), + intf_UserFatal( p_access, VLC_FALSE, + _("Network interaction failed"), _("Your connection attempt to the server was rejected.") ); return -1; }