[vlc-commits] MKV: improve options wording

Jean-Baptiste Kempf git at videolan.org
Fri Nov 18 02:34:28 CET 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Nov 18 02:28:51 2011 +0100| [8b8dfe1f91df6fa0a8591dabdb0676cfb29132d2] | committer: Jean-Baptiste Kempf

MKV: improve options wording

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8b8dfe1f91df6fa0a8591dabdb0676cfb29132d2
---

 modules/demux/mkv/mkv.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/demux/mkv/mkv.cpp b/modules/demux/mkv/mkv.cpp
index 9f4b981..b056b8b 100644
--- a/modules/demux/mkv/mkv.cpp
+++ b/modules/demux/mkv/mkv.cpp
@@ -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"),



More information about the vlc-commits mailing list