]> git.sesse.net Git - vlc/blobdiff - modules/demux/avi/avi.c
* ALL: i18n updates and fixes.
[vlc] / modules / demux / avi / avi.c
index c91fc0178873e34e8d7708831dc2c1af50cd65d6..5b5c931d7a502f0595e64e9bb687e8078e63b517 100644 (file)
@@ -2,7 +2,7 @@
  * avi.c : AVI file Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: avi.c,v 1.35 2003/02/20 01:52:46 sigmunau Exp $
+ * $Id: avi.c,v 1.36 2003/02/27 13:19:43 gbazin Exp $
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -57,15 +57,15 @@ static int    AVIDemux_UnSeekable( input_thread_t *p_input );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    add_category_hint( "avi-demuxer", NULL, VLC_TRUE );
+    add_category_hint( N_("avi-demuxer"), NULL, VLC_TRUE );
         add_bool( "avi-interleaved", 0, NULL,
-                  "force interleaved method",
-                  "force interleaved method", VLC_TRUE );
+                  _("force interleaved method"),
+                  _("force interleaved method"), VLC_TRUE );
         add_bool( "avi-index", 0, NULL,
-                  "force index creation",
-                  "force index creation", VLC_TRUE );
+                  _("force index creation"),
+                  _("force index creation"), VLC_TRUE );
 
-    set_description( "avi demuxer" );
+    set_description( _("avi demuxer") );
     set_capability( "demux", 212 );
     set_callbacks( AVIInit, __AVIEnd );
 vlc_module_end();