]> git.sesse.net Git - vlc/commitdiff
* String review
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 26 Jan 2004 21:37:58 +0000 (21:37 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 26 Jan 2004 21:37:58 +0000 (21:37 +0000)
src/audio_output/output.c
src/input/input_programs.c

index 00173fb8470d8be5a3b64010a24b891f715b19e2..287601a6177e4d407e400a2bb765ecf1ce900aac 100644 (file)
@@ -2,7 +2,7 @@
  * output.c : internal management of output streams for the audio output
  *****************************************************************************
  * Copyright (C) 2002-2004 VideoLAN
- * $Id: output.c,v 1.42 2004/01/06 12:02:05 zorglub Exp $
+ * $Id: output.c,v 1.43 2004/01/26 21:37:58 hartman Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -101,7 +101,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
         /* Mono - create the audio-channels variable. */
         var_Create( p_aout, "audio-channels",
                     VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
-        text.psz_string = _("Audio channels");
+        text.psz_string = _("Audio Channels");
         var_Change( p_aout, "audio-channels", VLC_VAR_SETTEXT, &text, NULL );
 
         val.i_int = AOUT_VAR_CHAN_STEREO; text.psz_string = _("Stereo");
@@ -128,7 +128,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
         /* Stereo - create the audio-channels variable. */
         var_Create( p_aout, "audio-channels",
                     VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
-        text.psz_string = _("Audio channels");
+        text.psz_string = _("Audio Channels");
         var_Change( p_aout, "audio-channels", VLC_VAR_SETTEXT, &text, NULL );
 
         if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
index 99b86c8905974a1a1a3aad6ba70cc55aa736b4fd..8117ee0c324ca0ac7fca8dc6583065124a8fc117 100644 (file)
@@ -2,7 +2,7 @@
  * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
  *****************************************************************************
  * Copyright (C) 1999-2004 VideoLAN
- * $Id: input_programs.c,v 1.129 2004/01/25 17:16:06 zorglub Exp $
+ * $Id: input_programs.c,v 1.130 2004/01/26 21:37:58 hartman Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -110,13 +110,13 @@ int input_InitStream( input_thread_t * p_input, size_t i_data_len )
     var_Change( p_input, "navigation", VLC_VAR_SETTEXT, &text, NULL );
 
     var_Create( p_input, "video-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
-    text.psz_string = _("Video track");
+    text.psz_string = _("Video Track");
     var_Change( p_input, "video-es", VLC_VAR_SETTEXT, &text, NULL );
     var_Create( p_input, "audio-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
-    text.psz_string = _("Audio track");
+    text.psz_string = _("Audio Track");
     var_Change( p_input, "audio-es", VLC_VAR_SETTEXT, &text, NULL );
     var_Create( p_input, "spu-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
-    text.psz_string = _("Subtitles track");
+    text.psz_string = _("Subtitles Track");
     var_Change( p_input, "spu-es", VLC_VAR_SETTEXT, &text, NULL );
 
     var_AddCallback( p_input, "program", ProgramCallback, NULL );