Commit 64b58623 authored by Christophe Massiot's avatar Christophe Massiot

* configure.ac.in: Disabled Swedish translation since it doesn't use the

  right charset,
* Implemented localization for audio-channels and video-device variables.
parent 4b664e9c
...@@ -169,7 +169,7 @@ AM_CONDITIONAL(HAVE_WIN32, test "x${SYS}" = "xmingw32") ...@@ -169,7 +169,7 @@ AM_CONDITIONAL(HAVE_WIN32, test "x${SYS}" = "xmingw32")
dnl dnl
dnl Gettext stuff dnl Gettext stuff
dnl dnl
ALL_LINGUAS="de en_GB fr it ja no ru nl pl sv" ALL_LINGUAS="de en_GB fr it ja no ru nl pl"
AM_GNU_GETTEXT_VERSION(0.10.40) AM_GNU_GETTEXT_VERSION(0.10.40)
AM_GNU_GETTEXT AM_GNU_GETTEXT
if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
......
...@@ -399,7 +399,7 @@ ...@@ -399,7 +399,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.5.0</string> <string>0.5.1-cvs</string>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* controls.m: MacOS X interface plugin * controls.m: MacOS X interface plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: controls.m,v 1.21 2003/02/07 21:30:25 hartman Exp $ * $Id: controls.m,v 1.22 2003/02/08 17:26:00 massiot Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -635,7 +635,7 @@ ...@@ -635,7 +635,7 @@
if( [o_mi state] == NSOffState ) if( [o_mi state] == NSOffState )
{ {
const char * psz_variable = (const char *)[o_mi tag]; const char * psz_variable = (const char *)[o_mi tag];
const char * psz_value = [[o_mi title] cString]; char * psz_value = [NSApp delocalizeString: [o_mi title]];
vlc_object_t * p_object = (vlc_object_t *) vlc_object_t * p_object = (vlc_object_t *)
[[o_mi representedObject] pointerValue]; [[o_mi representedObject] pointerValue];
vlc_value_t val; vlc_value_t val;
...@@ -646,6 +646,8 @@ ...@@ -646,6 +646,8 @@
{ {
msg_Warn( p_object, "cannot set variable (%s)", psz_value ); msg_Warn( p_object, "cannot set variable (%s)", psz_value );
} }
free( psz_value );
} }
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf.h: MacOS X interface plugin * intf.h: MacOS X interface plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: intf.h,v 1.23 2003/02/07 20:23:17 hartman Exp $ * $Id: intf.h,v 1.24 2003/02/08 17:26:00 massiot Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
- (void)initIntlSupport; - (void)initIntlSupport;
- (NSString *)localizedString:(char *)psz; - (NSString *)localizedString:(char *)psz;
- (char *)delocalizeString:(NSString *)psz;
- (void)setIntf:(intf_thread_t *)p_intf; - (void)setIntf:(intf_thread_t *)p_intf;
- (intf_thread_t *)getIntf; - (intf_thread_t *)getIntf;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin * intf.m: MacOS X interface plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2002-2003 VideoLAN * Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.48 2003/02/07 20:23:17 hartman Exp $ * $Id: intf.m,v 1.49 2003/02/08 17:26:00 massiot Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -154,6 +154,32 @@ static void Run( intf_thread_t *p_intf ) ...@@ -154,6 +154,32 @@ static void Run( intf_thread_t *p_intf )
return( o_str ); return( o_str );
} }
- (char *)delocalizeString:(NSString *)id
{
NSData * o_data = [id dataUsingEncoding: i_encoding
allowLossyConversion: NO];
char * psz_string;
if ( o_data == nil )
{
o_data = [id dataUsingEncoding: i_encoding
allowLossyConversion: YES];
psz_string = malloc( [o_data length] + 1 );
[o_data getBytes: psz_string];
psz_string[ [o_data length] ] = '\0';
msg_Err( p_intf, "cannot convert to wanted encoding: %s",
psz_string );
}
else
{
psz_string = malloc( [o_data length] + 1 );
[o_data getBytes: psz_string];
psz_string[ [o_data length] ] = '\0';
}
return psz_string;
}
- (void)setIntf:(intf_thread_t *)_p_intf - (void)setIntf:(intf_thread_t *)_p_intf
{ {
p_intf = _p_intf; p_intf = _p_intf;
...@@ -1259,8 +1285,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg ) ...@@ -1259,8 +1285,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
NSMenuItem * o_lmi; NSMenuItem * o_lmi;
NSString * o_title; NSString * o_title;
//o_title = [NSApp localizedString: val.p_list->p_values[i].psz_string]; o_title = [NSApp localizedString: val.p_list->p_values[i].psz_string];
o_title = [NSString stringWithCString: val.p_list->p_values[i].psz_string];
o_lmi = [o_menu addItemWithTitle: o_title o_lmi = [o_menu addItemWithTitle: o_title
action: pf_callback keyEquivalent: @""]; action: pf_callback keyEquivalent: @""];
/* FIXME: this isn't 64-bit clean ! */ /* FIXME: this isn't 64-bit clean ! */
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout.m: MacOS X video output plugin * vout.m: MacOS X video output plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2003 VideoLAN * Copyright (C) 2001-2003 VideoLAN
* $Id: vout.m,v 1.25 2003/02/07 21:30:25 hartman Exp $ * $Id: vout.m,v 1.26 2003/02/08 17:26:00 massiot Exp $
* *
* Authors: Colin Delacroix <colin@zoy.org> * Authors: Colin Delacroix <colin@zoy.org>
* Florian G. Pflug <fgp@phlo.org> * Florian G. Pflug <fgp@phlo.org>
...@@ -191,7 +191,7 @@ int E_(OpenVideo) ( vlc_object_t *p_this ) ...@@ -191,7 +191,7 @@ int E_(OpenVideo) ( vlc_object_t *p_this )
NSRect s_rect = [o_screen frame]; NSRect s_rect = [o_screen frame];
snprintf( psz_temp, sizeof(psz_temp)/sizeof(psz_temp[0])-1, snprintf( psz_temp, sizeof(psz_temp)/sizeof(psz_temp[0])-1,
"%s %d (%dx%d)", "Screen", i, "%s %d (%dx%d)", _("Screen"), i,
(int)s_rect.size.width, (int)s_rect.size.height ); (int)s_rect.size.width, (int)s_rect.size.height );
val.psz_string = psz_temp; val.psz_string = psz_temp;
...@@ -953,7 +953,7 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -953,7 +953,7 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
unsigned int i_index = 0; unsigned int i_index = 0;
NSArray *o_screens = [NSScreen screens]; NSArray *o_screens = [NSScreen screens];
if( !sscanf( val.psz_string, "Screen %d", &i_index ) || if( !sscanf( val.psz_string, _("Screen %d"), &i_index ) ||
[o_screens count] < i_index ) [o_screens count] < i_index )
{ {
o_screen = [NSScreen mainScreen]; o_screen = [NSScreen mainScreen];
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
src/libvlc.c src/libvlc.c
src/libvlc.h src/libvlc.h
src/misc/configuration.c src/misc/configuration.c
src/audio_output/output.c
include/interface.h include/interface.h
# access modules # access modules
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-03 01:40+0100\n" "POT-Creation-Date: 2003-02-08 17:51+0100\n"
"PO-Revision-Date: 2001-12-10 13:32+0100\n" "PO-Revision-Date: 2001-12-10 13:32+0100\n"
"Last-Translator: Samuel Hocevar <sam@zoy.org>\n" "Last-Translator: Samuel Hocevar <sam@zoy.org>\n"
"Language-Team: \n" "Language-Team: \n"
...@@ -20,7 +20,7 @@ msgid "C" ...@@ -20,7 +20,7 @@ msgid "C"
msgstr "fr" msgstr "fr"
#. Usage #. Usage
#: src/libvlc.c:296 src/libvlc.c:1291 #: src/libvlc.c:296 src/libvlc.c:1275
#, c-format #, c-format
msgid "" msgid ""
"Usage: %s [options] [items]...\n" "Usage: %s [options] [items]...\n"
...@@ -29,27 +29,27 @@ msgstr "" ...@@ -29,27 +29,27 @@ msgstr ""
"Utilisation: %s [options] [fichier]...\n" "Utilisation: %s [options] [fichier]...\n"
"\n" "\n"
#: src/libvlc.c:1148 src/misc/configuration.c:916 #: src/libvlc.c:1132 src/misc/configuration.c:916
msgid "string" msgid "string"
msgstr "chane" msgstr "chane"
#: src/libvlc.c:1166 src/misc/configuration.c:901 #: src/libvlc.c:1150 src/misc/configuration.c:901
msgid "integer" msgid "integer"
msgstr "entier" msgstr "entier"
#: src/libvlc.c:1169 src/misc/configuration.c:908 #: src/libvlc.c:1153 src/misc/configuration.c:908
msgid "float" msgid "float"
msgstr "flottant" msgstr "flottant"
#: src/libvlc.c:1175 #: src/libvlc.c:1159
msgid " (default enabled)" msgid " (default enabled)"
msgstr " (activ par dfaut)" msgstr " (activ par dfaut)"
#: src/libvlc.c:1176 #: src/libvlc.c:1160
msgid " (default disabled)" msgid " (default disabled)"
msgstr " (dsactiv par dfaut)" msgstr " (dsactiv par dfaut)"
#: src/libvlc.c:1266 src/libvlc.c:1321 src/libvlc.c:1345 #: src/libvlc.c:1250 src/libvlc.c:1305 src/libvlc.c:1329
msgid "" msgid ""
"\n" "\n"
"Press the RETURN key to continue...\n" "Press the RETURN key to continue...\n"
...@@ -57,11 +57,11 @@ msgstr "" ...@@ -57,11 +57,11 @@ msgstr ""
"\n" "\n"
"Appuyez sur ENTRE pour continuer...\n" "Appuyez sur ENTRE pour continuer...\n"
#: src/libvlc.c:1294 #: src/libvlc.c:1278
msgid "[module] [description]\n" msgid "[module] [description]\n"
msgstr "[module] [description]\n" msgstr "[module] [description]\n"
#: src/libvlc.c:1339 #: src/libvlc.c:1323
msgid "" msgid ""
"This program comes with NO WARRANTY, to the extent permitted by law.\n" "This program comes with NO WARRANTY, to the extent permitted by law.\n"
"You may redistribute it under the terms of the GNU General Public License;\n" "You may redistribute it under the terms of the GNU General Public License;\n"
...@@ -88,9 +88,7 @@ msgstr "module d'interface" ...@@ -88,9 +88,7 @@ msgstr "module d'interface"
msgid "" msgid ""
"This option allows you to select the interface used by VLC. The default " "This option allows you to select the interface used by VLC. The default "
"behavior is to automatically select the best module available." "behavior is to automatically select the best module available."
msgstr "" msgstr "Cette option permet de choisir l'interface utilise par VLC. Le comportement par dfaut est de choisir automatiquement le meilleur module disponible."
"Cette option permet de choisir l'interface utilise par VLC. Le comportement "
"par dfaut est de choisir automatiquement le meilleur module disponible."
#: src/libvlc.h:43 #: src/libvlc.h:43
msgid "extra interface modules" msgid "extra interface modules"
...@@ -101,10 +99,7 @@ msgid "" ...@@ -101,10 +99,7 @@ msgid ""
"This option allows you to select additional interfaces used by VLC. They " "This option allows you to select additional interfaces used by VLC. They "
"will be launched in the background in addition to the default interface. Use " "will be launched in the background in addition to the default interface. Use "
"a comma separated list of interface modules." "a comma separated list of interface modules."
msgstr "" msgstr "Cette option permet de choisir des interfaces supplmentaires utiliser. Elles seront lances en tche de fond en plus de l'interface par dfaut. Utilisez une liste de modules spars par des virgules."
"Cette option permet de choisir des interfaces supplmentaires utiliser. "
"Elles seront lances en tche de fond en plus de l'interface par dfaut. "
"Utilisez une liste de modules spars par des virgules."
#: src/libvlc.h:49 #: src/libvlc.h:49
msgid "verbosity (0,1,2)" msgid "verbosity (0,1,2)"
...@@ -114,9 +109,7 @@ msgstr "verbeux (0,1,2)" ...@@ -114,9 +109,7 @@ msgstr "verbeux (0,1,2)"
msgid "" msgid ""
"This options sets the verbosity level (0=only errors and standard messages, " "This options sets the verbosity level (0=only errors and standard messages, "
"1=warnings, 2=debug)." "1=warnings, 2=debug)."
msgstr "" msgstr "Cette option dfinit l'importance des messages affichs (0=uniquement les erreurs et les messages standard, 1=avertissements, 2=dboguage)."
"Cette option dfinit l'importance des messages affichs (0=uniquement les "
"erreurs et les messages standard, 1=avertissements, 2=dboguage)."
#: src/libvlc.h:54 #: src/libvlc.h:54
msgid "be quiet" msgid "be quiet"
...@@ -124,8 +117,7 @@ msgstr "moins de messages" ...@@ -124,8 +117,7 @@ msgstr "moins de messages"
#: src/libvlc.h:56 #: src/libvlc.h:56
msgid "This options turns off all warning and information messages." msgid "This options turns off all warning and information messages."
msgstr "" msgstr "Cette option dsactive tous les messages d'avertissement et d'information."
"Cette option dsactive tous les messages d'avertissement et d'information."
#: src/libvlc.h:58 #: src/libvlc.h:58
msgid "color messages" msgid "color messages"
...@@ -135,10 +127,7 @@ msgstr "messages en couleur" ...@@ -135,10 +127,7 @@ msgstr "messages en couleur"
msgid "" msgid ""
"When this option is turned on, the messages sent to the console will be " "When this option is turned on, the messages sent to the console will be "
"colorized. Your terminal needs Linux color support for this to work." "colorized. Your terminal needs Linux color support for this to work."
msgstr "" msgstr "Lorsque cette option est active, les messages envoys dans la console sont en couleurs. Vous devez avoir un terminal avec le support des couleurs Linux pour profiter de cette option."
"Lorsque cette option est active, les messages envoys dans la console sont "
"en couleurs. Vous devez avoir un terminal avec le support des couleurs Linux "
"pour profiter de cette option."
#: src/libvlc.h:63 #: src/libvlc.h:63
msgid "interface default search path" msgid "interface default search path"
...@@ -148,9 +137,7 @@ msgstr "chemin de rech. par d ...@@ -148,9 +137,7 @@ msgstr "chemin de rech. par d
msgid "" msgid ""
"This option allows you to set the default path that the interface will open " "This option allows you to set the default path that the interface will open "
"when looking for a file." "when looking for a file."
msgstr "" msgstr "Cette option permet de choisir le chemin par dfaut que l'interface utilisera pour ouvrir un fichier."
"Cette option permet de choisir le chemin par dfaut que l'interface "
"utilisera pour ouvrir un fichier."
#: src/libvlc.h:68 #: src/libvlc.h:68
msgid "plugin search path" msgid "plugin search path"
...@@ -160,9 +147,7 @@ msgstr "chemin de rech. des plug-ins" ...@@ -160,9 +147,7 @@ msgstr "chemin de rech. des plug-ins"
msgid "" msgid ""
"This option allows you to specify an additional path for VLC to look for its " "This option allows you to specify an additional path for VLC to look for its "
"plugins." "plugins."
msgstr "" msgstr "Cette option permet de choisir un chemin supplmentaire pour les plugins que VLC va rechercher."
"Cette option permet de choisir un chemin supplmentaire pour les plugins que "
"VLC va rechercher."
#: src/libvlc.h:73 #: src/libvlc.h:73
msgid "audio output module" msgid "audio output module"
...@@ -172,10 +157,7 @@ msgstr "module de sortie audio" ...@@ -172,10 +157,7 @@ msgstr "module de sortie audio"
msgid "" msgid ""
"This option allows you to select the audio output method used by VLC. The " "This option allows you to select the audio output method used by VLC. The "
"default behavior is to automatically select the best method available." "default behavior is to automatically select the best method available."
msgstr "" msgstr "Cette option permet de choisir le module de sortie audio utilise par VLC. Le comportement par dfaut est de choisir automatiquement le meilleur module disponible."
"Cette option permet de choisir le module de sortie audio utilise par VLC. "
"Le comportement par dfaut est de choisir automatiquement le meilleur module "
"disponible."
#: src/libvlc.h:79 #: src/libvlc.h:79
msgid "enable audio" msgid "enable audio"
...@@ -185,9 +167,7 @@ msgstr "activer l'audio" ...@@ -185,9 +167,7 @@ msgstr "activer l'audio"
msgid "" msgid ""
"You can completely disable the audio output. In this case the audio decoding " "You can completely disable the audio output. In this case the audio decoding "
"stage won't be done, and it will save some processing power." "stage won't be done, and it will save some processing power."
msgstr "" msgstr "Cette option dsactive compltement la sortie audio. Le dcodage des pistes audio ne sera pas effectu, afin d'conomiser du temps processeur."
"Cette option dsactive compltement la sortie audio. Le dcodage des pistes "
"audio ne sera pas effectu, afin d'conomiser du temps processeur."
#: src/libvlc.h:84 #: src/libvlc.h:84
msgid "force mono audio" msgid "force mono audio"
...@@ -214,9 +194,7 @@ msgstr "fr ...@@ -214,9 +194,7 @@ msgstr "fr
msgid "" msgid ""
"You can force the audio output frequency here. Common values are 48000, " "You can force the audio output frequency here. Common values are 48000, "
"44100, 32000, 22050, 16000, 11025, 8000." "44100, 32000, 22050, 16000, 11025, 8000."
msgstr "" msgstr "Vous pouvez forcer la frquence de sortie audio. Des valeurs courantes sont 48000, 44100, 32000, 22050, 16000, 11025, 8000."
"Vous pouvez forcer la frquence de sortie audio. Des valeurs courantes sont "
"48000, 44100, 32000, 22050, 16000, 11025, 8000."
#: src/libvlc.h:97 #: src/libvlc.h:97
msgid "compensate desynchronization of audio (in ms)" msgid "compensate desynchronization of audio (in ms)"
...@@ -226,9 +204,7 @@ msgstr "compenser la d ...@@ -226,9 +204,7 @@ msgstr "compenser la d
msgid "" msgid ""
"This option allows you to delay the audio output. This can be handy if you " "This option allows you to delay the audio output. This can be handy if you "
"notice a lag between the video and the audio." "notice a lag between the video and the audio."
msgstr "" msgstr "Cette option permet de retarder la sortie audio. Cela peut tre utile si vous remarquez un dcalage entre l'audio et la vido."
"Cette option permet de retarder la sortie audio. Cela peut tre utile si "
"vous remarquez un dcalage entre l'audio et la vido."
#: src/libvlc.h:102 #: src/libvlc.h:102
msgid "headphone virtual spatialization effect" msgid "headphone virtual spatialization effect"
...@@ -242,12 +218,8 @@ msgid "" ...@@ -242,12 +218,8 @@ msgid ""
"tiring when listening to music for long periods of time.\n" "tiring when listening to music for long periods of time.\n"
"It works with any source format from mono to 5.1." "It works with any source format from mono to 5.1."
msgstr "" msgstr ""
"Cet effet donne l'impression d'tre dans une pice relle avec un ensemble " "Cet effet donne l'impression d'tre dans une pice relle avec un ensemble de haut-parleurs en 5.1 en utilisant simplement un casque stro, et procure ainsi une ambiance sonore plus raliste. Ecouter de la musique de faon prolonge devrait galement tre plus confortable et moins fatigant.\n"
"de haut-parleurs en 5.1 en utilisant simplement un casque stro, et procure " "Cela marche avec n'importe quel format audio, depuis une source mono jusqu' une source 5.1."
"ainsi une ambiance sonore plus raliste. Ecouter de la musique de faon "
"prolonge devrait galement tre plus confortable et moins fatigant.\n"
"Cela marche avec n'importe quel format audio, depuis une source mono jusqu' "
"une source 5.1."
#: src/libvlc.h:111 #: src/libvlc.h:111
msgid "characteristic dimension" msgid "characteristic dimension"
...@@ -257,9 +229,7 @@ msgstr "dimension caract ...@@ -257,9 +229,7 @@ msgstr "dimension caract
msgid "" msgid ""
"Headphone virtual spatialization effect parameter: distance between front " "Headphone virtual spatialization effect parameter: distance between front "
"left speaker and listener in meters." "left speaker and listener in meters."
msgstr "" msgstr "Paramtre pour l'effet de spatialisation virtuelle pour casque stro : distance entre le haut-parleur avant-gauche et l'auditeur, en mtres."
"Paramtre pour l'effet de spatialisation virtuelle pour casque stro : "
"distance entre le haut-parleur avant-gauche et l'auditeur, en mtres."
#: src/libvlc.h:116 #: src/libvlc.h:116
msgid "video output module" msgid "video output module"
...@@ -269,10 +239,7 @@ msgstr "module de sortie vid ...@@ -269,10 +239,7 @@ msgstr "module de sortie vid
msgid "" msgid ""
"This option allows you to select the video output method used by VLC. The " "This option allows you to select the video output method used by VLC. The "
"default behavior is to automatically select the best method available." "default behavior is to automatically select the best method available."
msgstr "" msgstr "Cette option permet de choisir le module de sortie vido utilise par VLC. Le comportement par dfaut est de choisir automatiquement le meilleur module disponible."
"Cette option permet de choisir le module de sortie vido utilise par VLC. "
"Le comportement par dfaut est de choisir automatiquement le meilleur module "
"disponible."
#: src/libvlc.h:122 #: src/libvlc.h:122
msgid "enable video" msgid "enable video"
...@@ -282,9 +249,7 @@ msgstr "activer la vid ...@@ -282,9 +249,7 @@ msgstr "activer la vid
msgid "" msgid ""
"You can completely disable the video output. In this case the video decoding " "You can completely disable the video output. In this case the video decoding "
"stage won't be done, which will save some processing power." "stage won't be done, which will save some processing power."
msgstr "" msgstr "Cette option dsactive compltement la sortie vido. Le dcodage des pistes vido ne sera pas effectu, afin d'conomiser du temps processeur."
"Cette option dsactive compltement la sortie vido. Le dcodage des pistes "
"vido ne sera pas effectu, afin d'conomiser du temps processeur."
#: src/libvlc.h:127 #: src/libvlc.h:127
msgid "display identifier" msgid "display identifier"
...@@ -294,9 +259,7 @@ msgstr "identificateur de display" ...@@ -294,9 +259,7 @@ msgstr "identificateur de display"
msgid "" msgid ""
"This is the local display port that will be used for X11 drawing. For " "This is the local display port that will be used for X11 drawing. For "
"instance :0.1." "instance :0.1."
msgstr "" msgstr "Ceci est le port local d'affichage qui sera utilis pour communiquer avec X11. Par exemple :0.1."
"Ceci est le port local d'affichage qui sera utilis pour communiquer avec "
"X11. Par exemple :0.1."
#: src/libvlc.h:132 #: src/libvlc.h:132
msgid "video width" msgid "video width"
...@@ -306,9 +269,7 @@ msgstr "largeur de la sortie vid ...@@ -306,9 +269,7 @@ msgstr "largeur de la sortie vid
msgid "" msgid ""
"You can enforce the video width here. By default VLC will adapt to the video " "You can enforce the video width here. By default VLC will adapt to the video "
"characteristics." "characteristics."
msgstr "" msgstr "Vous pouvez forcer la largeur de l'image ici. Par dfaut VLC s'adaptera aux proprits de la vido."
"Vous pouvez forcer la largeur de l'image ici. Par dfaut VLC s'adaptera aux "
"proprits de la vido."
#: src/libvlc.h:137 #: src/libvlc.h:137
msgid "video height" msgid "video height"
...@@ -318,9 +279,7 @@ msgstr "hauteur de la sortie vid ...@@ -318,9 +279,7 @@ msgstr "hauteur de la sortie vid
msgid "" msgid ""
"You can enforce the video height here. By default VLC will adapt to the " "You can enforce the video height here. By default VLC will adapt to the "
"video characteristics." "video characteristics."
msgstr "" msgstr "Vous pouvez forcer la hauteur de l'image ici. Par dfaut VLC s'adaptera aux proprits de la vido."
"Vous pouvez forcer la hauteur de l'image ici. Par dfaut VLC s'adaptera aux "
"proprits de la vido."
#: src/libvlc.h:142 #: src/libvlc.h:142
msgid "zoom video" msgid "zoom video"
...@@ -338,9 +297,7 @@ msgstr "sortie vid ...@@ -338,9 +297,7 @@ msgstr "sortie vid
msgid "" msgid ""
"When enabled, the color information from the video won't be decoded (this " "When enabled, the color information from the video won't be decoded (this "
"can also allow you to save some processing power)." "can also allow you to save some processing power)."
msgstr "" msgstr "En activant cette option, VLC ne dcodera pas l'information de couleur prsente dans la vido, ce qui permet d'conomiser du temps processeur."
"En activant cette option, VLC ne dcodera pas l'information de couleur "
"prsente dans la vido, ce qui permet d'conomiser du temps processeur."
#: src/libvlc.h:151 #: src/libvlc.h:151
msgid "fullscreen video output" msgid "fullscreen video output"
...@@ -349,9 +306,7 @@ msgstr "sortie vid ...@@ -349,9 +306,7 @@ msgstr "sortie vid
#: src/libvlc.h:153 #: src/libvlc.h:153
msgid "" msgid ""
"If this option is enabled, VLC will always start a video in fullscreen mode." "If this option is enabled, VLC will always start a video in fullscreen mode."
msgstr "" msgstr "Lorsque cette option est active, VLC lancera toujours la vido en mode plein cran."
"Lorsque cette option est active, VLC lancera toujours la vido en mode "
"plein cran."
#: src/libvlc.h:156 #: src/libvlc.h:156
msgid "overlay video output" msgid "overlay video output"
...@@ -361,9 +316,7 @@ msgstr "sortie vid ...@@ -361,9 +316,7 @@ msgstr "sortie vid
msgid "" msgid ""
"If enabled, VLC will try to take advantage of the overlay capabilities of " "If enabled, VLC will try to take advantage of the overlay capabilities of "
"your graphic card." "your graphic card."
msgstr "" msgstr "Lorsque cette option est active, VLC tentera d'utiliser les capacits d'overlay de votre carte vido."
"Lorsque cette option est active, VLC tentera d'utiliser les capacits "
"d'overlay de votre carte vido."
#: src/libvlc.h:161 #: src/libvlc.h:161
msgid "force SPU position" msgid "force SPU position"
...@@ -383,10 +336,7 @@ msgstr "module de filtre vid ...@@ -383,10 +336,7 @@ msgstr "module de filtre vid
msgid "" msgid ""
"This will allow you to add a post-processing filter to enhance the picture " "This will allow you to add a post-processing filter to enhance the picture "
"quality, for instance deinterlacing, or to clone or distort the video window." "quality, for instance deinterlacing, or to clone or distort the video window."
msgstr "" msgstr "Cette option vous permet d'ajouter un filter de post-processing pour amliorer la qualit de l'image, par exemple du dsentralement, ou pour dupliquer ou dformer la fentre video."
"Cette option vous permet d'ajouter un filter de post-processing pour "
"amliorer la qualit de l'image, par exemple du dsentralement, ou pour "
"dupliquer ou dformer la fentre video."
#: src/libvlc.h:172 #: src/libvlc.h:172
msgid "source aspect ratio" msgid "source aspect ratio"
...@@ -399,12 +349,7 @@ msgid "" ...@@ -399,12 +349,7 @@ msgid ""
"when a movie does not have aspect ratio information. Accepted formats are x:" "when a movie does not have aspect ratio information. Accepted formats are x:"
"y (4:3, 16:9, etc.) expressing the global image aspect, or a float value " "y (4:3, 16:9, etc.) expressing the global image aspect, or a float value "
"(1.25, 1.3333, etc.) expressing pixel squareness." "(1.25, 1.3333, etc.) expressing pixel squareness."
msgstr "" msgstr "Cette option force le format d'cran de la source. Par exemple, certains DVDs prtendent tre 16:9 alors qu'il sont 4:3. Cela peut aussi donner un indice VLC lorsque le film ne dispose pas d'une information de format d'cran. Les formats accepts sont de la forme x:y (4:3, 16:9, etc.), ou une valeur dcimale (1.25, 1.3333, etc.)."
"Cette option force le format d'cran de la source. Par exemple, certains "
"DVDs prtendent tre 16:9 alors qu'il sont 4:3. Cela peut aussi donner un "
"indice VLC lorsque le film ne dispose pas d'une information de format "
"d'cran. Les formats accepts sont de la forme x:y (4:3, 16:9, etc.), ou une "
"valeur dcimale (1.25, 1.3333, etc.)."
#: src/libvlc.h:182 #: src/libvlc.h:182
msgid "destination aspect ratio" msgid "destination aspect ratio"
...@@ -417,12 +362,7 @@ msgid "" ...@@ -417,12 +362,7 @@ msgid ""
"may be used when you output VLC's signal to another device such as a TV set. " "may be used when you output VLC's signal to another device such as a TV set. "
"Accepted format is a float value (1, 1.25, 1.3333, etc.) expressing pixel " "Accepted format is a float value (1, 1.25, 1.3333, etc.) expressing pixel "
"squareness." "squareness."
msgstr "" msgstr "Cette option force la taille des pixels de l'image en sortie. Par dfaut VLC suppose que vos pixels sont carrs, sauf si votre priphrique a signal le contraire. Ceci peut tre utile lorsque vous branchez le signal issu de VLC a un autre priphrique tel un tlviseur. Ce champ demande une valeur dcimale (1, 1.25, 1.3333, etc.) exprimant la taille des pixels."
"Cette option force la taille des pixels de l'image en sortie. Par dfaut VLC "
"suppose que vos pixels sont carrs, sauf si votre priphrique a signal le "
"contraire. Ceci peut tre utile lorsque vous branchez le signal issu de VLC "
"a un autre priphrique tel un tlviseur. Ce champ demande une valeur "
"dcimale (1, 1.25, 1.3333, etc.) exprimant la taille des pixels."
#: src/libvlc.h:191 #: src/libvlc.h:191
msgid "server port" msgid "server port"
...@@ -430,9 +370,7 @@ msgstr "port serveur" ...@@ -430,9 +370,7 @@ msgstr "port serveur"
#: src/libvlc.h:193 #: src/libvlc.h:193
msgid "This is the port used for UDP streams. By default, we chose 1234." msgid "This is the port used for UDP streams. By default, we chose 1234."
msgstr "" msgstr "Ceci est le port utilis pour les flux UDP. Par dfaut, nous avons choisi 1234."
"Ceci est le port utilis pour les flux UDP. Par dfaut, nous avons choisi "
"1234."
#: src/libvlc.h:195 #: src/libvlc.h:195
msgid "MTU of the network interface" msgid "MTU of the network interface"
...@@ -478,10 +416,7 @@ msgstr "interface r ...@@ -478,10 +416,7 @@ msgstr "interface r
msgid "" msgid ""
"If you have several interfaces on your Linux machine and use the VLAN " "If you have several interfaces on your Linux machine and use the VLAN "
"solution, you may indicate here which interface to use." "solution, you may indicate here which interface to use."
msgstr "" msgstr "Si vous avez plusieurs interfaces rseau sur votre machine Linux et utilisez la solution par VLAN, vous pouvez indiquer ici l'interface que vous souhaitez utiliser."
"Si vous avez plusieurs interfaces rseau sur votre machine Linux et utilisez "
"la solution par VLAN, vous pouvez indiquer ici l'interface que vous "
"souhaitez utiliser."
#: src/libvlc.h:217 #: src/libvlc.h:217
msgid "network interface address" msgid "network interface address"
...@@ -492,10 +427,7 @@ msgid "" ...@@ -492,10 +427,7 @@ msgid ""
"If you have several interfaces on your machine and use the multicast " "If you have several interfaces on your machine and use the multicast "
"solution, you will probably have to indicate the IP address of your " "solution, you will probably have to indicate the IP address of your "
"multicasting interface here." "multicasting interface here."
msgstr "" msgstr "Si vous avez plusieurs interfaces rseau sur votre machine et utiliser la solution multicast, vous devrez probablement indiquer ici l'adresse IP de l'interface que vous souhaitez utiliser pour les requtes multicast."
"Si vous avez plusieurs interfaces rseau sur votre machine et utiliser la "
"solution multicast, vous devrez probablement indiquer ici l'adresse IP de "
"l'interface que vous souhaitez utiliser pour les requtes multicast."
#: src/libvlc.h:223 #: src/libvlc.h:223
msgid "choose program (SID)" msgid "choose program (SID)"
...@@ -511,8 +443,7 @@ msgstr "choisir la piste audio" ...@@ -511,8 +443,7 @@ msgstr "choisir la piste audio"
#: src/libvlc.h:229 #: src/libvlc.h:229
msgid "Give the default type of audio you want to use in a DVD." msgid "Give the default type of audio you want to use in a DVD."
msgstr "" msgstr "Entrez le type d'audio par dfaut que vous souhaitez utiliser dans un DVD."
"Entrez le type d'audio par dfaut que vous souhaitez utiliser dans un DVD."
#: src/libvlc.h:231 #: src/libvlc.h:231
msgid "choose channel" msgid "choose channel"
...@@ -522,9 +453,7 @@ msgstr "choisir le canal r ...@@ -522,9 +453,7 @@ msgstr "choisir le canal r
msgid "" msgid ""
"Give the stream number of the audio channel you want to use in a DVD (from 1 " "Give the stream number of the audio channel you want to use in a DVD (from 1 "
"to n)." "to n)."
msgstr "" msgstr "Entrez le numro du canal audio que vous souhaitez lire par dfaut dans un DVD (de 1 n)."
"Entrez le numro du canal audio que vous souhaitez lire par dfaut dans un "
"DVD (de 1 n)."
#: src/libvlc.h:236 #: src/libvlc.h:236
msgid "choose subtitles" msgid "choose subtitles"
...@@ -534,9 +463,7 @@ msgstr "choisir la piste de sous-titres" ...@@ -534,9 +463,7 @@ msgstr "choisir la piste de sous-titres"
msgid "" msgid ""
"Give the stream number of the subtitle channel you want to use in a DVD " "Give the stream number of the subtitle channel you want to use in a DVD "
"(from 1 to n)." "(from 1 to n)."
msgstr "" msgstr "Entrez le numro du canal de sous-titres que vous souhaites lire par dfaut dans un DVD (de 1 n)."
"Entrez le numro du canal de sous-titres que vous souhaites lire par dfaut "
"dans un DVD (de 1 n)."
#: src/libvlc.h:241 #: src/libvlc.h:241
msgid "DVD device" msgid "DVD device"
...@@ -546,9 +473,7 @@ msgstr "p ...@@ -546,9 +473,7 @@ msgstr "p
msgid "" msgid ""
"This is the default DVD drive (or file) to use. Don't forget the colon after " "This is the default DVD drive (or file) to use. Don't forget the colon after "
"the drive letter (eg D:)" "the drive letter (eg D:)"
msgstr "" msgstr "Ceci est le priphrique DVD (ou fichier) utiliser par dfaut. N'oubliez pas les deux-points aprs la lettre du disque (ex. D:)"
"Ceci est le priphrique DVD (ou fichier) utiliser par dfaut. N'oubliez "
"pas les deux-points aprs la lettre du disque (ex. D:)"
#: src/libvlc.h:248 #: src/libvlc.h:248
msgid "This is the default DVD device to use." msgid "This is the default DVD device to use."
...@@ -570,9 +495,7 @@ msgstr "forcer l'utilisation d'IPv6" ...@@ -570,9 +495,7 @@ msgstr "forcer l'utilisation d'IPv6"
msgid "" msgid ""
"If you check this box, IPv6 will be used by default for all UDP and HTTP " "If you check this box, IPv6 will be used by default for all UDP and HTTP "
"connections." "connections."
msgstr "" msgstr "Si vous cochez cette case, IPv6 sera utilis par dfaut pour toutes les connexions UDP et HTTP."
"Si vous cochez cette case, IPv6 sera utilis par dfaut pour toutes les "
"connexions UDP et HTTP."
#: src/libvlc.h:260 #: src/libvlc.h:260
msgid "force IPv4" msgid "force IPv4"
...@@ -582,9 +505,7 @@ msgstr "forcer l'utilisation d'IPv4" ...@@ -582,9 +505,7 @@ msgstr "forcer l'utilisation d'IPv4"
msgid "" msgid ""
"If you check this box, IPv4 will be used by default for all UDP and HTTP " "If you check this box, IPv4 will be used by default for all UDP and HTTP "
"connections." "connections."
msgstr "" msgstr "Si vous cochez cette case, IPv4 sera utilis par dfaut pour toutes les connexions UDP et HTTP."
"Si vous cochez cette case, IPv4 sera utilis par dfaut pour toutes les "
"connexions UDP et HTTP."
#: src/libvlc.h:265 #: src/libvlc.h:265
msgid "choose preferred codec list" msgid "choose preferred codec list"
...@@ -597,10 +518,7 @@ msgid "" ...@@ -597,10 +518,7 @@ msgid ""
"Please be aware that VLC does not make any difference between audio or video " "Please be aware that VLC does not make any difference between audio or video "
"codecs, so you should always specify 'any' at the end of the list to make " "codecs, so you should always specify 'any' at the end of the list to make "
"sure there is a fallback for the types you didn't specify." "sure there is a fallback for the types you didn't specify."
msgstr "" msgstr "Cette liste vous permet de slectionner l'ordre dans lequel VLC va choisir ses codecs. Vous devez toujours spcifier 'any' la fin de la liste pour qu'il y ait toujours un codec qui rponde."
"Cette liste vous permet de slectionner l'ordre dans lequel VLC va choisir "
"ses codecs. Vous devez toujours spcifier 'any' la fin de la liste pour "
"qu'il y ait toujours un codec qui rponde."
#: src/libvlc.h:274 #: src/libvlc.h:274
msgid "choose preferred video encoder list" msgid "choose preferred video encoder list"
...@@ -632,9 +550,7 @@ msgstr "activer l'export de flux vid ...@@ -632,9 +550,7 @@ msgstr "activer l'export de flux vid
msgid "" msgid ""
"This allows you to choose if the video stream should be redirected to the " "This allows you to choose if the video stream should be redirected to the "
"stream output facility when this last one is enabled." "stream output facility when this last one is enabled."
msgstr "" msgstr "Cela vous permet de demander ce que le flux video soit redirig vers le stream output lorsqu'il est disponible."
"Cela vous permet de demander ce que le flux video soit redirig vers le "
"stream output lorsqu'il est disponible."
#: src/libvlc.h:292 #: src/libvlc.h:292
msgid "video encoding codec" msgid "video encoding codec"
...@@ -673,9 +589,7 @@ msgstr "module de multiplexage" ...@@ -673,9 +589,7 @@ msgstr "module de multiplexage"
#: src/libvlc.h:312 #: src/libvlc.h:312
msgid "This is a legacy entry to let you configure mux modules" msgid "This is a legacy entry to let you configure mux modules"
msgstr "" msgstr "Cette entre n'a d'autre utilit que de vous permettre de configurer les modules de multiplexage"
"Cette entre n'a d'autre utilit que de vous permettre de configurer les "
"modules de multiplexage"
#: src/libvlc.h:314 #: src/libvlc.h:314
msgid "access output module" msgid "access output module"
...@@ -683,9 +597,7 @@ msgstr "module de sortie" ...@@ -683,9 +597,7 @@ msgstr "module de sortie"
#: src/libvlc.h:316 #: src/libvlc.h:316
msgid "This is a legacy entry to let you configure access output modules" msgid "This is a legacy entry to let you configure access output modules"
msgstr "" msgstr "Cette entre n'a d'autre utilit que de vous permettre de configurer les modules d'accs la sortie du stream output"
"Cette entre n'a d'autre utilit que de vous permettre de configurer les "
"modules d'accs la sortie du stream output"
#: src/libvlc.h:319 #: src/libvlc.h:319
msgid "enable CPU MMX support" msgid "enable CPU MMX support"
...@@ -753,9 +665,7 @@ msgstr "jouer les fichiers au hasard" ...@@ -753,9 +665,7 @@ msgstr "jouer les fichiers au hasard"
msgid "" msgid ""
"When selected, VLC will randomly play files in the playlist until " "When selected, VLC will randomly play files in the playlist until "
"interrupted." "interrupted."
msgstr "" msgstr "Cette option vous permet de jouer les fichiers de la playlist au hasard jusqu' l'interruption."
"Cette option vous permet de jouer les fichiers de la playlist au hasard "
"jusqu' l'interruption."
#: src/libvlc.h:349 #: src/libvlc.h:349
msgid "launch playlist on startup" msgid "launch playlist on startup"
...@@ -763,9 +673,7 @@ msgstr "lancer la playlist au d ...@@ -763,9 +673,7 @@ msgstr "lancer la playlist au d
#: src/libvlc.h:351 #: src/libvlc.h:351
msgid "If you want VLC to start playing on startup, then enable this option." msgid "If you want VLC to start playing on startup, then enable this option."
msgstr "" msgstr "Si vous voulez que VLC commence la lecture ds le dmarrage, activez cette option."
"Si vous voulez que VLC commence la lecture ds le dmarrage, activez cette "
"option."
#: src/libvlc.h:353 #: src/libvlc.h:353
msgid "enqueue items in playlist" msgid "enqueue items in playlist"
...@@ -775,9 +683,7 @@ msgstr "ajouter les fichiers en fin de playlist" ...@@ -775,9 +683,7 @@ msgstr "ajouter les fichiers en fin de playlist"
msgid "" msgid ""
"If you want VLC to add items to the playlist as you open them, then enable " "If you want VLC to add items to the playlist as you open them, then enable "
"this option." "this option."
msgstr "" msgstr "Si vous voulez ajouter les lments de la playlist quand vous les ouvrez, activez cette option."
"Si vous voulez ajouter les lments de la playlist quand vous les ouvrez, "
"activez cette option."
#: src/libvlc.h:358 #: src/libvlc.h:358
msgid "loop playlist on end" msgid "loop playlist on end"
...@@ -787,8 +693,7 @@ msgstr "boucler en fin de playlist" ...@@ -787,8 +693,7 @@ msgstr "boucler en fin de playlist"
msgid "" msgid ""
"If you want VLC to keep playing the playlist indefinitely then enable this " "If you want VLC to keep playing the playlist indefinitely then enable this "
"option." "option."
msgstr "" msgstr "Si vous voulez que VLC joue la playlist indfiniment, activez cette option."
"Si vous voulez que VLC joue la playlist indfiniment, activez cette option."
#: src/libvlc.h:363 #: src/libvlc.h:363
msgid "memory copy module" msgid "memory copy module"
...@@ -798,9 +703,7 @@ msgstr "module de copie m ...@@ -798,9 +703,7 @@ msgstr "module de copie m
msgid "" msgid ""
"You can select which memory copy module you want to use. By default VLC will " "You can select which memory copy module you want to use. By default VLC will "
"select the fastest one supported by your hardware." "select the fastest one supported by your hardware."
msgstr "" msgstr "Vous pouvez slectionner le module de copie mmoire utiliser. Par dfaut VLC va slectionner le module le plus rapide support par votre processeur."
"Vous pouvez slectionner le module de copie mmoire utiliser. Par dfaut "
"VLC va slectionner le module le plus rapide support par votre processeur."
#: src/libvlc.h:368 #: src/libvlc.h:368
msgid "access module" msgid "access module"
...@@ -808,9 +711,7 @@ msgstr "module d'acc ...@@ -808,9 +711,7 @@ msgstr "module d'acc
#: src/libvlc.h:370 #: src/libvlc.h:370
msgid "This is a legacy entry to let you configure access modules" msgid "This is a legacy entry to let you configure access modules"
msgstr "" msgstr "Cette entre n'a d'autre utilit que de vous permettre de configurer les modules d'accs au flux"
"Cette entre n'a d'autre utilit que de vous permettre de configurer les "
"modules d'accs au flux"
#: src/libvlc.h:372 #: src/libvlc.h:372
msgid "demux module" msgid "demux module"
...@@ -818,9 +719,7 @@ msgstr "module de d ...@@ -818,9 +719,7 @@ msgstr "module de d
#: src/libvlc.h:374 #: src/libvlc.h:374
msgid "This is a legacy entry to let you configure demux modules" msgid "This is a legacy entry to let you configure demux modules"
msgstr "" msgstr "Cette entre n'a d'autre utilit que de vous permettre de configurer les modules de dmultiplexage"
"Cette entre n'a d'autre utilit que de vous permettre de configurer les "
"modules de dmultiplexage"
#: src/libvlc.h:376 #: src/libvlc.h:376
msgid "fast mutex on NT/2K/XP (developers only)" msgid "fast mutex on NT/2K/XP (developers only)"
...@@ -831,10 +730,7 @@ msgid "" ...@@ -831,10 +730,7 @@ msgid ""
"On Windows NT/2K/XP we use a slow mutex implementation but which allows us " "On Windows NT/2K/XP we use a slow mutex implementation but which allows us "
"to correctely implement condition variables. You can also use the faster " "to correctely implement condition variables. You can also use the faster "
"Win9x implementation but you might experience problems with it." "Win9x implementation but you might experience problems with it."
msgstr "" msgstr "Sous Windows NT/2K/XP VLC utilise une implmentation lente mais fidle des mutex. Vous pouvez utiliser cette implmentation qui est plus rapide mais avec laquelle vous pouvez rencontrer des problmes."
"Sous Windows NT/2K/XP VLC utilise une implmentation lente mais fidle des "
"mutex. Vous pouvez utiliser cette implmentation qui est plus rapide mais "
"avec laquelle vous pouvez rencontrer des problmes."
#: src/libvlc.h:383 #: src/libvlc.h:383
msgid "Condition variables implementation for Win9x (developers only)" msgid "Condition variables implementation for Win9x (developers only)"
...@@ -883,13 +779,13 @@ msgstr "Interface" ...@@ -883,13 +779,13 @@ msgstr "Interface"
#. Audio options #. Audio options
#: src/libvlc.h:437 modules/audio_output/file.c:108 #: src/libvlc.h:437 modules/audio_output/file.c:108
#: modules/gui/gtk/gnome_interface.c:1133 modules/gui/gtk/gtk_interface.c:1260 #: modules/gui/gtk/gnome_interface.c:1133 modules/gui/gtk/gtk_interface.c:1260
#: modules/gui/macosx/intf.m:303 #: modules/gui/macosx/intf.m:329
msgid "Audio" msgid "Audio"
msgstr "Audio" msgstr "Audio"
#. Video options #. Video options
#: src/libvlc.h:449 modules/gui/gtk/gnome_interface.c:1140 #: src/libvlc.h:449 modules/gui/gtk/gnome_interface.c:1140
#: modules/gui/gtk/gtk_interface.c:1337 modules/gui/macosx/intf.m:310 #: modules/gui/gtk/gtk_interface.c:1337 modules/gui/macosx/intf.m:336
#: modules/misc/dummy/dummy.c:64 modules/video_output/directx/directx.c:107 #: modules/misc/dummy/dummy.c:64 modules/video_output/directx/directx.c:107
msgid "Video" msgid "Video"
msgstr "Vido" msgstr "Vido"
...@@ -911,7 +807,7 @@ msgstr "Encodeurs" ...@@ -911,7 +807,7 @@ msgstr "Encodeurs"
#. Stream output options #. Stream output options
#: src/libvlc.h:510 modules/gui/gtk/gnome_interface.c:2149 #: src/libvlc.h:510 modules/gui/gtk/gnome_interface.c:2149
#: modules/gui/gtk/gtk_interface.c:2468 modules/gui/gtk/gtk_interface.c:3150 #: modules/gui/gtk/gtk_interface.c:2468 modules/gui/gtk/gtk_interface.c:3150
#: modules/gui/macosx/open.m:209 modules/gui/win32/strings.cpp:220 #: modules/gui/macosx/open.m:209 modules/gui/win32/strings.cpp:221
msgid "Stream output" msgid "Stream output"
msgstr "" msgstr ""
...@@ -924,9 +820,9 @@ msgstr "Processeur" ...@@ -924,9 +820,9 @@ msgstr "Processeur"
#: src/libvlc.h:535 modules/gui/gtk/gnome_interface.c:648 #: src/libvlc.h:535 modules/gui/gtk/gnome_interface.c:648
#: modules/gui/gtk/gnome_interface.c:2500 #: modules/gui/gtk/gnome_interface.c:2500
#: modules/gui/gtk/gnome_interface.c:2525 modules/gui/gtk/gtk_interface.c:752 #: modules/gui/gtk/gnome_interface.c:2525 modules/gui/gtk/gtk_interface.c:752
#: modules/gui/gtk/gtk_interface.c:2813 modules/gui/macosx/intf.m:249 #: modules/gui/gtk/gtk_interface.c:2813 modules/gui/macosx/intf.m:274
#: modules/gui/macosx/intf.m:319 modules/gui/win32/strings.cpp:120 #: modules/gui/macosx/intf.m:348 modules/gui/win32/strings.cpp:120
#: modules/gui/win32/strings.cpp:179 #: modules/gui/win32/strings.cpp:180
msgid "Playlist" msgid "Playlist"
msgstr "Playlist" msgstr "Playlist"
...@@ -973,6 +869,34 @@ msgstr "afficher le nom et la version du logiciel" ...@@ -973,6 +869,34 @@ msgstr "afficher le nom et la version du logiciel"
msgid "boolean" msgid "boolean"
msgstr "boolen" msgstr "boolen"
#: src/audio_output/output.c:72 src/audio_output/output.c:139
msgid "Reverse stereo"
msgstr "Stro inverse"
#: src/audio_output/output.c:77 src/audio_output/output.c:103
#: src/audio_output/output.c:132 modules/audio_output/alsa.c:182
#: modules/audio_output/alsa.c:333 modules/audio_output/oss.c:208
#: modules/audio_output/oss.c:317 modules/audio_output/sdl.c:114
#: modules/audio_output/sdl.c:177 modules/audio_output/sdl.c:188
#: modules/audio_output/sdl.c:194 modules/audio_output/waveout.c:362
msgid "Stereo"
msgstr "Stro"
#: src/audio_output/output.c:82 src/audio_output/output.c:105
#: src/audio_output/output.c:113 src/audio_output/output.c:135
#: src/audio_output/output.c:145
msgid "Left"
msgstr "Gauche"
#: src/audio_output/output.c:86 src/audio_output/output.c:107
#: src/audio_output/output.c:137
msgid "Right"
msgstr "Droit"
#: src/audio_output/output.c:90 src/audio_output/output.c:128
msgid "Dolby Surround"
msgstr ""
#: include/interface.h:72 #: include/interface.h:72
msgid "" msgid ""
"\n" "\n"
...@@ -980,9 +904,7 @@ msgid "" ...@@ -980,9 +904,7 @@ msgid ""
"the directory where you installed VLC and run \"vlc -I win32\"\n" "the directory where you installed VLC and run \"vlc -I win32\"\n"
msgstr "" msgstr ""
"\n" "\n"
"Attention : si vous ne pouvez plus accder l'interface graphique, ouvrez " "Attention : si vous ne pouvez plus accder l'interface graphique, ouvrez une invite de commande DOS, changez vers le rpertoire o vous avez install VLC, et lancez \"vlc -I win32\"\n"
"une invite de commande DOS, changez vers le rpertoire o vous avez install "
"VLC, et lancez \"vlc -I win32\"\n"
#. **************************************************************************** #. ****************************************************************************
#. * Module descriptor #. * Module descriptor
...@@ -1026,7 +948,7 @@ msgstr "module d'entr ...@@ -1026,7 +948,7 @@ msgstr "module d'entr
#. **************************************************************************** #. ****************************************************************************
#. * Module descriptor #. * Module descriptor
#. **************************************************************************** #. ****************************************************************************
#: modules/access/file.c:63 modules/access/http.c:79 modules/access/udp.c:70 #: modules/access/file.c:63 modules/access/http.c:84 modules/access/udp.c:75
msgid "caching value in ms" msgid "caching value in ms"
msgstr "taille du cache en ms" msgstr "taille du cache en ms"
...@@ -1049,45 +971,42 @@ msgstr "fichier" ...@@ -1049,45 +971,42 @@ msgstr "fichier"
#. **************************************************************************** #. ****************************************************************************
#. * Module descriptor #. * Module descriptor
#. **************************************************************************** #. ****************************************************************************
#: modules/access/http.c:73 #: modules/access/http.c:78
msgid "specify an HTTP proxy" msgid "specify an HTTP proxy"
msgstr "proxy HTTP" msgstr "proxy HTTP"
#: modules/access/http.c:75 #: modules/access/http.c:80
msgid "" msgid ""
"Specify an HTTP proxy to use. It must be in the form http://myproxy.mydomain:" "Specify an HTTP proxy to use. It must be in the form http://myproxy.mydomain:"
"myport . If none is specified, the HTTP_PROXYenvironment variable will be " "myport . If none is specified, the HTTP_PROXYenvironment variable will be "
"tried." "tried."
msgstr "" msgstr "Permet de choisir un proxy HTTP. Il doit tre de la forme http://myproxy.mydomain:myport . Si aucun n'est spcifi, la variable d'environnement HTTP_PROXY sera utilise."
"Permet de choisir un proxy HTTP. Il doit tre de la forme http://myproxy."
"mydomain:myport . Si aucun n'est spcifi, la variable d'environnement "
"HTTP_PROXY sera utilise."
#: modules/access/http.c:81 #: modules/access/http.c:86
msgid "" msgid ""
"Allows you to modify the default caching value for http streams. This value " "Allows you to modify the default caching value for http streams. This value "
"should be set in miliseconds units." "should be set in miliseconds units."
msgstr "" msgstr ""
#: modules/access/http.c:85 #: modules/access/http.c:90
msgid "http" msgid "http"
msgstr "" msgstr ""
#: modules/access/http.c:88 #: modules/access/http.c:93
msgid "HTTP access module" msgid "HTTP access module"
msgstr "module d'accs HTTP" msgstr "module d'accs HTTP"
#: modules/access/udp.c:72 #: modules/access/udp.c:77
msgid "" msgid ""
"Allows you to modify the default caching value for udp streams. This value " "Allows you to modify the default caching value for udp streams. This value "
"should be set in miliseconds units." "should be set in miliseconds units."
msgstr "" msgstr ""
#: modules/access/udp.c:76 #: modules/access/udp.c:81
msgid "raw UDP access module" msgid "raw UDP access module"
msgstr "module d'accs UDP" msgstr "module d'accs UDP"
#: modules/access/udp.c:77 #: modules/access/udp.c:82
msgid "udp" msgid "udp"
msgstr "" msgstr ""
...@@ -1228,7 +1147,7 @@ msgstr "module trivial de mixage audio" ...@@ -1228,7 +1147,7 @@ msgstr "module trivial de mixage audio"
msgid "Try to use S/PDIF output" msgid "Try to use S/PDIF output"
msgstr "" msgstr ""
#: modules/audio_output/alsa.c:92 modules/audio_output/oss.c:96 #: modules/audio_output/alsa.c:92 modules/audio_output/oss.c:110
msgid "" msgid ""
"Sometimes we attempt to use the S/PDIF output, even if nothing is connected " "Sometimes we attempt to use the S/PDIF output, even if nothing is connected "
"to it. Un-checking this option disables this behaviour, and permanently " "to it. Un-checking this option disables this behaviour, and permanently "
...@@ -1249,35 +1168,27 @@ msgstr "module audio ALSA" ...@@ -1249,35 +1168,27 @@ msgstr "module audio ALSA"
#. Open the device #. Open the device
#: modules/audio_output/alsa.c:126 modules/audio_output/alsa.c:314 #: modules/audio_output/alsa.c:126 modules/audio_output/alsa.c:314
#: modules/audio_output/oss.c:138 modules/audio_output/oss.c:284 #: modules/audio_output/oss.c:152 modules/audio_output/oss.c:298
#: modules/audio_output/waveout.c:208 modules/audio_output/waveout.c:315 #: modules/audio_output/waveout.c:208 modules/audio_output/waveout.c:315
msgid "A/52 over S/PDIF" msgid "A/52 over S/PDIF"
msgstr "" msgstr ""
#: modules/audio_output/alsa.c:177 modules/audio_output/alsa.c:339 #: modules/audio_output/alsa.c:177 modules/audio_output/alsa.c:339
#: modules/audio_output/oss.c:213 modules/audio_output/oss.c:309 #: modules/audio_output/oss.c:227 modules/audio_output/oss.c:323
#: modules/audio_output/sdl.c:119 modules/audio_output/sdl.c:178 #: modules/audio_output/sdl.c:119 modules/audio_output/sdl.c:178
#: modules/audio_output/sdl.c:190 modules/audio_output/sdl.c:198 #: modules/audio_output/sdl.c:190 modules/audio_output/sdl.c:198
#: modules/audio_output/waveout.c:376 #: modules/audio_output/waveout.c:376
msgid "Mono" msgid "Mono"
msgstr "" msgstr ""
#: modules/audio_output/alsa.c:182 modules/audio_output/alsa.c:333 #: modules/audio_output/alsa.c:318 modules/audio_output/oss.c:187
#: modules/audio_output/oss.c:194 modules/audio_output/oss.c:303 #: modules/audio_output/oss.c:302 modules/audio_output/waveout.c:226
#: modules/audio_output/sdl.c:114 modules/audio_output/sdl.c:177
#: modules/audio_output/sdl.c:188 modules/audio_output/sdl.c:194
#: modules/audio_output/waveout.c:362
msgid "Stereo"
msgstr "Stro"
#: modules/audio_output/alsa.c:318 modules/audio_output/oss.c:173
#: modules/audio_output/oss.c:288 modules/audio_output/waveout.c:226
#: modules/audio_output/waveout.c:331 #: modules/audio_output/waveout.c:331
msgid "5.1" msgid "5.1"
msgstr "" msgstr ""
#: modules/audio_output/alsa.c:326 modules/audio_output/oss.c:182 #: modules/audio_output/alsa.c:326 modules/audio_output/oss.c:196
#: modules/audio_output/oss.c:296 modules/audio_output/waveout.c:233 #: modules/audio_output/oss.c:310 modules/audio_output/waveout.c:233
#: modules/audio_output/waveout.c:348 #: modules/audio_output/waveout.c:348
msgid "2 Front 2 Rear" msgid "2 Front 2 Rear"
msgstr "" msgstr ""
...@@ -1330,30 +1241,30 @@ msgstr "module de sortie audio fichier" ...@@ -1330,30 +1241,30 @@ msgstr "module de sortie audio fichier"
#. **************************************************************************** #. ****************************************************************************
#. * Module descriptor #. * Module descriptor
#. **************************************************************************** #. ****************************************************************************
#: modules/audio_output/oss.c:88 #: modules/audio_output/oss.c:102
msgid "try to work around buggy OSS drivers" msgid "try to work around buggy OSS drivers"
msgstr "" msgstr ""
#: modules/audio_output/oss.c:90 #: modules/audio_output/oss.c:104
msgid "" msgid ""
"Some buggy OSS drivers just don't like when their internal buffers are " "Some buggy OSS drivers just don't like when their internal buffers are "
"completely filled (the sound gets heavily hashed). If you have one of these " "completely filled (the sound gets heavily hashed). If you have one of these "
"drivers, then you need to enable this option." "drivers, then you need to enable this option."
msgstr "" msgstr ""
#: modules/audio_output/oss.c:94 #: modules/audio_output/oss.c:108
msgid "try to use S/PDIF output" msgid "try to use S/PDIF output"
msgstr "" msgstr ""
#: modules/audio_output/oss.c:101 #: modules/audio_output/oss.c:115
msgid "OSS" msgid "OSS"
msgstr "" msgstr ""
#: modules/audio_output/oss.c:103 #: modules/audio_output/oss.c:117
msgid "OSS dsp device" msgid "OSS dsp device"
msgstr "priphrique dsp OSS" msgstr "priphrique dsp OSS"
#: modules/audio_output/oss.c:106 #: modules/audio_output/oss.c:120
msgid "Linux OSS /dev/dsp module" msgid "Linux OSS /dev/dsp module"
msgstr "module pour le /dev/dsp OSS de Linux" msgstr "module pour le /dev/dsp OSS de Linux"
...@@ -1494,20 +1405,14 @@ msgstr "module de compensation de mouvement optimis ...@@ -1494,20 +1405,14 @@ msgstr "module de compensation de mouvement optimis
msgid "" msgid ""
"This option allows you to select the IDCT module used by this video decoder. " "This option allows you to select the IDCT module used by this video decoder. "
"The default behavior is to automatically select the best module available." "The default behavior is to automatically select the best module available."
msgstr "" msgstr "Cette option permet de choisir le module IDCT utilis par ce dcodeur vido. Le comportement par dfaut est de choisir automatiquement le meilleur module disponible."
"Cette option permet de choisir le module IDCT utilis par ce dcodeur vido. "
"Le comportement par dfaut est de choisir automatiquement le meilleur module "
"disponible."
#: modules/codec/mpeg_video/parser.c:67 #: modules/codec/mpeg_video/parser.c:67
msgid "" msgid ""
"This option allows you to select the motion compensation module used by this " "This option allows you to select the motion compensation module used by this "
"video decoder. The default behavior is to automatically select the best " "video decoder. The default behavior is to automatically select the best "
"module available." "module available."
msgstr "" msgstr "Cette option permet de choisir le module de compensation de mouvement utilispar ce dcodeur vido. Le comportement par dfaut est de choisir automatiquement le meilleur module disponible."
"Cette option permet de choisir le module de compensation de mouvement "
"utilispar ce dcodeur vido. Le comportement par dfaut est de choisir "
"automatiquement le meilleur module disponible."
#: modules/codec/mpeg_video/parser.c:71 #: modules/codec/mpeg_video/parser.c:71
msgid "use additional processors" msgid "use additional processors"
...@@ -1669,7 +1574,7 @@ msgstr "Lecteur multim ...@@ -1669,7 +1574,7 @@ msgstr "Lecteur multim
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
#: modules/gui/macosx/open.m:423 modules/gui/macosx/open.m:584 #: modules/gui/macosx/open.m:423 modules/gui/macosx/open.m:584
#: modules/gui/macosx/open.m:846 modules/gui/macosx/controls.m:524 #: modules/gui/macosx/open.m:846 modules/gui/macosx/controls.m:573
msgid "Open" msgid "Open"
msgstr "Ouvrir" msgstr "Ouvrir"
...@@ -1681,8 +1586,8 @@ msgstr "Ouvrir un fichier" ...@@ -1681,8 +1586,8 @@ msgstr "Ouvrir un fichier"
#. * from modules/gui/win32/preferences.dfm: #. * from modules/gui/win32/preferences.dfm:
#. #.
#: modules/gui/familiar/interface.c:103 modules/gui/familiar/interface.c:104 #: modules/gui/familiar/interface.c:103 modules/gui/familiar/interface.c:104
#: modules/gui/macosx/intf.m:256 modules/gui/macosx/intf.m:268 #: modules/gui/macosx/intf.m:281 modules/gui/macosx/intf.m:294
#: modules/gui/macosx/prefs.m:191 modules/gui/win32/strings.cpp:210 #: modules/gui/macosx/prefs.m:191 modules/gui/win32/strings.cpp:211
msgid "Preferences" msgid "Preferences"
msgstr "Prfrences" msgstr "Prfrences"
...@@ -1696,8 +1601,8 @@ msgstr "Retourne en arri ...@@ -1696,8 +1601,8 @@ msgstr "Retourne en arri
#: modules/gui/familiar/interface.c:131 modules/gui/gtk/gnome_interface.c:607 #: modules/gui/familiar/interface.c:131 modules/gui/gtk/gnome_interface.c:607
#: modules/gui/gtk/gnome_interface.c:1061 modules/gui/gtk/gtk_interface.c:714 #: modules/gui/gtk/gnome_interface.c:1061 modules/gui/gtk/gtk_interface.c:714
#: modules/gui/gtk/gtk_interface.c:1160 modules/gui/macosx/intf.m:777 #: modules/gui/gtk/gtk_interface.c:1160 modules/gui/macosx/intf.m:808
#: modules/gui/macosx/intf.m:778 modules/gui/macosx/intf.m:779 #: modules/gui/macosx/intf.m:809 modules/gui/macosx/intf.m:810
#: modules/gui/win32/strings.cpp:102 #: modules/gui/win32/strings.cpp:102
msgid "Pause" msgid "Pause"
msgstr "Pause" msgstr "Pause"
...@@ -1709,11 +1614,11 @@ msgstr "Pauser le flux" ...@@ -1709,11 +1614,11 @@ msgstr "Pauser le flux"
#. dock menu #. dock menu
#: modules/gui/familiar/interface.c:144 modules/gui/gtk/gnome_interface.c:595 #: modules/gui/familiar/interface.c:144 modules/gui/gtk/gnome_interface.c:595
#: modules/gui/gtk/gnome_interface.c:1054 modules/gui/gtk/gtk_interface.c:703 #: modules/gui/gtk/gnome_interface.c:1054 modules/gui/gtk/gtk_interface.c:703
#: modules/gui/macosx/intf.m:252 modules/gui/macosx/intf.m:290 #: modules/gui/macosx/intf.m:277 modules/gui/macosx/intf.m:316
#: modules/gui/macosx/intf.m:331 modules/gui/macosx/intf.m:784 #: modules/gui/macosx/intf.m:360 modules/gui/macosx/intf.m:815
#: modules/gui/macosx/intf.m:785 modules/gui/macosx/intf.m:786 #: modules/gui/macosx/intf.m:816 modules/gui/macosx/intf.m:817
#: modules/gui/macosx/playlist.m:101 modules/gui/win32/strings.cpp:100 #: modules/gui/macosx/playlist.m:122 modules/gui/win32/strings.cpp:100
#: modules/gui/win32/strings.cpp:203 #: modules/gui/win32/strings.cpp:204
msgid "Play" msgid "Play"
msgstr "Joue" msgstr "Joue"
...@@ -1723,9 +1628,9 @@ msgstr "Jouer le flux" ...@@ -1723,9 +1628,9 @@ msgstr "Jouer le flux"
#: modules/gui/familiar/interface.c:157 modules/gui/gtk/gnome_interface.c:571 #: modules/gui/familiar/interface.c:157 modules/gui/gtk/gnome_interface.c:571
#: modules/gui/gtk/gnome_interface.c:1068 modules/gui/gtk/gtk_interface.c:681 #: modules/gui/gtk/gnome_interface.c:1068 modules/gui/gtk/gtk_interface.c:681
#: modules/gui/gtk/gtk_interface.c:1168 modules/gui/macosx/intf.m:253 #: modules/gui/gtk/gtk_interface.c:1168 modules/gui/macosx/intf.m:278
#: modules/gui/macosx/intf.m:291 modules/gui/macosx/intf.m:332 #: modules/gui/macosx/intf.m:317 modules/gui/macosx/intf.m:361
#: modules/gui/macosx/controls.m:637 modules/gui/win32/strings.cpp:104 #: modules/gui/macosx/controls.m:688 modules/gui/win32/strings.cpp:104
msgid "Stop" msgid "Stop"
msgstr "Stop" msgstr "Stop"
...@@ -1751,7 +1656,7 @@ msgstr "" ...@@ -1751,7 +1656,7 @@ msgstr ""
msgid "About" msgid "About"
msgstr " propos" msgstr " propos"
#: modules/gui/familiar/interface.c:231 modules/gui/win32/strings.cpp:167 #: modules/gui/familiar/interface.c:231 modules/gui/win32/strings.cpp:168
msgid "URL:" msgid "URL:"
msgstr "" msgstr ""
...@@ -1782,12 +1687,12 @@ msgstr "" ...@@ -1782,12 +1687,12 @@ msgstr ""
#: modules/gui/familiar/interface.c:348 modules/gui/gtk/preferences.c:592 #: modules/gui/familiar/interface.c:348 modules/gui/gtk/preferences.c:592
#: modules/gui/gtk/preferences.c:609 modules/gui/macosx/open.m:758 #: modules/gui/gtk/preferences.c:609 modules/gui/macosx/open.m:758
#: modules/gui/win32/strings.cpp:212 #: modules/gui/win32/strings.cpp:213
msgid "Save" msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
#: modules/gui/familiar/interface.c:358 modules/gui/gtk/preferences.c:605 #: modules/gui/familiar/interface.c:358 modules/gui/gtk/preferences.c:605
#: modules/gui/macosx/prefs.m:553 modules/gui/win32/strings.cpp:211 #: modules/gui/macosx/prefs.m:553 modules/gui/win32/strings.cpp:212
msgid "Apply" msgid "Apply"
msgstr "Appliquer" msgstr "Appliquer"
...@@ -1795,9 +1700,9 @@ msgstr "Appliquer" ...@@ -1795,9 +1700,9 @@ msgstr "Appliquer"
#: modules/gui/gtk/gtk_interface.c:2761 modules/gui/gtk/gtk_interface.c:2992 #: modules/gui/gtk/gtk_interface.c:2761 modules/gui/gtk/gtk_interface.c:2992
#: modules/gui/gtk/gtk_interface.c:3373 modules/gui/gtk/preferences.c:613 #: modules/gui/gtk/gtk_interface.c:3373 modules/gui/gtk/preferences.c:613
#: modules/gui/macosx/prefs.m:549 modules/gui/macosx/open.m:170 #: modules/gui/macosx/prefs.m:549 modules/gui/macosx/open.m:170
#: modules/gui/win32/strings.cpp:27 modules/gui/win32/strings.cpp:173 #: modules/gui/win32/strings.cpp:27 modules/gui/win32/strings.cpp:174
#: modules/gui/win32/strings.cpp:214 modules/gui/win32/strings.cpp:233 #: modules/gui/win32/strings.cpp:215 modules/gui/win32/strings.cpp:234
#: modules/gui/win32/strings.cpp:249 #: modules/gui/win32/strings.cpp:250
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
...@@ -1863,9 +1768,7 @@ msgstr "hauteur maximale des fen ...@@ -1863,9 +1768,7 @@ msgstr "hauteur maximale des fen
msgid "" msgid ""
"You can set the maximum height that the configuration windows in the " "You can set the maximum height that the configuration windows in the "
"preferences menu will occupy." "preferences menu will occupy."
msgstr "" msgstr "Vous pouvez spcifier la hauteur maximale qu'occuperont les fentres de configuration dans le menu prfrences."
"Vous pouvez spcifier la hauteur maximale qu'occuperont les fentres de "
"configuration dans le menu prfrences."
#: modules/gui/gtk/gnome.c:72 #: modules/gui/gtk/gnome.c:72
msgid "GNOME" msgid "GNOME"
...@@ -1989,31 +1892,31 @@ msgstr "S ...@@ -1989,31 +1892,31 @@ msgstr "S
#: modules/gui/gtk/gnome_interface.c:126 modules/gui/gtk/gnome_interface.c:950 #: modules/gui/gtk/gnome_interface.c:126 modules/gui/gtk/gnome_interface.c:950
#: modules/gui/gtk/gtk_interface.c:457 modules/gui/gtk/gtk_interface.c:1294 #: modules/gui/gtk/gtk_interface.c:457 modules/gui/gtk/gtk_interface.c:1294
#: modules/gui/macosx/intf.m:304 modules/gui/macosx/controls.m:670 #: modules/gui/macosx/intf.m:330 modules/gui/macosx/controls.m:721
msgid "Volume Up" msgid "Volume Up"
msgstr "Monter le son" msgstr "Monter le son"
#: modules/gui/gtk/gnome_interface.c:133 modules/gui/gtk/gnome_interface.c:957 #: modules/gui/gtk/gnome_interface.c:133 modules/gui/gtk/gnome_interface.c:957
#: modules/gui/gtk/gtk_interface.c:464 modules/gui/gtk/gtk_interface.c:1301 #: modules/gui/gtk/gtk_interface.c:464 modules/gui/gtk/gtk_interface.c:1301
#: modules/gui/macosx/intf.m:305 modules/gui/macosx/controls.m:671 #: modules/gui/macosx/intf.m:331 modules/gui/macosx/controls.m:722
msgid "Volume Down" msgid "Volume Down"
msgstr "Baisser le son" msgstr "Baisser le son"
#: modules/gui/gtk/gnome_interface.c:140 modules/gui/gtk/gnome_interface.c:964 #: modules/gui/gtk/gnome_interface.c:140 modules/gui/gtk/gnome_interface.c:964
#: modules/gui/gtk/gtk_interface.c:471 modules/gui/gtk/gtk_interface.c:1308 #: modules/gui/gtk/gtk_interface.c:471 modules/gui/gtk/gtk_interface.c:1308
#: modules/gui/macosx/intf.m:306 modules/gui/macosx/controls.m:686 #: modules/gui/macosx/intf.m:332 modules/gui/macosx/controls.m:737
msgid "Mute" msgid "Mute"
msgstr "Muet" msgstr "Muet"
#: modules/gui/gtk/gnome_interface.c:148 modules/gui/gtk/gnome_interface.c:972 #: modules/gui/gtk/gnome_interface.c:148 modules/gui/gtk/gnome_interface.c:972
#: modules/gui/gtk/gtk_interface.c:486 modules/gui/gtk/gtk_interface.c:1323 #: modules/gui/gtk/gtk_interface.c:486 modules/gui/gtk/gtk_interface.c:1323
#: modules/gui/macosx/intf.m:307 modules/gui/win32/strings.cpp:81 #: modules/gui/macosx/intf.m:333 modules/gui/win32/strings.cpp:81
msgid "Channels" msgid "Channels"
msgstr "Canaux" msgstr "Canaux"
#: modules/gui/gtk/gnome_interface.c:155 modules/gui/gtk/gnome_interface.c:979 #: modules/gui/gtk/gnome_interface.c:155 modules/gui/gtk/gnome_interface.c:979
#: modules/gui/gtk/gtk_interface.c:493 modules/gui/gtk/gtk_interface.c:1330 #: modules/gui/gtk/gtk_interface.c:493 modules/gui/gtk/gtk_interface.c:1330
#: modules/gui/macosx/intf.m:308 modules/gui/win32/strings.cpp:80 #: modules/gui/macosx/intf.m:334 modules/gui/win32/strings.cpp:80
msgid "Device" msgid "Device"
msgstr "Priphrique" msgstr "Priphrique"
...@@ -2034,14 +1937,14 @@ msgstr "Plein ...@@ -2034,14 +1937,14 @@ msgstr "Plein
#: modules/gui/gtk/gnome_interface.c:183 #: modules/gui/gtk/gnome_interface.c:183
#: modules/gui/gtk/gnome_interface.c:1007 modules/gui/gtk/gtk_interface.c:558 #: modules/gui/gtk/gnome_interface.c:1007 modules/gui/gtk/gtk_interface.c:558
#: modules/gui/gtk/gtk_interface.c:1390 modules/gui/macosx/intf.m:313 #: modules/gui/gtk/gtk_interface.c:1390 modules/gui/macosx/intf.m:342
#: modules/gui/macosx/controls.m:720 #: modules/gui/macosx/controls.m:774
msgid "Deinterlace" msgid "Deinterlace"
msgstr "Dsentrelacer" msgstr "Dsentrelacer"
#: modules/gui/gtk/gnome_interface.c:190 #: modules/gui/gtk/gnome_interface.c:190
#: modules/gui/gtk/gnome_interface.c:1014 modules/gui/gtk/gtk_interface.c:565 #: modules/gui/gtk/gnome_interface.c:1014 modules/gui/gtk/gtk_interface.c:565
#: modules/gui/gtk/gtk_interface.c:1397 modules/gui/macosx/intf.m:312 #: modules/gui/gtk/gtk_interface.c:1397 modules/gui/macosx/intf.m:341
#: modules/gui/macosx/vout.m:194 modules/gui/win32/strings.cpp:83 #: modules/gui/macosx/vout.m:194 modules/gui/win32/strings.cpp:83
msgid "Screen" msgid "Screen"
msgstr "cran" msgstr "cran"
...@@ -2060,10 +1963,10 @@ msgstr "_Vid ...@@ -2060,10 +1963,10 @@ msgstr "_Vid
#: modules/gui/gtk/gnome_interface.c:2963 modules/gui/gtk/gtk_interface.c:623 #: modules/gui/gtk/gnome_interface.c:2963 modules/gui/gtk/gtk_interface.c:623
#: modules/gui/gtk/gtk_interface.c:1932 modules/gui/gtk/gtk_interface.c:2849 #: modules/gui/gtk/gtk_interface.c:1932 modules/gui/gtk/gtk_interface.c:2849
#: modules/gui/gtk/gtk_interface.c:2966 modules/gui/gtk/gtk_interface.c:3218 #: modules/gui/gtk/gtk_interface.c:2966 modules/gui/gtk/gtk_interface.c:3218
#: modules/gui/macosx/intf.m:274 modules/gui/macosx/open.m:172 #: modules/gui/macosx/intf.m:300 modules/gui/macosx/open.m:172
#: modules/gui/macosx/open.m:211 modules/gui/macosx/open.m:326 #: modules/gui/macosx/open.m:211 modules/gui/macosx/open.m:326
#: modules/gui/macosx/open.m:777 modules/gui/macosx/open.m:811 #: modules/gui/macosx/open.m:777 modules/gui/macosx/open.m:811
#: modules/gui/win32/strings.cpp:93 modules/gui/win32/strings.cpp:225 #: modules/gui/win32/strings.cpp:93 modules/gui/win32/strings.cpp:226
msgid "File" msgid "File"
msgstr "Fichier" msgstr "Fichier"
...@@ -2157,10 +2060,10 @@ msgstr "Fichier pr ...@@ -2157,10 +2060,10 @@ msgstr "Fichier pr
#: modules/gui/gtk/gnome_interface.c:672 #: modules/gui/gtk/gnome_interface.c:672
#: modules/gui/gtk/gnome_interface.c:1097 modules/gui/gtk/gtk_interface.c:774 #: modules/gui/gtk/gnome_interface.c:1097 modules/gui/gtk/gtk_interface.c:774
#: modules/gui/gtk/gtk_interface.c:857 modules/gui/gtk/gtk_interface.c:901 #: modules/gui/gtk/gtk_interface.c:857 modules/gui/gtk/gtk_interface.c:901
#: modules/gui/gtk/gtk_interface.c:1207 modules/gui/macosx/intf.m:255 #: modules/gui/gtk/gtk_interface.c:1207 modules/gui/macosx/intf.m:280
#: modules/gui/macosx/intf.m:295 modules/gui/macosx/controls.m:645 #: modules/gui/macosx/intf.m:321 modules/gui/macosx/intf.m:362
#: modules/gui/win32/strings.cpp:114 modules/gui/win32/strings.cpp:134 #: modules/gui/macosx/controls.m:696 modules/gui/win32/strings.cpp:114
#: modules/gui/win32/strings.cpp:138 #: modules/gui/win32/strings.cpp:134 modules/gui/win32/strings.cpp:138
msgid "Next" msgid "Next"
msgstr "Suivant" msgstr "Suivant"
...@@ -2217,7 +2120,7 @@ msgid "Got directly so specified point" ...@@ -2217,7 +2120,7 @@ msgid "Got directly so specified point"
msgstr "Aller directement un endroit spcifi" msgstr "Aller directement un endroit spcifi"
#: modules/gui/gtk/gnome_interface.c:1119 modules/gui/gtk/gtk_interface.c:1240 #: modules/gui/gtk/gnome_interface.c:1119 modules/gui/gtk/gtk_interface.c:1240
#: modules/gui/kde/interface.cpp:143 modules/gui/macosx/intf.m:297 #: modules/gui/kde/interface.cpp:143 modules/gui/macosx/intf.m:323
#: modules/gui/win32/strings.cpp:85 #: modules/gui/win32/strings.cpp:85
msgid "Program" msgid "Program"
msgstr "Programme" msgstr "Programme"
...@@ -2248,9 +2151,7 @@ msgstr "Playlist..." ...@@ -2248,9 +2151,7 @@ msgstr "Playlist..."
msgid "" msgid ""
"This is the VideoLAN Client, a DVD, MPEG and DivX player. It can play MPEG " "This is the VideoLAN Client, a DVD, MPEG and DivX player. It can play MPEG "
"and MPEG2 files from a file or from a network source." "and MPEG2 files from a file or from a network source."
msgstr "" msgstr "Ceci est le client VideoLAN, un lecteur de DVD, MPEG et DivX. Il peut jouer des flux MPEG et MPEG2 partir d'un fichier ou d'une source rseau."
"Ceci est le client VideoLAN, un lecteur de DVD, MPEG et DivX. Il peut jouer "
"des flux MPEG et MPEG2 partir d'un fichier ou d'une source rseau."
#: modules/gui/gtk/gnome_interface.c:1507 #: modules/gui/gtk/gnome_interface.c:1507
msgid "Open Stream" msgid "Open Stream"
...@@ -2275,8 +2176,8 @@ msgstr "" ...@@ -2275,8 +2176,8 @@ msgstr ""
#: modules/gui/gtk/gnome_interface.c:2105 modules/gui/gtk/gtk_interface.c:1925 #: modules/gui/gtk/gnome_interface.c:2105 modules/gui/gtk/gtk_interface.c:1925
#: modules/gui/gtk/gtk_interface.c:2422 modules/gui/macosx/open.m:176 #: modules/gui/gtk/gtk_interface.c:2422 modules/gui/macosx/open.m:176
#: modules/gui/macosx/open.m:179 modules/gui/macosx/open.m:185 #: modules/gui/macosx/open.m:179 modules/gui/macosx/open.m:185
#: modules/gui/macosx/open.m:215 modules/gui/win32/strings.cpp:228 #: modules/gui/macosx/open.m:215 modules/gui/win32/strings.cpp:229
#: modules/gui/win32/strings.cpp:247 #: modules/gui/win32/strings.cpp:248
msgid "Browse..." msgid "Browse..."
msgstr "Choisir..." msgstr "Choisir..."
...@@ -2303,14 +2204,14 @@ msgstr "Nom du p ...@@ -2303,14 +2204,14 @@ msgstr "Nom du p
#: modules/gui/gtk/gnome_interface.c:1688 modules/gui/gtk/gtk_interface.c:1994 #: modules/gui/gtk/gnome_interface.c:1688 modules/gui/gtk/gtk_interface.c:1994
#: modules/gui/gtk/menu.c:1007 modules/gui/gtk/menu.c:1375 #: modules/gui/gtk/menu.c:1007 modules/gui/gtk/menu.c:1375
#: modules/gui/kde/interface.cpp:147 modules/gui/macosx/intf.m:299 #: modules/gui/kde/interface.cpp:147 modules/gui/macosx/intf.m:325
#: modules/gui/macosx/open.m:184 #: modules/gui/macosx/open.m:184
msgid "Chapter" msgid "Chapter"
msgstr "Chapitre" msgstr "Chapitre"
#: modules/gui/gtk/gnome_interface.c:1698 modules/gui/gtk/gtk_interface.c:2004 #: modules/gui/gtk/gnome_interface.c:1698 modules/gui/gtk/gtk_interface.c:2004
#: modules/gui/gtk/menu.c:1345 modules/gui/gtk/menu.c:1366 #: modules/gui/gtk/menu.c:1345 modules/gui/gtk/menu.c:1366
#: modules/gui/kde/interface.cpp:145 modules/gui/macosx/intf.m:298 #: modules/gui/kde/interface.cpp:145 modules/gui/macosx/intf.m:324
#: modules/gui/macosx/open.m:183 #: modules/gui/macosx/open.m:183
msgid "Title" msgid "Title"
msgstr "Titre" msgstr "Titre"
...@@ -2321,26 +2222,26 @@ msgstr "Activer les menus DVD" ...@@ -2321,26 +2222,26 @@ msgstr "Activer les menus DVD"
#: modules/gui/gtk/gnome_interface.c:1755 modules/gui/gtk/gtk_interface.c:2070 #: modules/gui/gtk/gnome_interface.c:1755 modules/gui/gtk/gtk_interface.c:2070
#: modules/gui/macosx/open.m:199 modules/gui/macosx/open.m:605 #: modules/gui/macosx/open.m:199 modules/gui/macosx/open.m:605
#: modules/gui/macosx/open.m:655 modules/gui/win32/strings.cpp:168 #: modules/gui/macosx/open.m:655 modules/gui/win32/strings.cpp:169
msgid "UDP/RTP" msgid "UDP/RTP"
msgstr "" msgstr ""
#: modules/gui/gtk/gnome_interface.c:1765 modules/gui/gtk/gtk_interface.c:2080 #: modules/gui/gtk/gnome_interface.c:1765 modules/gui/gtk/gtk_interface.c:2080
#: modules/gui/macosx/open.m:200 modules/gui/macosx/open.m:606 #: modules/gui/macosx/open.m:200 modules/gui/macosx/open.m:606
#: modules/gui/macosx/open.m:667 modules/gui/win32/strings.cpp:169 #: modules/gui/macosx/open.m:667 modules/gui/win32/strings.cpp:170
msgid "UDP/RTP Multicast" msgid "UDP/RTP Multicast"
msgstr "" msgstr ""
#: modules/gui/gtk/gnome_interface.c:1775 modules/gui/gtk/gtk_interface.c:2090 #: modules/gui/gtk/gnome_interface.c:1775 modules/gui/gtk/gtk_interface.c:2090
#: modules/gui/macosx/open.m:201 modules/gui/macosx/open.m:607 #: modules/gui/macosx/open.m:201 modules/gui/macosx/open.m:607
#: modules/gui/macosx/open.m:652 modules/gui/macosx/open.m:680 #: modules/gui/macosx/open.m:652 modules/gui/macosx/open.m:680
#: modules/gui/win32/strings.cpp:170 #: modules/gui/win32/strings.cpp:171
msgid "Channel server" msgid "Channel server"
msgstr "Serveur de chanes" msgstr "Serveur de chanes"
#: modules/gui/gtk/gnome_interface.c:1785 modules/gui/gtk/gtk_interface.c:2100 #: modules/gui/gtk/gnome_interface.c:1785 modules/gui/gtk/gtk_interface.c:2100
#: modules/gui/macosx/open.m:202 modules/gui/macosx/open.m:608 #: modules/gui/macosx/open.m:202 modules/gui/macosx/open.m:608
#: modules/gui/macosx/open.m:699 modules/gui/win32/strings.cpp:171 #: modules/gui/macosx/open.m:699 modules/gui/win32/strings.cpp:172
msgid "HTTP/FTP/MMS" msgid "HTTP/FTP/MMS"
msgstr "" msgstr ""
...@@ -2431,9 +2332,7 @@ msgstr "Modules" ...@@ -2431,9 +2332,7 @@ msgstr "Modules"
msgid "" msgid ""
"Sorry, the module manager isn't functional yet. Please retry in a later " "Sorry, the module manager isn't functional yet. Please retry in a later "
"version." "version."
msgstr "" msgstr "Dsol, le gestionnaire de modules ne fonctionne pas encore. Veuillez ressayer dans une prochaine version"
"Dsol, le gestionnaire de modules ne fonctionne pas encore. Veuillez "
"ressayer dans une prochaine version"
#: modules/gui/gtk/gnome_interface.c:2404 #: modules/gui/gtk/gnome_interface.c:2404
#: modules/gui/gtk/gnome_interface.c:2545 modules/gui/gtk/gtk_interface.c:2863 #: modules/gui/gtk/gnome_interface.c:2545 modules/gui/gtk/gtk_interface.c:2863
...@@ -2441,7 +2340,7 @@ msgid "Url" ...@@ -2441,7 +2340,7 @@ msgid "Url"
msgstr "Url" msgstr "Url"
#: modules/gui/gtk/gnome_interface.c:2416 modules/gui/gtk/gtk_interface.c:2884 #: modules/gui/gtk/gnome_interface.c:2416 modules/gui/gtk/gtk_interface.c:2884
#: modules/gui/win32/strings.cpp:201 #: modules/gui/win32/strings.cpp:202
msgid "All" msgid "All"
msgstr "Tous" msgstr "Tous"
...@@ -2449,11 +2348,11 @@ msgstr "Tous" ...@@ -2449,11 +2348,11 @@ msgstr "Tous"
msgid "Item" msgid "Item"
msgstr "lment" msgstr "lment"
#: modules/gui/gtk/gnome_interface.c:2435 modules/gui/win32/strings.cpp:197 #: modules/gui/gtk/gnome_interface.c:2435 modules/gui/win32/strings.cpp:198
msgid "Crop" msgid "Crop"
msgstr "Rogner" msgstr "Rogner"
#: modules/gui/gtk/gnome_interface.c:2442 modules/gui/win32/strings.cpp:195 #: modules/gui/gtk/gnome_interface.c:2442 modules/gui/win32/strings.cpp:196
msgid "Invert" msgid "Invert"
msgstr "Inverser" msgstr "Inverser"
...@@ -2467,7 +2366,7 @@ msgid "Add" ...@@ -2467,7 +2366,7 @@ msgid "Add"
msgstr "Ajouter" msgstr "Ajouter"
#: modules/gui/gtk/gnome_interface.c:2468 modules/gui/gtk/gtk_interface.c:2870 #: modules/gui/gtk/gnome_interface.c:2468 modules/gui/gtk/gtk_interface.c:2870
#: modules/gui/macosx/playlist.m:102 modules/gui/win32/strings.cpp:199 #: modules/gui/macosx/playlist.m:123 modules/gui/win32/strings.cpp:200
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
...@@ -2476,7 +2375,7 @@ msgid "Selection" ...@@ -2476,7 +2375,7 @@ msgid "Selection"
msgstr "Slection" msgstr "Slection"
#: modules/gui/gtk/gnome_interface.c:2552 modules/gui/gtk/gtk_interface.c:2973 #: modules/gui/gtk/gnome_interface.c:2552 modules/gui/gtk/gtk_interface.c:2973
#: modules/gui/win32/strings.cpp:181 #: modules/gui/win32/strings.cpp:182
msgid "Duration" msgid "Duration"
msgstr "Dure" msgstr "Dure"
...@@ -2500,8 +2399,8 @@ msgstr "h:" ...@@ -2500,8 +2399,8 @@ msgstr "h:"
#. * from modules/gui/win32/messages.dfm: #. * from modules/gui/win32/messages.dfm:
#. #.
#: modules/gui/gtk/gnome_interface.c:2808 modules/gui/gtk/gtk_interface.c:3063 #: modules/gui/gtk/gnome_interface.c:2808 modules/gui/gtk/gtk_interface.c:3063
#: modules/gui/kde/messages.cpp:8 modules/gui/macosx/intf.m:262 #: modules/gui/kde/messages.cpp:8 modules/gui/macosx/intf.m:287
#: modules/gui/macosx/intf.m:320 modules/gui/win32/strings.cpp:153 #: modules/gui/macosx/intf.m:349 modules/gui/win32/strings.cpp:153
msgid "Messages" msgid "Messages"
msgstr "Messages" msgstr "Messages"
...@@ -2516,13 +2415,13 @@ msgstr "Ouvrir le flux :" ...@@ -2516,13 +2415,13 @@ msgstr "Ouvrir le flux :"
#: modules/gui/gtk/gnome_interface.c:2973 modules/gui/gtk/gtk_interface.c:3228 #: modules/gui/gtk/gnome_interface.c:2973 modules/gui/gtk/gtk_interface.c:3228
#: modules/gui/macosx/open.m:212 modules/gui/macosx/open.m:778 #: modules/gui/macosx/open.m:212 modules/gui/macosx/open.m:778
#: modules/gui/macosx/open.m:816 modules/gui/win32/strings.cpp:226 #: modules/gui/macosx/open.m:816 modules/gui/win32/strings.cpp:227
msgid "UDP" msgid "UDP"
msgstr "" msgstr ""
#: modules/gui/gtk/gnome_interface.c:2983 modules/gui/gtk/gtk_interface.c:3238 #: modules/gui/gtk/gnome_interface.c:2983 modules/gui/gtk/gtk_interface.c:3238
#: modules/gui/macosx/open.m:213 modules/gui/macosx/open.m:779 #: modules/gui/macosx/open.m:213 modules/gui/macosx/open.m:779
#: modules/gui/win32/strings.cpp:227 #: modules/gui/win32/strings.cpp:228
msgid "RTP" msgid "RTP"
msgstr "" msgstr ""
...@@ -2532,19 +2431,19 @@ msgid "Path:" ...@@ -2532,19 +2431,19 @@ msgid "Path:"
msgstr "Port:" msgstr "Port:"
#: modules/gui/gtk/gnome_interface.c:3003 modules/gui/gtk/gtk_interface.c:3273 #: modules/gui/gtk/gnome_interface.c:3003 modules/gui/gtk/gtk_interface.c:3273
#: modules/gui/win32/strings.cpp:165 modules/gui/win32/strings.cpp:166 #: modules/gui/win32/strings.cpp:166 modules/gui/win32/strings.cpp:167
#: modules/gui/win32/strings.cpp:223 #: modules/gui/win32/strings.cpp:224
msgid "Address:" msgid "Address:"
msgstr "Adresse:" msgstr "Adresse:"
#: modules/gui/gtk/gnome_interface.c:3072 modules/gui/gtk/gtk_interface.c:3317 #: modules/gui/gtk/gnome_interface.c:3072 modules/gui/gtk/gtk_interface.c:3317
#: modules/gui/macosx/open.m:221 modules/gui/win32/strings.cpp:231 #: modules/gui/macosx/open.m:221 modules/gui/win32/strings.cpp:232
msgid "TS" msgid "TS"
msgstr "" msgstr ""
#: modules/gui/gtk/gnome_interface.c:3080 modules/gui/gtk/gtk_interface.c:3325 #: modules/gui/gtk/gnome_interface.c:3080 modules/gui/gtk/gtk_interface.c:3325
#: modules/gui/macosx/open.m:220 modules/gui/macosx/open.m:749 #: modules/gui/macosx/open.m:220 modules/gui/macosx/open.m:749
#: modules/gui/macosx/open.m:808 modules/gui/win32/strings.cpp:230 #: modules/gui/macosx/open.m:808 modules/gui/win32/strings.cpp:231
msgid "PS" msgid "PS"
msgstr "" msgstr ""
...@@ -2644,9 +2543,9 @@ msgstr "l' ...@@ -2644,9 +2543,9 @@ msgstr "l'
#: modules/gui/gtk/preferences.c:601 modules/gui/macosx/prefs.m:545 #: modules/gui/gtk/preferences.c:601 modules/gui/macosx/prefs.m:545
#: modules/gui/macosx/prefs.m:760 modules/gui/macosx/open.m:169 #: modules/gui/macosx/prefs.m:760 modules/gui/macosx/open.m:169
#: modules/gui/win32/strings.cpp:13 modules/gui/win32/strings.cpp:26 #: modules/gui/win32/strings.cpp:13 modules/gui/win32/strings.cpp:26
#: modules/gui/win32/strings.cpp:154 modules/gui/win32/strings.cpp:172 #: modules/gui/win32/strings.cpp:154 modules/gui/win32/strings.cpp:173
#: modules/gui/win32/strings.cpp:182 modules/gui/win32/strings.cpp:213 #: modules/gui/win32/strings.cpp:183 modules/gui/win32/strings.cpp:214
#: modules/gui/win32/strings.cpp:232 modules/gui/win32/strings.cpp:248 #: modules/gui/win32/strings.cpp:233 modules/gui/win32/strings.cpp:249
msgid "OK" msgid "OK"
msgstr "" msgstr ""
...@@ -2659,16 +2558,16 @@ msgstr "Ouvrir un flux" ...@@ -2659,16 +2558,16 @@ msgstr "Ouvrir un flux"
msgid "Use a subtitles file" msgid "Use a subtitles file"
msgstr "Slectionner la piste de sous-titres" msgstr "Slectionner la piste de sous-titres"
#: modules/gui/gtk/gtk_interface.c:2413 modules/gui/win32/strings.cpp:240 #: modules/gui/gtk/gtk_interface.c:2413 modules/gui/win32/strings.cpp:241
#, fuzzy #, fuzzy
msgid "Select a subtitles file" msgid "Select a subtitles file"
msgstr "Slectionner la piste de sous-titres" msgstr "Slectionner la piste de sous-titres"
#: modules/gui/gtk/gtk_interface.c:2443 modules/gui/win32/strings.cpp:243 #: modules/gui/gtk/gtk_interface.c:2443 modules/gui/win32/strings.cpp:244
msgid "Set the delay (in seconds)" msgid "Set the delay (in seconds)"
msgstr "" msgstr ""
#: modules/gui/gtk/gtk_interface.c:2459 modules/gui/win32/strings.cpp:245 #: modules/gui/gtk/gtk_interface.c:2459 modules/gui/win32/strings.cpp:246
msgid "Set the number of Frames Per Second" msgid "Set the number of Frames Per Second"
msgstr "" msgstr ""
...@@ -2744,7 +2643,7 @@ msgstr "S ...@@ -2744,7 +2643,7 @@ msgstr "S
msgid "Languages" msgid "Languages"
msgstr "Langues" msgstr "Langues"
#: modules/gui/kde/interface.cpp:94 modules/gui/macosx/intf.m:301 #: modules/gui/kde/interface.cpp:94 modules/gui/macosx/intf.m:327
#: modules/gui/win32/strings.cpp:87 #: modules/gui/win32/strings.cpp:87
msgid "Subtitles" msgid "Subtitles"
msgstr "Sous-titres" msgstr "Sous-titres"
...@@ -2769,198 +2668,221 @@ msgstr "module d'interface KDE" ...@@ -2769,198 +2668,221 @@ msgstr "module d'interface KDE"
msgid "Messages:" msgid "Messages:"
msgstr "Messages :" msgstr "Messages :"
#: modules/gui/macosx/intf.m:245 #: modules/gui/macosx/intf.m:270
msgid "VLC - Controller" msgid "VLC - Controller"
msgstr "VLC - Contrleur" msgstr "VLC - Contrleur"
#: modules/gui/macosx/intf.m:250 modules/gui/macosx/intf.m:294 #: modules/gui/macosx/intf.m:275 modules/gui/macosx/intf.m:320
#: modules/gui/macosx/controls.m:644 #: modules/gui/macosx/intf.m:363 modules/gui/macosx/controls.m:695
msgid "Previous" msgid "Previous"
msgstr "Prcdent" msgstr "Prcdent"
#: modules/gui/macosx/intf.m:251 modules/gui/macosx/intf.m:293 #: modules/gui/macosx/intf.m:276 modules/gui/macosx/intf.m:319
#: modules/gui/macosx/controls.m:624 #: modules/gui/macosx/controls.m:675
msgid "Slower" msgid "Slower"
msgstr "Ralentir" msgstr "Ralentir"
#: modules/gui/macosx/intf.m:254 modules/gui/macosx/intf.m:292 #: modules/gui/macosx/intf.m:279 modules/gui/macosx/intf.m:318
#: modules/gui/macosx/controls.m:623 #: modules/gui/macosx/controls.m:674
msgid "Faster" msgid "Faster"
msgstr "Acclrer" msgstr "Acclrer"
#: modules/gui/macosx/intf.m:257 #: modules/gui/macosx/intf.m:282
msgid "Volume" msgid "Volume"
msgstr "" msgstr ""
#: modules/gui/macosx/intf.m:258 #: modules/gui/macosx/intf.m:283
msgid "Position" msgid "Position"
msgstr "Position" msgstr "Position"
#: modules/gui/macosx/intf.m:264 #: modules/gui/macosx/intf.m:289
msgid "Close" msgid "Close"
msgstr "Fermer" msgstr "Fermer"
#: modules/gui/macosx/intf.m:290
msgid "Open CrashLog"
msgstr ""
#. main menu #. main menu
#: modules/gui/macosx/intf.m:267 #: modules/gui/macosx/intf.m:293
msgid "About VLC Media Player" msgid "About VLC Media Player"
msgstr " propos du lecteur multimdia VLC" msgstr " propos du lecteur multimdia VLC"
#: modules/gui/macosx/intf.m:269 #: modules/gui/macosx/intf.m:295
msgid "Hide VLC" msgid "Hide VLC"
msgstr "Masquer VLC" msgstr "Masquer VLC"
#: modules/gui/macosx/intf.m:270 #: modules/gui/macosx/intf.m:296
msgid "Hide Others" msgid "Hide Others"
msgstr "Masquer les autres" msgstr "Masquer les autres"
#: modules/gui/macosx/intf.m:271 #: modules/gui/macosx/intf.m:297
msgid "Show All" msgid "Show All"
msgstr "Montrer tout" msgstr "Montrer tout"
#: modules/gui/macosx/intf.m:272 #: modules/gui/macosx/intf.m:298
msgid "Quit VLC" msgid "Quit VLC"
msgstr "Quitter VLC" msgstr "Quitter VLC"
#: modules/gui/macosx/intf.m:275 #: modules/gui/macosx/intf.m:301
msgid "Open..." msgid "Open..."
msgstr "Ouvrir..." msgstr "Ouvrir..."
#: modules/gui/macosx/intf.m:276 modules/gui/win32/strings.cpp:90 #: modules/gui/macosx/intf.m:302 modules/gui/win32/strings.cpp:90
msgid "Open File..." msgid "Open File..."
msgstr "Ouvrir un fichier..." msgstr "Ouvrir un fichier..."
#: modules/gui/macosx/intf.m:277 modules/gui/win32/strings.cpp:91 #: modules/gui/macosx/intf.m:303 modules/gui/win32/strings.cpp:91
msgid "Open Disc..." msgid "Open Disc..."
msgstr "Ouvrir un disque..." msgstr "Ouvrir un disque..."
#: modules/gui/macosx/intf.m:278 #: modules/gui/macosx/intf.m:304
msgid "Open Network..." msgid "Open Network..."
msgstr "Ouvrir un flux rseau..." msgstr "Ouvrir un flux rseau..."
#: modules/gui/macosx/intf.m:279 #: modules/gui/macosx/intf.m:305
msgid "Open Recent" msgid "Open Recent"
msgstr "Ouvrir un flux rcent" msgstr "Ouvrir un flux rcent"
#. Recent Items Menu #. Recent Items Menu
#: modules/gui/macosx/intf.m:280 modules/gui/macosx/intf.m:1419 #: modules/gui/macosx/intf.m:306 modules/gui/macosx/intf.m:1468
msgid "Clear Menu" msgid "Clear Menu"
msgstr "Tout effacer" msgstr "Tout effacer"
#: modules/gui/macosx/intf.m:282 #: modules/gui/macosx/intf.m:308
msgid "Edit" msgid "Edit"
msgstr "dition" msgstr "dition"
#: modules/gui/macosx/intf.m:283 #: modules/gui/macosx/intf.m:309
msgid "Cut" msgid "Cut"
msgstr "Couper" msgstr "Couper"
#: modules/gui/macosx/intf.m:284 #: modules/gui/macosx/intf.m:310
msgid "Copy" msgid "Copy"
msgstr "Copier" msgstr "Copier"
#: modules/gui/macosx/intf.m:285 #: modules/gui/macosx/intf.m:311
msgid "Paste" msgid "Paste"
msgstr "Coller" msgstr "Coller"
#: modules/gui/macosx/intf.m:286 #: modules/gui/macosx/intf.m:312
msgid "Clear" msgid "Clear"
msgstr "Effacer" msgstr "Effacer"
#: modules/gui/macosx/intf.m:287 modules/gui/macosx/playlist.m:103 #: modules/gui/macosx/intf.m:313 modules/gui/macosx/playlist.m:124
msgid "Select All" msgid "Select All"
msgstr "Tout slectionner" msgstr "Tout slectionner"
#: modules/gui/macosx/intf.m:289 modules/gui/win32/strings.cpp:77 #: modules/gui/macosx/intf.m:315 modules/gui/win32/strings.cpp:77
msgid "Controls" msgid "Controls"
msgstr "Contrles" msgstr "Contrles"
#: modules/gui/macosx/intf.m:296 modules/gui/macosx/controls.m:663 #: modules/gui/macosx/intf.m:322 modules/gui/macosx/controls.m:714
msgid "Loop" msgid "Loop"
msgstr "Boucle" msgstr "Boucle"
#: modules/gui/macosx/intf.m:300 modules/gui/win32/strings.cpp:86 #: modules/gui/macosx/intf.m:326 modules/gui/win32/strings.cpp:86
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: modules/gui/macosx/intf.m:311 modules/gui/macosx/controls.m:703 #: modules/gui/macosx/intf.m:337 modules/gui/macosx/controls.m:755
msgid "Half Size"
msgstr ""
#: modules/gui/macosx/intf.m:338 modules/gui/macosx/controls.m:756
msgid "Normal Size"
msgstr ""
#: modules/gui/macosx/intf.m:339 modules/gui/macosx/controls.m:757
msgid "Double Size"
msgstr ""
#: modules/gui/macosx/intf.m:340 modules/gui/macosx/controls.m:754
msgid "Fullscreen" msgid "Fullscreen"
msgstr "Plein cran" msgstr "Plein cran"
#: modules/gui/macosx/intf.m:315 #: modules/gui/macosx/intf.m:344
msgid "Window" msgid "Window"
msgstr "Fentre" msgstr "Fentre"
#: modules/gui/macosx/intf.m:316 #: modules/gui/macosx/intf.m:345
msgid "Minimize Window" msgid "Minimize Window"
msgstr "Minimiser la fentre" msgstr "Minimiser la fentre"
#: modules/gui/macosx/intf.m:317 #: modules/gui/macosx/intf.m:346
msgid "Close Window" msgid "Close Window"
msgstr "Fermer la fentre" msgstr "Fermer la fentre"
#: modules/gui/macosx/intf.m:318 #: modules/gui/macosx/intf.m:347
msgid "Controller" msgid "Controller"
msgstr "Contrleur" msgstr "Contrleur"
#: modules/gui/macosx/intf.m:322 #: modules/gui/macosx/intf.m:351
msgid "Bring All to Front" msgid "Bring All to Front"
msgstr "Tout ramener au premier plan" msgstr "Tout ramener au premier plan"
#: modules/gui/macosx/intf.m:324 #: modules/gui/macosx/intf.m:353
msgid "Help" msgid "Help"
msgstr "Aide" msgstr "Aide"
#: modules/gui/macosx/intf.m:325 #: modules/gui/macosx/intf.m:354
msgid "ReadMe..." msgid "ReadMe..."
msgstr "Lisez-moi..." msgstr "Lisez-moi..."
#: modules/gui/macosx/intf.m:326 #: modules/gui/macosx/intf.m:355
msgid "Report A Bug" msgid "Report A Bug"
msgstr "Rapporter un problme..." msgstr "Rapporter un problme..."
#: modules/gui/macosx/intf.m:327 #: modules/gui/macosx/intf.m:356
msgid "VideoLAN Website" msgid "VideoLAN Website"
msgstr "Site web de VideoLAN" msgstr "Site web de VideoLAN"
#: modules/gui/macosx/intf.m:328 #: modules/gui/macosx/intf.m:357
msgid "License" msgid "License"
msgstr "Licence" msgstr "Licence"
#. error panel #. error panel
#: modules/gui/macosx/intf.m:335 #: modules/gui/macosx/intf.m:366
msgid "Error" msgid "Error"
msgstr "Erreur" msgstr "Erreur"
#: modules/gui/macosx/intf.m:336 #: modules/gui/macosx/intf.m:367
msgid "" msgid ""
"An error has occurred which probably prevented the execution of your request:" "An error has occurred which probably prevented the execution of your request:"
msgstr "" msgstr "Une erreur est survenue, qui a probablement empch le droulement normal du programme :"
"Une erreur est survenue, qui a probablement empch le droulement normal du "
"programme :"
#: modules/gui/macosx/intf.m:337 #: modules/gui/macosx/intf.m:368
msgid "If you believe that it is a bug, please follow the instructions at:" msgid "If you believe that it is a bug, please follow the instructions at:"
msgstr "" msgstr "Si vous estimez qu'il s'agit d'un bug, veuillez suivre les instructions l'adresse :"
"Si vous estimez qu'il s'agit d'un bug, veuillez suivre les instructions "
"l'adresse :"
#: modules/gui/macosx/intf.m:338 #: modules/gui/macosx/intf.m:369
msgid "Open Messages Window" msgid "Open Messages Window"
msgstr "Ouvrir la fentre de messages" msgstr "Ouvrir la fentre de messages"
#: modules/gui/macosx/intf.m:339 #: modules/gui/macosx/intf.m:370
msgid "Dismiss" msgid "Dismiss"
msgstr "Fermer" msgstr "Fermer"
#: modules/gui/macosx/intf.m:1168 #: modules/gui/macosx/intf.m:1199
msgid "Load from file.." msgid "Load from file.."
msgstr "Charger depuis..." msgstr "Charger depuis..."
#: modules/gui/macosx/intf.m:1195 #: modules/gui/macosx/intf.m:1226
#, c-format #, c-format
msgid "Language 0x%x" msgid "Language 0x%x"
msgstr "Langue 0x%x" msgstr "Langue 0x%x"
#: modules/gui/macosx/intf.m:1431
#, fuzzy
msgid "No CrashLog found"
msgstr "Aucun %@ trouv"
#: modules/gui/macosx/intf.m:1431
msgid ""
"Either you are running Mac OS X pre 10.2 or you haven't experienced any "
"heavy crashes yet."
msgstr ""
#: modules/gui/macosx/open.m:165 #: modules/gui/macosx/open.m:165
msgid "Open Source" msgid "Open Source"
msgstr "Ouvrir un flux" msgstr "Ouvrir un flux"
...@@ -3002,12 +2924,12 @@ msgstr "Ouvrir un dossier VIDEO_TS" ...@@ -3002,12 +2924,12 @@ msgstr "Ouvrir un dossier VIDEO_TS"
msgid "Save File" msgid "Save File"
msgstr "Sauvegarder le fichier" msgstr "Sauvegarder le fichier"
#: modules/gui/macosx/controls.m:523 #: modules/gui/macosx/controls.m:572
#, fuzzy #, fuzzy
msgid "Open subtitlefile" msgid "Open subtitlefile"
msgstr "Slectionner la piste de sous-titres" msgstr "Slectionner la piste de sous-titres"
#: modules/gui/macosx/vout.m:935 #: modules/gui/macosx/vout.m:956
#, c-format #, c-format
msgid "Screen %d" msgid "Screen %d"
msgstr "cran %d" msgstr "cran %d"
...@@ -3299,119 +3221,123 @@ msgstr "" ...@@ -3299,119 +3221,123 @@ msgstr ""
msgid "Set the window on top" msgid "Set the window on top"
msgstr "Fermer la fentre" msgstr "Fermer la fentre"
#: modules/gui/win32/strings.cpp:155
msgid "&Copy text"
msgstr ""
#. #.
#. * from modules/gui/win32/network.dfm: #. * from modules/gui/win32/network.dfm:
#. #.
#: modules/gui/win32/strings.cpp:160 #: modules/gui/win32/strings.cpp:161
msgid "Open network" msgid "Open network"
msgstr "Lecture rseau" msgstr "Lecture rseau"
#: modules/gui/win32/strings.cpp:161 #: modules/gui/win32/strings.cpp:162
msgid "Network mode" msgid "Network mode"
msgstr "Mode rseau" msgstr "Mode rseau"
#: modules/gui/win32/strings.cpp:162 modules/gui/win32/strings.cpp:163 #: modules/gui/win32/strings.cpp:163 modules/gui/win32/strings.cpp:164
#: modules/gui/win32/strings.cpp:164 modules/gui/win32/strings.cpp:222 #: modules/gui/win32/strings.cpp:165 modules/gui/win32/strings.cpp:223
msgid "Port:" msgid "Port:"
msgstr "Port:" msgstr "Port:"
#: modules/gui/win32/strings.cpp:180 #: modules/gui/win32/strings.cpp:181
msgid "Filename" msgid "Filename"
msgstr "Nom de fichier" msgstr "Nom de fichier"
#: modules/gui/win32/strings.cpp:183 #: modules/gui/win32/strings.cpp:184
msgid "&Add" msgid "&Add"
msgstr "&Ajouter" msgstr "&Ajouter"
#: modules/gui/win32/strings.cpp:184 #: modules/gui/win32/strings.cpp:185
msgid "&File..." msgid "&File..."
msgstr "&Fichier..." msgstr "&Fichier..."
#: modules/gui/win32/strings.cpp:185 #: modules/gui/win32/strings.cpp:186
msgid "&Disc..." msgid "&Disc..."
msgstr "&Disque..." msgstr "&Disque..."
#: modules/gui/win32/strings.cpp:186 #: modules/gui/win32/strings.cpp:187
msgid "&Network..." msgid "&Network..."
msgstr "&Rseau..." msgstr "&Rseau..."
#: modules/gui/win32/strings.cpp:187 #: modules/gui/win32/strings.cpp:188
msgid "&Url" msgid "&Url"
msgstr "&Url" msgstr "&Url"
#: modules/gui/win32/strings.cpp:188 #: modules/gui/win32/strings.cpp:189
msgid "&Delete" msgid "&Delete"
msgstr "&Effacer" msgstr "&Effacer"
#: modules/gui/win32/strings.cpp:189 modules/gui/win32/strings.cpp:190 #: modules/gui/win32/strings.cpp:190 modules/gui/win32/strings.cpp:191
msgid "&Selection" msgid "&Selection"
msgstr "&Slection" msgstr "&Slection"
#: modules/gui/win32/strings.cpp:191 #: modules/gui/win32/strings.cpp:192
msgid "&Invert selection" msgid "&Invert selection"
msgstr "&Inverser la slection" msgstr "&Inverser la slection"
#: modules/gui/win32/strings.cpp:192 #: modules/gui/win32/strings.cpp:193
msgid "&Crop selection" msgid "&Crop selection"
msgstr "&Rogner la slection" msgstr "&Rogner la slection"
#: modules/gui/win32/strings.cpp:193 #: modules/gui/win32/strings.cpp:194
msgid "&Delete selection" msgid "&Delete selection"
msgstr "&Effacer la slection" msgstr "&Effacer la slection"
#: modules/gui/win32/strings.cpp:194 #: modules/gui/win32/strings.cpp:195
msgid "Delete &all" msgid "Delete &all"
msgstr "&Tout effacer" msgstr "&Tout effacer"
#: modules/gui/win32/strings.cpp:196 #: modules/gui/win32/strings.cpp:197
msgid "Invert selection" msgid "Invert selection"
msgstr "Inverse la slection" msgstr "Inverse la slection"
#: modules/gui/win32/strings.cpp:198 #: modules/gui/win32/strings.cpp:199
msgid "Crop selection" msgid "Crop selection"
msgstr "Rogne la slection" msgstr "Rogne la slection"
#: modules/gui/win32/strings.cpp:200 #: modules/gui/win32/strings.cpp:201
msgid "Delete selection" msgid "Delete selection"
msgstr "Efface la slection" msgstr "Efface la slection"
#: modules/gui/win32/strings.cpp:202 #: modules/gui/win32/strings.cpp:203
msgid "Delete all items" msgid "Delete all items"
msgstr "" msgstr ""
#: modules/gui/win32/strings.cpp:204 #: modules/gui/win32/strings.cpp:205
msgid "Play the selected stream" msgid "Play the selected stream"
msgstr "Jouer le flux slectionn" msgstr "Jouer le flux slectionn"
#: modules/gui/win32/strings.cpp:221 #: modules/gui/win32/strings.cpp:222
msgid "Stream output MRL (Media Resource Locator)" msgid "Stream output MRL (Media Resource Locator)"
msgstr "" msgstr ""
#: modules/gui/win32/strings.cpp:224 #: modules/gui/win32/strings.cpp:225
msgid "file/ts://" msgid "file/ts://"
msgstr "" msgstr ""
#: modules/gui/win32/strings.cpp:229 #: modules/gui/win32/strings.cpp:230
msgid "239.239.0.1" msgid "239.239.0.1"
msgstr "" msgstr ""
#. #.
#. * from modules/gui/win32/subtitles.dfm: #. * from modules/gui/win32/subtitles.dfm:
#. #.
#: modules/gui/win32/strings.cpp:239 #: modules/gui/win32/strings.cpp:240
#, fuzzy #, fuzzy
msgid "Add subtitles" msgid "Add subtitles"
msgstr "sous-titres" msgstr "sous-titres"
#: modules/gui/win32/strings.cpp:241 #: modules/gui/win32/strings.cpp:242
msgid "Delay:" msgid "Delay:"
msgstr "" msgstr ""
#: modules/gui/win32/strings.cpp:242 #: modules/gui/win32/strings.cpp:243
msgid "FPS:" msgid "FPS:"
msgstr "" msgstr ""
#: modules/gui/win32/strings.cpp:244 modules/gui/win32/strings.cpp:246 #: modules/gui/win32/strings.cpp:245 modules/gui/win32/strings.cpp:247
msgid "0.0" msgid "0.0"
msgstr "" msgstr ""
...@@ -3750,22 +3676,16 @@ msgid "" ...@@ -3750,22 +3676,16 @@ msgid ""
"2) Completly bypass the window manager, but then nothing will be able to " "2) Completly bypass the window manager, but then nothing will be able to "
"show on top of the video." "show on top of the video."
msgstr "" msgstr ""
"Il y a deus mthodes pour passer en plein cran, chacune aves ses " "Il y a deus mthodes pour passer en plein cran, chacune aves ses inconvnients :\n"
"inconvnients :\n" "1) Laisser le gestionnaire de fentre grer la fentre plein cran (mode par dfaut). Mais les objetcs comme les barres des tches seront probablement au-dessus de la vido.\n"
"1) Laisser le gestionnaire de fentre grer la fentre plein cran (mode par " "2) Ne pas utiliser du tout le gestionnaire de fentres, mais plus rien ne sera affichable au-dessus de la vido."
"dfaut). Mais les objetcs comme les barres des tches seront probablement au-"
"dessus de la vido.\n"
"2) Ne pas utiliser du tout le gestionnaire de fentres, mais plus rien ne "
"sera affichable au-dessus de la vido."
#: modules/video_output/mga/xmga.c:100 modules/video_output/x11/x11.c:54 #: modules/video_output/mga/xmga.c:100 modules/video_output/x11/x11.c:54
#: modules/video_output/x11/xvideo.c:60 #: modules/video_output/x11/xvideo.c:60
msgid "" msgid ""
"Specify the X11 hardware display you want to use. By default VLC will use " "Specify the X11 hardware display you want to use. By default VLC will use "
"the value of the DISPLAY environment variable." "the value of the DISPLAY environment variable."
msgstr "" msgstr "Spcifier le display X11 que vous dsirez utiliser. Par dfaut VLC utilisera la valeur de la variable d'environnement DISPLAY."
"Spcifier le display X11 que vous dsirez utiliser. Par dfaut VLC utilisera "
"la valeur de la variable d'environnement DISPLAY."
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
msgid "X11 MGA module" msgid "X11 MGA module"
...@@ -3779,9 +3699,7 @@ msgstr "nom du display Qt Embedded" ...@@ -3779,9 +3699,7 @@ msgstr "nom du display Qt Embedded"
msgid "" msgid ""
"Specify the Qt Embedded hardware display you want to use. By default VLC " "Specify the Qt Embedded hardware display you want to use. By default VLC "
"will use the value of the DISPLAY environment variable." "will use the value of the DISPLAY environment variable."
msgstr "" msgstr "Spcifier le display Qt Embedded que vous dsirez utiliser. Par dfaut VLC utilisera la valeur de la variable d'environnement DISPLAY."
"Spcifier le display Qt Embedded que vous dsirez utiliser. Par dfaut VLC "
"utilisera la valeur de la variable d'environnement DISPLAY."
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
msgid "QT Embedded drawable" msgid "QT Embedded drawable"
...@@ -3815,8 +3733,7 @@ msgstr "utilise la m ...@@ -3815,8 +3733,7 @@ msgstr "utilise la m
#: modules/video_output/x11/x11.c:59 modules/video_output/x11/xvideo.c:70 #: modules/video_output/x11/x11.c:59 modules/video_output/x11/xvideo.c:70
msgid "Use shared memory to communicate between VLC and the X server." msgid "Use shared memory to communicate between VLC and the X server."
msgstr "" msgstr "Utiliser la mmoire partage pour communiquer entre VLC et le serveur X."
"Utiliser la mmoire partage pour communiquer entre VLC et le serveur X."
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
msgid "X11" msgid "X11"
...@@ -3837,10 +3754,7 @@ msgstr "num ...@@ -3837,10 +3754,7 @@ msgstr "num
msgid "" msgid ""
"If you graphics card provides several adaptors, this option allows you to " "If you graphics card provides several adaptors, this option allows you to "
"choose which one will be used (you shouldn't have to change this)." "choose which one will be used (you shouldn't have to change this)."
msgstr "" msgstr "Si votre carte graphique a plusieurs adaptateurs, cette option vous permet de choisir celui qui sera utilis (vous ne devriez pas avoir modifier cette valeur)."
"Si votre carte graphique a plusieurs adaptateurs, cette option vous permet "
"de choisir celui qui sera utilis (vous ne devriez pas avoir modifier "
"cette valeur)."
#: modules/video_output/x11/xvideo.c:63 #: modules/video_output/x11/xvideo.c:63
msgid "XVimage chroma format" msgid "XVimage chroma format"
...@@ -3976,10 +3890,7 @@ msgstr "module d'interface xosd" ...@@ -3976,10 +3890,7 @@ msgstr "module d'interface xosd"
#~ msgid "" #~ msgid ""
#~ "This is the VideoLAN Client, a DVD, MPEG and DivX player. It can play " #~ "This is the VideoLAN Client, a DVD, MPEG and DivX player. It can play "
#~ "MPEG and MPEG 2 files from a file or from a network source." #~ "MPEG and MPEG 2 files from a file or from a network source."
#~ msgstr "" #~ msgstr "Ceci est le client VideoLAN, un lecteur de DVD, MPEG et DivX. Il peut jouer des fichiers MPEG et MPEG2 partir d'un fichier ou d'une source rseau."
#~ "Ceci est le client VideoLAN, un lecteur de DVD, MPEG et DivX. Il peut "
#~ "jouer des fichiers MPEG et MPEG2 partir d'un fichier ou d'une source "
#~ "rseau."
#~ msgid "No server!" #~ msgid "No server!"
#~ msgstr "Pas de serveur" #~ msgstr "Pas de serveur"
......
...@@ -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 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: output.c,v 1.35 2003/01/28 12:23:40 massiot Exp $ * $Id: output.c,v 1.36 2003/02/08 17:26:00 massiot Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -69,25 +69,25 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -69,25 +69,25 @@ int aout_OutputNew( aout_instance_t * p_aout,
/* The user may have selected a different channels configuration. */ /* The user may have selected a different channels configuration. */
var_Get( p_aout, "audio-channels", &val ); var_Get( p_aout, "audio-channels", &val );
if ( !strcmp( val.psz_string, N_("Reverse stereo") ) ) if ( !strcmp( val.psz_string, _("Reverse stereo") ) )
{ {
p_aout->output.output.i_original_channels |= p_aout->output.output.i_original_channels |=
AOUT_CHAN_REVERSESTEREO; AOUT_CHAN_REVERSESTEREO;
} }
else if ( !strcmp( val.psz_string, N_("Both") ) ) else if ( !strcmp( val.psz_string, _("Stereo") ) )
{ {
p_aout->output.output.i_original_channels = p_aout->output.output.i_original_channels =
AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT; AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
} }
else if ( !strcmp( val.psz_string, N_("Left") ) ) else if ( !strcmp( val.psz_string, _("Left") ) )
{ {
p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT; p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT;
} }
else if ( !strcmp( val.psz_string, N_("Right") ) ) else if ( !strcmp( val.psz_string, _("Right") ) )
{ {
p_aout->output.output.i_original_channels = AOUT_CHAN_RIGHT; p_aout->output.output.i_original_channels = AOUT_CHAN_RIGHT;
} }
else if ( !strcmp( val.psz_string, N_("Dolby Surround") ) ) else if ( !strcmp( val.psz_string, _("Dolby Surround") ) )
{ {
p_aout->output.output.i_original_channels p_aout->output.output.i_original_channels
= AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_DOLBYSTEREO; = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_DOLBYSTEREO;
...@@ -100,17 +100,17 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -100,17 +100,17 @@ 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", VLC_VAR_STRING | VLC_VAR_HASCHOICE ); var_Create( p_aout, "audio-channels", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
val.psz_string = N_("Both"); val.psz_string = _("Stereo");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
val.psz_string = N_("Left"); val.psz_string = _("Left");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
val.psz_string = N_("Right"); val.psz_string = _("Right");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DUALMONO ) if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DUALMONO )
{ {
/* Go directly to the left channel. */ /* Go directly to the left channel. */
p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT; p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT;
val.psz_string = N_("Left"); val.psz_string = _("Left");
var_Set( p_aout, "audio-channels", val ); var_Set( p_aout, "audio-channels", val );
} }
var_AddCallback( p_aout, "audio-channels", aout_ChannelsRestart, var_AddCallback( p_aout, "audio-channels", aout_ChannelsRestart,
...@@ -125,24 +125,24 @@ int aout_OutputNew( aout_instance_t * p_aout, ...@@ -125,24 +125,24 @@ int aout_OutputNew( aout_instance_t * p_aout,
var_Create( p_aout, "audio-channels", VLC_VAR_STRING | VLC_VAR_HASCHOICE ); var_Create( p_aout, "audio-channels", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DOLBYSTEREO ) if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
{ {
val.psz_string = N_("Dolby Surround"); val.psz_string = _("Dolby Surround");
} }
else else
{ {
val.psz_string = N_("Both"); val.psz_string = _("Stereo");
} }
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
val.psz_string = N_("Left"); val.psz_string = _("Left");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
val.psz_string = N_("Right"); val.psz_string = _("Right");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
val.psz_string = N_("Reverse stereo"); val.psz_string = _("Reverse stereo");
var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val ); var_Change( p_aout, "audio-channels", VLC_VAR_ADDCHOICE, &val );
if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DUALMONO ) if ( p_aout->output.output.i_original_channels & AOUT_CHAN_DUALMONO )
{ {
/* Go directly to the left channel. */ /* Go directly to the left channel. */
p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT; p_aout->output.output.i_original_channels = AOUT_CHAN_LEFT;
val.psz_string = N_("Left"); val.psz_string = _("Left");
var_Set( p_aout, "audio-channels", val ); var_Set( p_aout, "audio-channels", val );
} }
var_AddCallback( p_aout, "audio-channels", aout_ChannelsRestart, var_AddCallback( p_aout, "audio-channels", aout_ChannelsRestart,
......
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