]> git.sesse.net Git - vlc/commitdiff
Access strings (Refs:#438)
authorClément Stenac <zorglub@videolan.org>
Thu, 30 Mar 2006 05:37:29 +0000 (05:37 +0000)
committerClément Stenac <zorglub@videolan.org>
Thu, 30 Mar 2006 05:37:29 +0000 (05:37 +0000)
modules/access_filter/record.c
modules/access_filter/timeshift.c
modules/access_output/http.c
modules/access_output/shout.c
modules/access_output/udp.c

index 5854934603fd3f0ce24d9318c783e8ddfeb92b94..2afdf91d1db55c0a166d9dbe16b77efae9d14f17 100644 (file)
@@ -42,7 +42,7 @@
 
 #define RECORD_PATH_TXT N_("Record directory")
 #define RECORD_PATH_LONGTXT N_( \
-    "Allows you to specify the directory where the record will be stored" )
+    "Directory where the record will be stored." )
 
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
index 361534fcce7c089ed787f258ebe94d165fb58996..732bc8ff0c9536720dde71a0d6921e2143413723 100644 (file)
@@ -42,8 +42,8 @@ static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
 #define GRANULARITY_TEXT N_("Timeshift granularity")
-#define GRANULARITY_LONGTEXT N_( "Size of the temporary files use to store " \
-  "the timeshifted stream." )
+#define GRANULARITY_LONGTEXT N_( "This is the size of the temporary files " \
+  "tha will be used to store the timeshifted streams." )
 #define DIR_TEXT N_("Timeshift directory")
 #define DIR_LONGTEXT N_( "Directory used to store the timeshift temporary " \
   "files." )
index 47029cec7e14cbf2605d1a56358d7084260a4b89..5c538b3f5ff8c609468d34d1a67f23f33e5f734f 100644 (file)
@@ -58,32 +58,33 @@ static void Close( vlc_object_t * );
 #define SOUT_CFG_PREFIX "sout-http-"
 
 #define USER_TEXT N_("Username")
-#define USER_LONGTEXT N_("Allows you to give a user name that will be " \
+#define USER_LONGTEXT N_("User name that will be " \
                          "requested to access the stream." )
 #define PASS_TEXT N_("Password")
-#define PASS_LONGTEXT N_("Allows you to give a password that will be " \
+#define PASS_LONGTEXT N_("Password that will be " \
                          "requested to access the stream." )
 #define MIME_TEXT N_("Mime")
-#define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." )
+#define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \
+                        "if not specified." )
 
 #define CERT_TEXT N_( "Certificate file" )
 #define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "\
-                          "be used by the HTTP/SSL stream output" )
+                          "be used for HTTPS." )
 #define KEY_TEXT N_( "Private key file" )
 #define KEY_LONGTEXT N_( "Path to the x509 PEM private key file that will " \
-                         " be used by the HTTP/SSL stream output. Leave " \
+                         " be used for HTTPS. Leave " \
                          "empty if you don't have one." )
 #define CA_TEXT N_( "Root CA file" )
 #define CA_LONGTEXT N_( "Path to the x509 PEM trusted root CA certificates " \
-                        "(certificate authority) file that will be used by " \
-                        "the HTTP/SSL stream output. Leave empty if you " \
+                        "(certificate authority) file that will be used for" \
+                        "HTTPS. Leave empty if you " \
                         "don't have one." )
 #define CRL_TEXT N_( "CRL file" )
 #define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " \
-                         "file that will be HTTP/SSL stream output. Leave " \
+                         "file that will be used for SSL. Leave " \
                          "empty if you don't have one." )
 #define BONJOUR_TEXT N_( "Advertise with Bonjour")
-#define BONJOUR_LONGTEXT N_( "Advertise the stream with the Bonjour protocol" )
+#define BONJOUR_LONGTEXT N_( "Advertise the stream with the Bonjour protocol." )
 
 
 vlc_module_begin();
index 2e04b0fb4eda8cf098caae0e5376adc27a46332c..febd3a52b6568def910cda98b4015267218309cd 100644 (file)
@@ -55,28 +55,31 @@ static void Close( vlc_object_t * );
 
 #define SOUT_CFG_PREFIX "sout-shout-"
 
-#define NAME_TEXT N_("Stream-name")
-#define NAME_LONGTEXT N_("The name this stream/channel will get on the icecast server." )
+#define NAME_TEXT N_("Stream name")
+#define NAME_LONGTEXT N_("Name to give to this stream/channel on the " \
+                         "icecast server." )
 
-#define DESCRIPTION_TEXT N_("Stream-description")
-#define DESCRIPTION_LONGTEXT N_("A description of the stream content. (Information about " \
-                         "your channel)." )
+#define DESCRIPTION_TEXT N_("Stream description")
+#define DESCRIPTION_LONGTEXT N_("Description of the stream content or " \
+                                "information about your channel." )
 
 #define MP3_TEXT N_("Stream MP3")
-#define MP3_LONGTEXT N_("Normally you have to feed the shoutcast module with Ogg streams. " \
-                         "This option allows you to feed MP3 streams instead, so you can " \
-                         "forward MP3 streams to the icecast server." )
+#define MP3_LONGTEXT N_("You normally have to feed the shoutcast module " \
+                        "with Ogg streams. It is also possible to stream " \
+                        "MP3 instead, so you can "\
+                        "forward MP3 streams to the icecast server." )
 
 vlc_module_begin();
-    set_description( _("libshout (icecast) output") );
-    set_shortname( "Shout" );
+    set_description( _("IceCAST output") );
+    set_shortname( "Shoutcast" );
     set_capability( "sout access", 50 );
     set_category( CAT_SOUT );
     set_subcategory( SUBCAT_SOUT_ACO );
     add_shortcut( "shout" );
     add_string( SOUT_CFG_PREFIX "name", "VLC media player - Live stream", NULL,
                 NAME_TEXT, NAME_LONGTEXT, VLC_FALSE );
-    add_string( SOUT_CFG_PREFIX "description", "Live stream from VLC media player. " \
+    add_string( SOUT_CFG_PREFIX "description",
+                 "Live stream from VLC media player. " \
                 "http://www.videolan.org/vlc", NULL,
                 DESCRIPTION_TEXT, DESCRIPTION_LONGTEXT, VLC_FALSE );
     add_bool(   SOUT_CFG_PREFIX "mp3", VLC_FALSE, NULL,
index 50051b51537961ca88611bda49820a4649ca3dd0..fe979520f3e008ea8f2c3436db556b5b350cbce2 100644 (file)
@@ -74,21 +74,21 @@ static void Close( vlc_object_t * );
 
 #define CACHING_TEXT N_("Caching value (ms)")
 #define CACHING_LONGTEXT N_( \
-    "Allows you to modify the default caching value for UDP streams. This " \
-    "value should be set in millisecond units." )
+    "Default caching value for outbound UDP streams. This " \
+    "value should be set in milliseconds." )
 
 #define TTL_TEXT N_("Time-To-Live (TTL)")
-#define TTL_LONGTEXT N_("Allows you to define the Time-To-Live of the " \
+#define TTL_LONGTEXT N_("Time-To-Live of the " \
                         "outgoing stream.")
 
 #define GROUP_TEXT N_("Group packets")
 #define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \
-                          "or by groups. This allows you to give the number " \
+                          "or by groups. You can choose the number " \
                           "of packets that will be sent at a time. It " \
                           "helps reducing the scheduling load on " \
                           "heavily-loaded systems." )
 #define RAW_TEXT N_("Raw write")
-#define RAW_LONGTEXT N_("If you enable this option, packets will be sent " \
+#define RAW_LONGTEXT N_("Packets will be sent " \
                        "directly, without trying to fill the MTU (ie, " \
                        "without trying to make the biggest possible packets " \
                        "in order to improve streaming)." )