Changeset 57d2f9918c78357e347d50432cbd49e8b867d2ce
- Timestamp:
- 22/03/06 08:12:10
(3 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1143011530 +0000
- git-parent:
[01150186ea002bd5cadd887f6437ab0e97ef2aae]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1143011530 +0000
- Message:
Strings review of telnet.c (Refs:#438)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb3717a2 |
r57d2f99 |
|
| 70 | 70 | static void Close( vlc_object_t * ); |
|---|
| 71 | 71 | |
|---|
| 72 | | #define TELNETHOST_TEXT N_( "Telnet Interface host" ) |
|---|
| 73 | | #define TELNETHOST_LONGTEXT N_( "Default to listen on all network interfaces" ) |
|---|
| 74 | | #define TELNETPORT_TEXT N_( "Telnet Interface port" ) |
|---|
| 75 | | #define TELNETPORT_LONGTEXT N_( "Default to 4212" ) |
|---|
| | 72 | #define TELNETHOST_TEXT N_( "Telnet interface listen host" ) |
|---|
| | 73 | #define TELNETHOST_LONGTEXT N_( "This is the host on which the telnet " \ |
|---|
| | 74 | "interface will listen. It defaults to all network interfaces (0.0.0.0)." \ |
|---|
| | 75 | " I you want the telnet interface to be available only on the local " \ |
|---|
| | 76 | "machine, enter 127.0.0.1" ) |
|---|
| | 77 | #define TELNETPORT_TEXT N_( "Telnet interface port" ) |
|---|
| | 78 | #define TELNETPORT_LONGTEXT N_( "This is the TCP port on which the telnet " \ |
|---|
| | 79 | "interface will listen. It defaults to 4212" ) |
|---|
| 76 | 80 | #define TELNETPORT_DEFAULT 4212 |
|---|
| 77 | | #define TELNETPWD_TEXT N_( "Telnet Interface password" ) |
|---|
| 78 | | #define TELNETPWD_LONGTEXT N_( "Default to admin" ) |
|---|
| | 81 | #define TELNETPWD_TEXT N_( "Telnet interface password" ) |
|---|
| | 82 | #define TELNETPWD_LONGTEXT N_( "The telnet interface uses a single " \ |
|---|
| | 83 | "administration password. The default value is \"admin\"." ) |
|---|
| 79 | 84 | #define TELNETPWD_DEFAULT "admin" |
|---|
| 80 | 85 | |
|---|