Commit 8856aee1 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* String review

parent 41f757da
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output * output.c : internal management of output streams for the audio output
***************************************************************************** *****************************************************************************
* Copyright (C) 2002-2004 VideoLAN * 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> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -101,7 +101,7 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -101,7 +101,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
/* Mono - create the audio-channels variable. */ /* Mono - create the audio-channels variable. */
var_Create( p_aout, "audio-channels", var_Create( p_aout, "audio-channels",
VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); 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 ); var_Change( p_aout, "audio-channels", VLC_VAR_SETTEXT, &text, NULL );
val.i_int = AOUT_VAR_CHAN_STEREO; text.psz_string = _("Stereo"); val.i_int = AOUT_VAR_CHAN_STEREO; text.psz_string = _("Stereo");
...@@ -128,7 +128,7 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -128,7 +128,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
/* Stereo - create the audio-channels variable. */ /* Stereo - create the audio-channels variable. */
var_Create( p_aout, "audio-channels", var_Create( p_aout, "audio-channels",
VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); 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 ); var_Change( p_aout, "audio-channels", VLC_VAR_SETTEXT, &text, NULL );
if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DOLBYSTEREO ) if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2004 VideoLAN * 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> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -110,13 +110,13 @@ int input_InitStream( input_thread_t * p_input, size_t i_data_len ) ...@@ -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_Change( p_input, "navigation", VLC_VAR_SETTEXT, &text, NULL );
var_Create( p_input, "video-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); 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_Change( p_input, "video-es", VLC_VAR_SETTEXT, &text, NULL );
var_Create( p_input, "audio-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); 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_Change( p_input, "audio-es", VLC_VAR_SETTEXT, &text, NULL );
var_Create( p_input, "spu-es", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE ); 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_Change( p_input, "spu-es", VLC_VAR_SETTEXT, &text, NULL );
var_AddCallback( p_input, "program", ProgramCallback, NULL ); var_AddCallback( p_input, "program", ProgramCallback, NULL );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment