]> git.sesse.net Git - vlc/commitdiff
Strings review of telnet.c (Refs:#438)
authorClément Stenac <zorglub@videolan.org>
Wed, 22 Mar 2006 07:12:10 +0000 (07:12 +0000)
committerClément Stenac <zorglub@videolan.org>
Wed, 22 Mar 2006 07:12:10 +0000 (07:12 +0000)
modules/control/telnet.c

index c44ae71e0e2207c05a32598c71920dd656b13722..799a6e8bb25915f0e3cba3ef2d297303a7e2f05e 100644 (file)
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
-#define TELNETHOST_TEXT N_( "Telnet Interface host" )
-#define TELNETHOST_LONGTEXT N_( "Default to listen on all network interfaces" )
-#define TELNETPORT_TEXT N_( "Telnet Interface port" )
-#define TELNETPORT_LONGTEXT N_( "Default to 4212" )
+#define TELNETHOST_TEXT N_( "Telnet interface listen host" )
+#define TELNETHOST_LONGTEXT N_( "This is the host on which the telnet " \
+    "interface will listen. It defaults to all network interfaces (0.0.0.0)." \
+    " I you want the telnet interface to be available only on the local " \
+    "machine, enter 127.0.0.1" )
+#define TELNETPORT_TEXT N_( "Telnet interface port" )
+#define TELNETPORT_LONGTEXT N_( "This is the TCP port on which the telnet " \
+    "interface will listen. It defaults to 4212" )
 #define TELNETPORT_DEFAULT 4212
-#define TELNETPWD_TEXT N_( "Telnet Interface password" )
-#define TELNETPWD_LONGTEXT N_( "Default to admin" )
+#define TELNETPWD_TEXT N_( "Telnet interface password" )
+#define TELNETPWD_LONGTEXT N_( "The telnet interface uses a single " \
+    "administration password. The default value is \"admin\"." )
 #define TELNETPWD_DEFAULT "admin"
 
 vlc_module_begin();