From: Clément Stenac Date: Tue, 28 Mar 2006 13:57:36 +0000 (+0000) Subject: Strings in include/ (Refs:#438) X-Git-Tag: 0.9.0-test0~11742 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5681d3bef8fa892d561f4736e1ce9ef99363243a;p=vlc Strings in include/ (Refs:#438) --- diff --git a/include/codecs.h b/include/codecs.h index d4eb31a063..597c2b4195 100644 --- a/include/codecs.h +++ b/include/codecs.h @@ -294,12 +294,12 @@ static struct wave_format_tag_to_fourcc[] = { { WAVE_FORMAT_PCM, VLC_FOURCC( 'a', 'r', 'a', 'w' ), "Raw audio" }, - { WAVE_FORMAT_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x02), "Adpcm" }, + { WAVE_FORMAT_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x02), "ADPCM" }, { WAVE_FORMAT_IEEE_FLOAT, VLC_FOURCC( 'a', 'f', 'l', 't' ), "IEEE Float audio" }, { WAVE_FORMAT_ALAW, VLC_FOURCC( 'a', 'l', 'a', 'w' ), "A-Law" }, { WAVE_FORMAT_MULAW, VLC_FOURCC( 'm', 'l', 'a', 'w' ), "Mu-Law" }, - { WAVE_FORMAT_IMA_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x11), "Ima-Adpcm" }, - { WAVE_FORMAT_G726, VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 Adpcm" }, + { WAVE_FORMAT_IMA_ADPCM, VLC_FOURCC( 'm', 's', 0x00,0x11), "Ima-ADPCM" }, + { WAVE_FORMAT_G726, VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 ADPCM" }, { WAVE_FORMAT_MPEGLAYER3, VLC_FOURCC( 'm', 'p', 'g', 'a' ), "Mpeg Audio" }, { WAVE_FORMAT_MPEG, VLC_FOURCC( 'm', 'p', 'g', 'a' ), "Mpeg Audio" }, { WAVE_FORMAT_A52, VLC_FOURCC( 'a', '5', '2', ' ' ), "A/52" }, diff --git a/include/network.h b/include/network.h index 3d7d9fabd1..aac4857bf8 100644 --- a/include/network.h +++ b/include/network.h @@ -251,7 +251,7 @@ static inline vlc_bool_t net_AddressIsMulticast( vlc_object_t *p_object, const c &hints, &res ); if( i ) { - msg_Err( p_object, "Invalid node for net_AddressIsMulticast: %s : %s", + msg_Err( p_object, "invalid address for net_AddressIsMulticast: %s : %s", psz_addr, vlc_gai_strerror( i ) ); return VLC_FALSE; } diff --git a/include/vlc_interface.h b/include/vlc_interface.h index 0b8747a9dc..d2bc695caf 100644 --- a/include/vlc_interface.h +++ b/include/vlc_interface.h @@ -135,9 +135,9 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) ); } \ msg_Info( p_intf, COPYRIGHT_MESSAGE ); \ msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \ - "anymore, open a dos command box, go to the " \ + "anymore, open a command-line window, go to the " \ "directory where you installed VLC and run " \ - "\"vlc -I wxwin\"\n") ) + "\"vlc -I wx\"\n") ) #else # define CONSOLE_INTRO_MSG #endif