]> git.sesse.net Git - vlc/commitdiff
MKV: improve options wording
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 18 Nov 2011 01:28:51 +0000 (02:28 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 18 Nov 2011 01:33:43 +0000 (02:33 +0100)
modules/demux/mkv/mkv.cpp

index 9f4b98139e22326ece5f492452f5e6cebf30b02e..b056b8b0d226527b0991f78ec77f66d3cb76274b 100644 (file)
@@ -51,16 +51,16 @@ vlc_module_begin ()
     set_subcategory( SUBCAT_INPUT_DEMUX )
 
     add_bool( "mkv-use-ordered-chapters", true,
-            N_("Ordered chapters"),
-            N_("Play ordered chapters as specified in the segment."), false );
+            N_("Respect ordered chapters"),
+            N_("Play chapters in the order specified in the segment."), false );
 
     add_bool( "mkv-use-chapter-codec", true,
             N_("Chapter codecs"),
             N_("Use chapter codecs found in the segment."), true );
 
     add_bool( "mkv-preload-local-dir", false,
-            N_("Preload Directory"),
-            N_("Preload matroska files from the same family in the same directory (not good for broken files)."), false );
+            N_("Preload MKV files in the same directory"),
+            N_("Preload matroska files in the same directory to find linked segments (not good for broken files)."), false );
 
     add_bool( "mkv-seek-percent", false,
             N_("Seek based on percent not time"),