1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-08 11:26:59 +02:00

* ./po/*: more s/vlc/VLC/ changes.

This commit is contained in:
Sam Hocevar 2003-02-02 00:46:58 +00:00
parent c0fc3bc207
commit 3aabcacdb9
18 changed files with 126 additions and 133 deletions

View File

@ -25,7 +25,7 @@
<handler>on_familiar_delete_event</handler> <handler>on_familiar_delete_event</handler>
<last_modification_time>Wed, 21 Aug 2002 19:12:40 GMT</last_modification_time> <last_modification_time>Wed, 21 Aug 2002 19:12:40 GMT</last_modification_time>
</signal> </signal>
<title>vlc (familiar)</title> <title>VLC media player</title>
<type>GTK_WINDOW_TOPLEVEL</type> <type>GTK_WINDOW_TOPLEVEL</type>
<position>GTK_WIN_POS_NONE</position> <position>GTK_WIN_POS_NONE</position>
<modal>False</modal> <modal>False</modal>

View File

@ -63,7 +63,7 @@ create_familiar (void)
gtk_widget_set_name (familiar, "familiar"); gtk_widget_set_name (familiar, "familiar");
gtk_object_set_data (GTK_OBJECT (familiar), "familiar", familiar); gtk_object_set_data (GTK_OBJECT (familiar), "familiar", familiar);
gtk_widget_set_usize (familiar, 240, 320); gtk_widget_set_usize (familiar, 240, 320);
gtk_window_set_title (GTK_WINDOW (familiar), _("vlc (familiar)")); gtk_window_set_title (GTK_WINDOW (familiar), _("VLC media player"));
gtk_window_set_policy (GTK_WINDOW (familiar), TRUE, TRUE, TRUE); gtk_window_set_policy (GTK_WINDOW (familiar), TRUE, TRUE, TRUE);
vbox = gtk_vbox_new (FALSE, 0); vbox = gtk_vbox_new (FALSE, 0);

View File

@ -2,7 +2,7 @@
* ggi.c : GGI plugin for vlc * ggi.c : GGI plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: ggi.c,v 1.2 2002/11/10 18:04:22 sam Exp $ * $Id: ggi.c,v 1.3 2003/02/02 00:46:58 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
@ -55,7 +55,7 @@ static void SetPalette ( vout_thread_t *, u16 *, u16 *, u16 * );
*****************************************************************************/ *****************************************************************************/
#define DISPLAY_TEXT N_("X11 display name") #define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_LONGTEXT N_("Specify the X11 hardware display you want to use."\ #define DISPLAY_LONGTEXT N_("Specify the X11 hardware display you want to use."\
"\nBy default vlc will use the value of the DISPLAY"\ "\nBy default VLC will use the value of the DISPLAY"\
" environment variable.") " environment variable.")
vlc_module_begin(); vlc_module_begin();

View File

@ -2,7 +2,7 @@
* xmga.c : X11 MGA plugin for vlc * xmga.c : X11 MGA plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: xmga.c,v 1.1 2002/08/04 17:23:43 sam Exp $ * $Id: xmga.c,v 1.2 2003/02/02 00:46:58 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
@ -97,7 +97,7 @@ static void ToggleCursor ( vout_thread_t * );
#define DISPLAY_TEXT N_("X11 display name") #define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_LONGTEXT N_( \ #define DISPLAY_LONGTEXT N_( \
"Specify the X11 hardware display you want to use. By default vlc will " \ "Specify the X11 hardware display you want to use. By default VLC will " \
"use the value of the DISPLAY environment variable.") "use the value of the DISPLAY environment variable.")
vlc_module_begin(); vlc_module_begin();

View File

@ -2,7 +2,7 @@
* qte.cpp : QT Embedded plugin for vlc * qte.cpp : QT Embedded plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: qte.cpp,v 1.9 2003/01/19 22:16:13 jpsaman Exp $ * $Id: qte.cpp,v 1.10 2003/02/02 00:46:58 sam Exp $
* *
* Authors: Gerald Hansink <gerald.hansink@ordain.nl> * Authors: Gerald Hansink <gerald.hansink@ordain.nl>
* Jean-Paul Saman <jpsaman@wxs.nl> * Jean-Paul Saman <jpsaman@wxs.nl>
@ -87,7 +87,7 @@ extern "C"
"to show on top of the video.") "to show on top of the video.")
#define DISPLAY_TEXT N_("QT Embedded display name") #define DISPLAY_TEXT N_("QT Embedded display name")
#define DISPLAY_LONGTEXT N_( \ #define DISPLAY_LONGTEXT N_( \
"Specify the Qt Embedded hardware display you want to use. By default vlc will " \ "Specify the Qt Embedded hardware display you want to use. By default VLC will " \
"use the value of the DISPLAY environment variable.") "use the value of the DISPLAY environment variable.")
#define DRAWABLE_TEXT N_("QT Embedded drawable") #define DRAWABLE_TEXT N_("QT Embedded drawable")
#define DRAWABLE_LONGTEXT N_( \ #define DRAWABLE_LONGTEXT N_( \

View File

@ -2,7 +2,7 @@
* x11.c : X11 plugin for vlc * x11.c : X11 plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: x11.c,v 1.3 2003/02/01 18:54:10 sam Exp $ * $Id: x11.c,v 1.4 2003/02/02 00:46:58 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
@ -51,12 +51,12 @@ extern void E_(Deactivate) ( vlc_object_t * );
#define DISPLAY_TEXT N_("X11 display name") #define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_LONGTEXT N_( \ #define DISPLAY_LONGTEXT N_( \
"Specify the X11 hardware display you want to use. By default vlc will " \ "Specify the X11 hardware display you want to use. By default VLC will " \
"use the value of the DISPLAY environment variable.") "use the value of the DISPLAY environment variable.")
#define SHM_TEXT N_("use shared memory") #define SHM_TEXT N_("use shared memory")
#define SHM_LONGTEXT N_( \ #define SHM_LONGTEXT N_( \
"Use shared memory to communicate between vlc and the X server.") "Use shared memory to communicate between VLC and the X server.")
vlc_module_begin(); vlc_module_begin();
add_category_hint( N_("X11"), NULL ); add_category_hint( N_("X11"), NULL );

View File

@ -2,7 +2,7 @@
* xvideo.c : Xvideo plugin for vlc * xvideo.c : Xvideo plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: xvideo.c,v 1.3 2003/02/01 18:54:10 sam Exp $ * $Id: xvideo.c,v 1.4 2003/02/02 00:46:58 sam Exp $
* *
* Authors: Shane Harper <shanegh@optusnet.com.au> * Authors: Shane Harper <shanegh@optusnet.com.au>
* Vincent Seguin <seguin@via.ecp.fr> * Vincent Seguin <seguin@via.ecp.fr>
@ -57,7 +57,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
#define DISPLAY_TEXT N_("X11 display name") #define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_LONGTEXT N_( \ #define DISPLAY_LONGTEXT N_( \
"Specify the X11 hardware display you want to use. By default vlc will " \ "Specify the X11 hardware display you want to use. By default VLC will " \
"use the value of the DISPLAY environment variable.") "use the value of the DISPLAY environment variable.")
#define CHROMA_TEXT N_("XVimage chroma format") #define CHROMA_TEXT N_("XVimage chroma format")
@ -67,7 +67,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
#define SHM_TEXT N_("use shared memory") #define SHM_TEXT N_("use shared memory")
#define SHM_LONGTEXT N_( \ #define SHM_LONGTEXT N_( \
"Use shared memory to communicate between vlc and the X server.") "Use shared memory to communicate between VLC and the X server.")
vlc_module_begin(); vlc_module_begin();
add_category_hint( N_("XVideo"), NULL ); add_category_hint( N_("XVideo"), NULL );

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc 0.73.3\n" "Project-Id-Version: vlc 0.73.3\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-04-18 23:38+0100\n" "PO-Revision-Date: 2002-04-18 23:38+0100\n"
"Last-Translator: Felix Kuehne <fk@aenneburghardt.de><fk@aenneburghardt.de>\n" "Last-Translator: Felix Kuehne <fk@aenneburghardt.de><fk@aenneburghardt.de>\n"
"Language-Team: \n" "Language-Team: \n"
@ -980,7 +980,7 @@ msgid ""
msgstr "" msgstr ""
"\n" "\n"
"Warnung: Falls Sie die Oberfläche nicht mehr benutzen können, öffnen Sie die " "Warnung: Falls Sie die Oberfläche nicht mehr benutzen können, öffnen Sie die "
"DOS-Eingabe, gehen Sie in den Ordner von vlc lassen Sie \"vlc -I win32\" " "DOS-Eingabe, gehen Sie in den Ordner von VLC lassen Sie \"vlc -I win32\" "
"laufen.\n" "laufen.\n"
#. **************************************************************************** #. ****************************************************************************
@ -1662,8 +1662,8 @@ msgid ""
"and 0.4. By default VLC assumes you have the latest VLS. In case you're " "and 0.4. By default VLC assumes you have the latest VLS. In case you're "
"using an old version, select this option." "using an old version, select this option."
msgstr "" msgstr ""
"Das Protokoll um A/52 Ton-Streams zu übertragen, hat zwischen vlc 0.3.x und " "Das Protokoll um A/52 Ton-Streams zu übertragen, hat zwischen VLC 0.3.x und "
"0.4.x gewechselt. Standardmäßig nimmt vlc an, dass sie das neueste VLS " "0.4.x gewechselt. Standardmäßig nimmt VLC an, dass sie das neueste VLS "
"haben. Falls Sie eine alte Version benutzen, aktivieren Sie dies." "haben. Falls Sie eine alte Version benutzen, aktivieren Sie dies."
#: modules/demux/mpeg/ts.c:105 #: modules/demux/mpeg/ts.c:105
@ -1703,8 +1703,8 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Familiar Linux Gtk+ Oberflächen Modul" msgstr "Familiar Linux Gtk+ Oberflächen Modul"
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "vlc (familiar)" msgstr "VLC Media Player"
#: 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
@ -3808,10 +3808,10 @@ msgstr "X11 Bildschirm-Name"
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
"Geben Sie den X11-Bildschirm an, den Sie benutzen wollen.\n" "Geben Sie den X11-Bildschirm an, den Sie benutzen wollen.\n"
"Standardmäßig wird vlc den Wert der DISPLAY environment (=Bildschirm-" "Standardmäßig wird VLC den Wert der DISPLAY environment (=Bildschirm-"
"Umgebung) Variablen benutzen." "Umgebung) Variablen benutzen."
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3851,11 +3851,11 @@ msgstr ""
#: 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 ""
"Geben Sie den X11-Bildschirm an, den Sie benutzen wollen. Standardmäßig wird " "Geben Sie den X11-Bildschirm an, den Sie benutzen wollen. Standardmäßig wird "
"vlc den Wert der DISPLAY environment (=Bildschirm-Umgebung) Variablen " "VLC den Wert der DISPLAY environment (=Bildschirm-Umgebung) Variablen "
"benutzen." "benutzen."
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
@ -3868,11 +3868,11 @@ msgstr "QT Bildschirm-Name"
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
"Geben Sie den QT-Bildschirm an, den Sie benutzen möchten. Standardmäßig wird " "Geben Sie den QT-Bildschirm an, den Sie benutzen möchten. Standardmäßig wird "
"vlc den Wert der DISPLAY environment (=Bildschirm-Umgebung) Variablen " "VLC den Wert der DISPLAY environment (=Bildschirm-Umgebung) Variablen "
"benutzen." "benutzen."
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
@ -3908,9 +3908,9 @@ msgid "use shared memory"
msgstr "Geteilten Speicher benutzen" msgstr "Geteilten Speicher benutzen"
#: 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 ""
"Geteilten Speicher benutzen, um zwischen vlc und dem X Server zu " "Geteilten Speicher benutzen, um zwischen VLC und dem X Server zu "
"kommunizieren." "kommunizieren."
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62

View File

@ -17,7 +17,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-04-22 09:56+0200\n" "PO-Revision-Date: 2002-04-22 09:56+0200\n"
"Last-Translator: Samuel Hocevar <sam@zoy.org>\n" "Last-Translator: Samuel Hocevar <sam@zoy.org>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1535,7 +1535,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3602,7 +3602,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3635,7 +3635,7 @@ msgstr ""
#: 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 ""
@ -3649,7 +3649,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3684,7 +3684,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+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"
@ -1658,8 +1658,8 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "module d'interface Gtk+ Familiar Linux" msgstr "module d'interface Gtk+ Familiar Linux"
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr "Lecteur multimédia VLC"
#: 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
@ -3749,10 +3749,10 @@ msgstr "nom du display X11"
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
"Spécifier le display X11 que vous désirez utiliser.\n" "Spécifier le display X11 que vous désirez utiliser.\n"
"Par défaut vlc utilisera la valeur de la variable d'environnement DISPLAY." "Par défaut VLC utilisera la valeur de la variable d'environnement DISPLAY."
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
msgid "3dfx Glide module" msgid "3dfx Glide module"
@ -3791,10 +3791,10 @@ msgstr ""
#: 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 ""
"Spécifier le display X11 que vous désirez utiliser. Par défaut vlc utilisera " "Spécifier le display X11 que vous désirez utiliser. Par défaut VLC utilisera "
"la valeur de la variable d'environnement DISPLAY." "la valeur de la variable d'environnement DISPLAY."
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
@ -3807,10 +3807,10 @@ msgstr "nom du display Qt Embedded"
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
"Spécifier le display Qt Embedded que vous désirez utiliser. Par défaut vlc " "Spécifier le display Qt Embedded que vous désirez utiliser. Par défaut VLC "
"utilisera la valeur de la variable d'environnement DISPLAY." "utilisera la valeur de la variable d'environnement DISPLAY."
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
@ -3844,9 +3844,9 @@ msgid "use shared memory"
msgstr "utilise la mémoire partagée" msgstr "utilise la mémoire partagée"
#: 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 mémoire partagée pour communiquer entre vlc et le serveur X." "Utiliser la mémoire partagée 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"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2003-01-31 16:35+0100\n" "PO-Revision-Date: 2003-01-31 16:35+0100\n"
"Last-Translator: Vella Bruno\n" "Last-Translator: Vella Bruno\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
@ -1504,7 +1504,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3612,7 +3612,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3645,7 +3645,7 @@ msgstr ""
#: 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 ""
@ -3659,7 +3659,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3694,7 +3694,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
@ -3795,8 +3795,8 @@ msgstr ""
#~ msgid "(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - the VideoLAN Team" #~ msgid "(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - the VideoLAN Team"
#~ msgstr "(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - il Team VideoLAN" #~ msgstr "(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - il Team VideoLAN"
#~ msgid "About vlc" #~ msgid "About VLC"
#~ msgstr "Info su vlc" #~ msgstr "Info su VLC"
#~ msgid "Louder" #~ msgid "Louder"
#~ msgstr "Pi<50> Alto" #~ msgstr "Pi<50> Alto"

View File

@ -4,7 +4,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2003-01-09 02:37+0900\n" "PO-Revision-Date: 2003-01-09 02:37+0900\n"
"Last-Translator: Fumio Nakayama <endymion@ca2.so-net.ne.jp>\n" "Last-Translator: Fumio Nakayama <endymion@ca2.so-net.ne.jp>\n"
"Language-Team: Japanese <ja@li.org>\n" "Language-Team: Japanese <ja@li.org>\n"
@ -1634,7 +1634,7 @@ msgid ""
"using an old version, select this option." "using an old version, select this option."
msgstr "" msgstr ""
"A/52オーディオ・ストリームのプロトコルは、vls 0.3.xと0.4の間で変更になりまし" "A/52オーディオ・ストリームのプロトコルは、vls 0.3.xと0.4の間で変更になりまし"
"た。デフォルトでは、vlcは最新のvlsを想定します。もし、古いバージョンのvlsを使" "た。デフォルトでは、VLCは最新のvlsを想定します。もし、古いバージョンのvlsを使"
"用している場合には、このオプションを選択します。" "用している場合には、このオプションを選択します。"
#: modules/demux/mpeg/ts.c:105 #: modules/demux/mpeg/ts.c:105
@ -1673,7 +1673,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Gtk+インタフェース・モジュール" msgstr "Gtk+インタフェース・モジュール"
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3866,10 +3866,10 @@ msgstr "X11
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
"使用したいX11のハードウェア・ディスプレイを指定します。\n" "使用したいX11のハードウェア・ディスプレイを指定します。\n"
"デフォルトではvlcは、DISPLAY環境変数に設定されているものを使用します。" "デフォルトではVLCは、DISPLAY環境変数に設定されているものを使用します。"
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
msgid "3dfx Glide module" msgid "3dfx Glide module"
@ -3907,11 +3907,11 @@ msgstr ""
#: 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 ""
"使用したいX11のハードウェア・ディスプレイを指定します。\n" "使用したいX11のハードウェア・ディスプレイを指定します。\n"
"デフォルトではvlcは、DISPLAY環境変数に設定されているものを使用します。" "デフォルトではVLCは、DISPLAY環境変数に設定されているものを使用します。"
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
msgid "X11 MGA module" msgid "X11 MGA module"
@ -3923,11 +3923,11 @@ msgstr "
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
"使用したいQtのハードウェア・ディスプレイを指定します。\n" "使用したいQtのハードウェア・ディスプレイを指定します。\n"
"デフォルトではvlcは、DISPLAY環境変数に設定されているものを使用します。" "デフォルトではVLCは、DISPLAY環境変数に設定されているものを使用します。"
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
msgid "QT Embedded drawable" msgid "QT Embedded drawable"
@ -3962,8 +3962,8 @@ msgid "use shared memory"
msgstr "共有メモリの使用" msgstr "共有メモリの使用"
#: 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 "共有メモリをvlcとXサーバの通信のために使用します。" msgstr "共有メモリをVLCとXサーバの通信のために使用します。"
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
msgid "X11" msgid "X11"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-04-20 16:58GMT\n" "PO-Revision-Date: 2002-04-20 16:58GMT\n"
"Last-Translator: Derk-Jan Hartman <thedj@users.sourceforge.net>\n" "Last-Translator: Derk-Jan Hartman <thedj@users.sourceforge.net>\n"
"Language-Team: Nederlands <nl@li.org>\n" "Language-Team: Nederlands <nl@li.org>\n"
@ -1539,7 +1539,7 @@ 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 ""
"Via deze optie kan de IDCT module die vlc gebruikt geselecteerd worden.\n" "Via deze optie kan de IDCT module die VLC gebruikt geselecteerd worden.\n"
"Noot: Standaard wordt automatisch de beste beschikbare methode gekozen." "Noot: Standaard wordt automatisch de beste beschikbare methode gekozen."
#: modules/codec/mpeg_video/parser.c:67 #: modules/codec/mpeg_video/parser.c:67
@ -1548,7 +1548,7 @@ msgid ""
"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 ""
"Selecteer de bewegings compensatie methode die vlc gebruikt voor video " "Selecteer de bewegings compensatie methode die VLC gebruikt voor video "
"decoding. Noot: Standaard wordt automatisch de best beschikbare methode " "decoding. Noot: Standaard wordt automatisch de best beschikbare methode "
"gekozen." "gekozen."
@ -1716,8 +1716,8 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Familiar Linux Gtk+ interface module" msgstr "Familiar Linux Gtk+ interface module"
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "vlc (familiar)" msgstr "VLC media speler"
#: 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
@ -3830,10 +3830,10 @@ msgstr "X11 scherm naam"
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
"Specificeer de X11 hardware scherm dat je wilt gebruiken.\n" "Specificeer de X11 hardware scherm dat je wilt gebruiken.\n"
"Standaard zal vlc de waarde uit de DISPLAY omgevings variable gebruiken." "Standaard zal VLC de waarde uit de DISPLAY omgevings variable gebruiken."
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
msgid "3dfx Glide module" msgid "3dfx Glide module"
@ -3871,11 +3871,11 @@ msgstr ""
#: 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 ""
"Specificeer de X11 hardware scherm dat je wilt gebruiken.\n" "Specificeer de X11 hardware scherm dat je wilt gebruiken.\n"
"Standaard zal vlc de waarde uit de DISPLAY omgevings variable gebruiken." "Standaard zal VLC de waarde uit de DISPLAY omgevings variable gebruiken."
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
msgid "X11 MGA module" msgid "X11 MGA module"
@ -3887,11 +3887,11 @@ msgstr "QT Embedded display namen"
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
"Specificeer het QT Embedded hardware scherm dat je wilt gebruiken.\n" "Specificeer het QT Embedded hardware scherm dat je wilt gebruiken.\n"
"Standaard zal vlc de waarde uit de DISPLAY omgevings variable gebruiken." "Standaard zal VLC de waarde uit de DISPLAY omgevings variable gebruiken."
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
msgid "QT Embedded drawable" msgid "QT Embedded drawable"
@ -3926,9 +3926,9 @@ msgid "use shared memory"
msgstr "gebruik gedeeld geheugen" msgstr "gebruik gedeeld geheugen"
#: 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 ""
"Gebruik gedeeld geheugen voor het communiceren tussen vlc en de X server" "Gebruik gedeeld geheugen voor het communiceren tussen VLC en de X server"
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
msgid "X11" msgid "X11"
@ -4147,8 +4147,8 @@ msgstr "xosd interface module"
#~ msgstr "Verander van Programma" #~ msgstr "Verander van Programma"
#, fuzzy #, fuzzy
#~ msgid "About vlc" #~ msgid "About VLC"
#~ msgstr "Over vlc" #~ msgstr "Over VLC"
#~ msgid "Select title" #~ msgid "Select title"
#~ msgstr "Selecteer Bestand" #~ msgstr "Selecteer Bestand"
@ -4192,7 +4192,7 @@ msgstr "xosd interface module"
#~ "Common choices are builtin and a52." #~ "Common choices are builtin and a52."
#~ msgstr "" #~ msgstr ""
#~ "Deze optie selecteert de audio output methode, die gebruikt wordt door " #~ "Deze optie selecteert de audio output methode, die gebruikt wordt door "
#~ "vlc.\n" #~ "VLC.\n"
#~ "Noot: Standaard wordt automatisch de best beschikbare methode gekozen." #~ "Noot: Standaard wordt automatisch de best beschikbare methode gekozen."
#~ msgid "Jump to previous title" #~ msgid "Jump to previous title"
@ -4207,7 +4207,7 @@ msgstr "xosd interface module"
#~ "mad plugin will use the fastest routine." #~ "mad plugin will use the fastest routine."
#~ msgstr "" #~ msgstr ""
#~ "Specificeer de X11 hardware scherm dat je wilt gebruiken.\n" #~ "Specificeer de X11 hardware scherm dat je wilt gebruiken.\n"
#~ "Standaard zal vlc de waarde uit de DISPLAY omgevings variable gebruiken." #~ "Standaard zal VLC de waarde uit de DISPLAY omgevings variable gebruiken."
#~ msgid "Transponder settings" #~ msgid "Transponder settings"
#~ msgstr "Transponder instellingen" #~ msgstr "Transponder instellingen"
@ -4246,16 +4246,16 @@ msgstr "xosd interface module"
#, fuzzy #, fuzzy
#~ msgid "" #~ msgid ""
#~ "This option allows you to select the video filter module that vlc will " #~ "This option allows you to select the video filter module that VLC will "
#~ "use.\n" #~ "use.\n"
#~ "Note that by default no video filter is used." #~ "Note that by default no video filter is used."
#~ msgstr "" #~ msgstr ""
#~ "Selecteer de video output methode die vlc gebruikt.\n" #~ "Selecteer de video output methode die VLC gebruikt.\n"
#~ "Noot: Standaard wordt automatisch de best beschikbare methode gekozen." #~ "Noot: Standaard wordt automatisch de best beschikbare methode gekozen."
#, fuzzy #, fuzzy
#~ msgid "" #~ msgid ""
#~ "This option allows you to set the VCD device that vlc will try to use by " #~ "This option allows you to set the VCD device that VLC will try to use by "
#~ "default." #~ "default."
#~ msgstr "" #~ msgstr ""
#~ "Stel het standaard zoekpad in waar de interface naar bestanden moet " #~ "Stel het standaard zoekpad in waar de interface naar bestanden moet "

View File

@ -4,7 +4,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-28-02 23.35+0100\n" "PO-Revision-Date: 2002-28-02 23.35+0100\n"
"Last-Translator: Sigmund Augdal <sigmunau@idi.ntnu.no>.\n" "Last-Translator: Sigmund Augdal <sigmunau@idi.ntnu.no>.\n"
"Language-Team: \n" "Language-Team: \n"
@ -1549,7 +1549,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Standard grensesnitt: " msgstr "Standard grensesnitt: "
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3356,9 +3356,8 @@ msgid "Port:"
msgstr "Port" msgstr "Port"
#: modules/gui/win32/strings.cpp:173 #: modules/gui/win32/strings.cpp:173
#, fuzzy
msgid "vlcs" msgid "vlcs"
msgstr "vls" msgstr ""
#: modules/gui/win32/strings.cpp:182 #: modules/gui/win32/strings.cpp:182
#, fuzzy #, fuzzy
@ -3793,7 +3792,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3827,7 +3826,7 @@ msgstr ""
#: 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 ""
@ -3841,7 +3840,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3878,7 +3877,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-07-12 11:49+0100\n" "PO-Revision-Date: 2002-07-12 11:49+0100\n"
"Last-Translator: Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>\n" "Last-Translator: Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>\n"
"Language-Team: polish <pl@li.org>\n" "Language-Team: polish <pl@li.org>\n"
@ -838,7 +838,6 @@ msgstr ""
" urz±dzenie VCD\n" " urz±dzenie VCD\n"
" udpstream:[@[<przypisany adres>][:<przypisany port>]]\n" " udpstream:[@[<przypisany adres>][:<przypisany port>]]\n"
" strumieñ UDP wysy³any przez VLS\n" " strumieñ UDP wysy³any przez VLS\n"
" vlc:loop wykonywanie pêtli listy odtwarzania\n"
" vlc:pause zatrzymanie odtwarzania obiektów listy\n" " vlc:pause zatrzymanie odtwarzania obiektów listy\n"
" vlc:quit wyj¶cie z VLC\n" " vlc:quit wyj¶cie z VLC\n"
@ -1664,7 +1663,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Modu³ interfejsu Gtk+" msgstr "Modu³ interfejsu Gtk+"
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3910,10 +3909,10 @@ msgstr "nazwa ekranu X11"
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
"Okre¶la u¿ywany ekran sprzêtowy X11.\n" "Okre¶la u¿ywany ekran sprzêtowy X11.\n"
"Domy¶lnie vlc u¿yje warto¶ci ze zmiennej ¶rodowiskowej DISPLAY." "Domy¶lnie VLC u¿yje warto¶ci ze zmiennej ¶rodowiskowej DISPLAY."
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
msgid "3dfx Glide module" msgid "3dfx Glide module"
@ -3951,10 +3950,10 @@ msgstr ""
#: 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 ""
"Okre¶la u¿ywany ekran sprzêtowy X11. Domy¶lnie vlc u¿yje warto¶ci ze " "Okre¶la u¿ywany ekran sprzêtowy X11. Domy¶lnie VLC u¿yje warto¶ci ze "
"zmiennej ¶rodowiskowej DISPLAY." "zmiennej ¶rodowiskowej DISPLAY."
#: modules/video_output/mga/xmga.c:107 #: modules/video_output/mga/xmga.c:107
@ -3969,10 +3968,10 @@ msgstr "nazwa ekranu X11"
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
#, fuzzy #, fuzzy
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 ""
"Okre¶la u¿ywany ekran sprzêtowy X11. Domy¶lnie vlc u¿yje warto¶ci ze " "Okre¶la u¿ywany ekran sprzêtowy X11. Domy¶lnie VLC u¿yje warto¶ci ze "
"zmiennej ¶rodowiskowej DISPLAY." "zmiennej ¶rodowiskowej DISPLAY."
#: modules/video_output/qte/qte.cpp:92 #: modules/video_output/qte/qte.cpp:92
@ -4012,8 +4011,8 @@ msgid "use shared memory"
msgstr "u¿ywanie pamiêci wspó³dzielonej" msgstr "u¿ywanie pamiêci wspó³dzielonej"
#: 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 "U¿ywa pamiêæ wspó³dzielon± do komunikacji pomiêdzy vlc a serwerem X" msgstr "U¿ywa pamiêæ wspó³dzielon± do komunikacji pomiêdzy VLC a serwerem X"
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
msgid "X11" msgid "X11"

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2001-02-19 19:58+03:00\n" "PO-Revision-Date: 2001-02-19 19:58+03:00\n"
"Last-Translator: Valek Filippov <frob@df.ru>\n" "Last-Translator: Valek Filippov <frob@df.ru>\n"
"Language-Team: Russian <ru@li.org>\n" "Language-Team: Russian <ru@li.org>\n"
@ -1505,7 +1505,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3659,7 +3659,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3692,7 +3692,7 @@ msgstr ""
#: 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 ""
@ -3706,7 +3706,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3741,7 +3741,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc\n" "Project-Id-Version: vlc\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: 2002-07-23 23:00+0200\n" "PO-Revision-Date: 2002-07-23 23:00+0200\n"
"Last-Translator: Joel Arvidsson <dogai@privat.utfors.se>\n" "Last-Translator: Joel Arvidsson <dogai@privat.utfors.se>\n"
"Language-Team: \n" "Language-Team: \n"
@ -1507,7 +1507,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -1597,7 +1597,7 @@ msgstr ""
#: modules/gui/familiar/interface.c:459 modules/gui/gtk/gtk_interface.c:1619 #: modules/gui/familiar/interface.c:459 modules/gui/gtk/gtk_interface.c:1619
#: modules/gui/win32/strings.cpp:7 #: modules/gui/win32/strings.cpp:7
msgid "About" msgid "About"
msgstr "Om vlc" msgstr "Om VLC"
#: modules/gui/familiar/interface.c:231 modules/gui/win32/strings.cpp:168 #: modules/gui/familiar/interface.c:231 modules/gui/win32/strings.cpp:168
msgid "URL:" msgid "URL:"
@ -2453,7 +2453,7 @@ msgstr "_Avsluta"
#: modules/gui/gtk/gtk_interface.c:266 modules/gui/win32/strings.cpp:124 #: modules/gui/gtk/gtk_interface.c:266 modules/gui/win32/strings.cpp:124
msgid "Exit the program" msgid "Exit the program"
msgstr "Avsluta vlc" msgstr "Avsluta VLC"
#: modules/gui/gtk/gtk_interface.c:273 #: modules/gui/gtk/gtk_interface.c:273
msgid "_View" msgid "_View"
@ -2485,11 +2485,11 @@ msgstr ""
#: modules/gui/gtk/gtk_interface.c:592 modules/gui/gtk/gtk_interface.c:1476 #: modules/gui/gtk/gtk_interface.c:592 modules/gui/gtk/gtk_interface.c:1476
msgid "_About..." msgid "_About..."
msgstr "_Om vlc..." msgstr "_Om VLC..."
#: modules/gui/gtk/gtk_interface.c:600 modules/gui/win32/strings.cpp:132 #: modules/gui/gtk/gtk_interface.c:600 modules/gui/win32/strings.cpp:132
msgid "About this application" msgid "About this application"
msgstr "Om vlc" msgstr "Om VLC"
#: modules/gui/gtk/gtk_interface.c:930 modules/gui/win32/strings.cpp:41 #: modules/gui/gtk/gtk_interface.c:930 modules/gui/win32/strings.cpp:41
msgid "Channel:" msgid "Channel:"
@ -2682,9 +2682,8 @@ msgid "About VLC Media Player"
msgstr "" msgstr ""
#: modules/gui/macosx/intf.m:269 #: modules/gui/macosx/intf.m:269
#, fuzzy
msgid "Hide VLC" msgid "Hide VLC"
msgstr "Gšm vlc" msgstr "Gšm VLC"
#: modules/gui/macosx/intf.m:270 #: modules/gui/macosx/intf.m:270
msgid "Hide Others" msgid "Hide Others"
@ -2697,7 +2696,7 @@ msgstr "Visa alla"
#: modules/gui/macosx/intf.m:272 #: modules/gui/macosx/intf.m:272
#, fuzzy #, fuzzy
msgid "Quit VLC" msgid "Quit VLC"
msgstr "Avsluta vlc" msgstr "Avsluta VLC"
#: modules/gui/macosx/intf.m:275 #: modules/gui/macosx/intf.m:275
#, fuzzy #, fuzzy
@ -3181,7 +3180,7 @@ msgstr ""
#: modules/gui/win32/strings.cpp:131 #: modules/gui/win32/strings.cpp:131
#, fuzzy #, fuzzy
msgid "About..." msgid "About..."
msgstr "_Om vlc..." msgstr "_Om VLC..."
#: modules/gui/win32/strings.cpp:136 #: modules/gui/win32/strings.cpp:136
#, fuzzy #, fuzzy
@ -3655,7 +3654,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3688,7 +3687,7 @@ msgstr ""
#: 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 ""
@ -3702,7 +3701,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3737,7 +3736,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62
@ -3855,10 +3854,6 @@ msgstr ""
#~ msgid "Previous File" #~ msgid "Previous File"
#~ msgstr "FšregŒende fil" #~ msgstr "FšregŒende fil"
#, fuzzy
#~ msgid "Select program"
#~ msgstr "Avsluta vlc"
#, fuzzy #, fuzzy
#~ msgid "Toggle fullscreen" #~ msgid "Toggle fullscreen"
#~ msgstr "HelskŠrm" #~ msgstr "HelskŠrm"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2003-02-02 01:26+0100\n" "POT-Creation-Date: 2003-02-02 01:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -1505,7 +1505,7 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:66 #: modules/gui/familiar/interface.c:66
msgid "vlc (familiar)" msgid "VLC media player"
msgstr "" msgstr ""
#: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387 #: modules/gui/familiar/interface.c:90 modules/gui/macosx/open.m:387
@ -3572,7 +3572,7 @@ msgstr ""
#: modules/video_output/ggi.c:57 #: modules/video_output/ggi.c:57
msgid "" msgid ""
"Specify the X11 hardware display you want to use.\n" "Specify the X11 hardware display you want to use.\n"
"By default vlc will use the value of the DISPLAY environment variable." "By default VLC will use the value of the DISPLAY environment variable."
msgstr "" msgstr ""
#: modules/video_output/glide.c:64 #: modules/video_output/glide.c:64
@ -3605,7 +3605,7 @@ msgstr ""
#: 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 ""
@ -3619,7 +3619,7 @@ msgstr ""
#: modules/video_output/qte/qte.cpp:90 #: modules/video_output/qte/qte.cpp:90
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 ""
@ -3654,7 +3654,7 @@ msgid "use shared memory"
msgstr "" msgstr ""
#: 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 ""
#: modules/video_output/x11/x11.c:62 #: modules/video_output/x11/x11.c:62