[vlc-commits] Old RC: remove reference to former menu command (fixes #10539)
Rémi Denis-Courmont
git at videolan.org
Sat Feb 1 17:55:27 CET 2014
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Feb 1 18:54:44 2014 +0200| [0991948a3e9b6434a215bac75bd83e2b9a7f8571] | committer: Rémi Denis-Courmont
Old RC: remove reference to former menu command (fixes #10539)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0991948a3e9b6434a215bac75bd83e2b9a7f8571
---
modules/control/rc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/control/rc.c b/modules/control/rc.c
index 3d3f7af..da43b4f 100644
--- a/modules/control/rc.c
+++ b/modules/control/rc.c
@@ -963,7 +963,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
if( ( state == PAUSE_S ) &&
( strcmp( psz_cmd, "pause" ) != 0 ) && (strcmp( psz_cmd,"frame") != 0 ) )
{
- msg_rc( "%s", _("Press menu select or pause to continue.") );
+ msg_rc( "%s", _("Press pause to continue.") );
}
else
/* Parse commands that only require an input */
@@ -1189,7 +1189,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
if( state == PAUSE_S )
{
- msg_rc( "%s", _("Type 'menu select' or 'pause' to continue.") );
+ msg_rc( "%s", _("Type 'pause' to continue.") );
return VLC_EGENERIC;
}
}
@@ -1444,7 +1444,7 @@ static int Volume( vlc_object_t *p_this, char const *psz_cmd,
vlc_object_release( p_input );
if( state == PAUSE_S )
{
- msg_rc( "%s", _("Type 'menu select' or 'pause' to continue.") );
+ msg_rc( "%s", _("Type 'pause' to continue.") );
return VLC_EGENERIC;
}
}
@@ -1488,7 +1488,7 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
vlc_object_release( p_input );
if( state == PAUSE_S )
{
- msg_rc( "%s", _("Type 'menu select' or 'pause' to continue.") );
+ msg_rc( "%s", _("Type 'pause' to continue.") );
return VLC_EGENERIC;
}
More information about the vlc-commits
mailing list