Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
3aabcacd
Commit
3aabcacd
authored
Feb 02, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./po/*: more s/vlc/VLC/ changes.
parent
c0fc3bc2
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
126 additions
and
133 deletions
+126
-133
modules/gui/familiar/familiar.glade
modules/gui/familiar/familiar.glade
+1
-1
modules/gui/familiar/interface.c
modules/gui/familiar/interface.c
+1
-1
modules/video_output/ggi.c
modules/video_output/ggi.c
+2
-2
modules/video_output/mga/xmga.c
modules/video_output/mga/xmga.c
+2
-2
modules/video_output/qte/qte.cpp
modules/video_output/qte/qte.cpp
+2
-2
modules/video_output/x11/x11.c
modules/video_output/x11/x11.c
+3
-3
modules/video_output/x11/xvideo.c
modules/video_output/x11/xvideo.c
+3
-3
po/de.po
po/de.po
+14
-14
po/en_GB.po
po/en_GB.po
+6
-6
po/fr.po
po/fr.po
+11
-11
po/it.po
po/it.po
+8
-8
po/ja.po
po/ja.po
+11
-11
po/nl.po
po/nl.po
+20
-20
po/no.po
po/no.po
+7
-8
po/pl.po
po/pl.po
+10
-11
po/ru.po
po/ru.po
+6
-6
po/sv.po
po/sv.po
+13
-18
po/vlc.pot
po/vlc.pot
+6
-6
No files found.
modules/gui/familiar/familiar.glade
View file @
3aabcacd
...
@@ -25,7 +25,7 @@
...
@@ -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>
...
...
modules/gui/familiar/interface.c
View file @
3aabcacd
...
@@ -63,7 +63,7 @@ create_familiar (void)
...
@@ -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
);
...
...
modules/video_output/ggi.c
View file @
3aabcacd
...
@@ -2,7 +2,7 @@
...
@@ -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 * );
...
@@ -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
();
...
...
modules/video_output/mga/xmga.c
View file @
3aabcacd
...
@@ -2,7 +2,7 @@
...
@@ -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 * );
...
@@ -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
();
...
...
modules/video_output/qte/qte.cpp
View file @
3aabcacd
...
@@ -2,7 +2,7 @@
...
@@ -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"
...
@@ -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_( \
...
...
modules/video_output/x11/x11.c
View file @
3aabcacd
...
@@ -2,7 +2,7 @@
...
@@ -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 * );
...
@@ -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
);
...
...
modules/video_output/x11/xvideo.c
View file @
3aabcacd
...
@@ -2,7 +2,7 @@
...
@@ -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 * );
...
@@ -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 * );
...
@@ -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
);
...
...
po/de.po
View file @
3aabcacd
...
@@ -7,7 +7,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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 ""
...
@@ -980,7 +980,7 @@ msgid ""
msgstr ""
msgstr ""
"\n"
"\n"
"Warnung: Falls Sie die Oberflche nicht mehr benutzen knnen, ffnen Sie die "
"Warnung: Falls Sie die Oberflche nicht mehr benutzen knnen, 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 ""
...
@@ -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. Standardmig nimmt
vlc
an, dass sie das neueste VLS "
"0.4.x gewechselt. Standardmig 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"
...
@@ -1703,8 +1703,8 @@ msgid "Familiar Linux Gtk+ interface module"
msgstr "Familiar Linux Gtk+ Oberflchen Modul"
msgstr "Familiar Linux Gtk+ Oberflchen 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"
...
@@ -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"
"Standardmig wird
vlc
den Wert der DISPLAY environment (=Bildschirm-"
"Standardmig 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 ""
...
@@ -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. Standardmig wird "
"Geben Sie den X11-Bildschirm an, den Sie benutzen wollen. Standardmig 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"
...
@@ -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 mchten. Standardmig wird "
"Geben Sie den QT-Bildschirm an, den Sie benutzen mchten. Standardmig 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"
...
@@ -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
...
...
po/en_GB.po
View file @
3aabcacd
...
@@ -17,7 +17,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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
...
...
po/fr.po
View file @
3aabcacd
...
@@ -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-02 01:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 multimdia 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"
...
@@ -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 ""
"Spcifier le display X11 que vous dsirez utiliser.\n"
"Spcifier le display X11 que vous dsirez utiliser.\n"
"Par dfaut
vlc
utilisera la valeur de la variable d'environnement DISPLAY."
"Par dfaut
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 ""
...
@@ -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 ""
"Spcifier le display X11 que vous dsirez utiliser. Par dfaut
vlc
utilisera "
"Spcifier le display X11 que vous dsirez utiliser. Par dfaut
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"
...
@@ -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 ""
"Spcifier le display Qt Embedded que vous dsirez utiliser. Par dfaut
vlc
"
"Spcifier le display Qt Embedded que vous dsirez utiliser. Par dfaut
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"
...
@@ -3844,9 +3844,9 @@ msgid "use shared memory"
msgstr "utilise la mmoire partage"
msgstr "utilise la mmoire partage"
#: 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"
...
...
po/it.po
View file @
3aabcacd
...
@@ -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-02 01:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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 ""
...
@@ -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 Alto"
#~ msgstr "Pi Alto"
...
...
po/ja.po
View file @
3aabcacd
...
@@ -4,7 +4,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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 ""
...
@@ -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"
...
@@ -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
...
@@ -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 ""
...
@@ -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 "
...
@@ -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"
...
@@ -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"
...
...
po/nl.po
View file @
3aabcacd
...
@@ -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-02 01:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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"
...
@@ -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 ""
...
@@ -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"
...
@@ -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"
...
@@ -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"
...
@@ -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"
...
@@ -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"
...
@@ -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"
...
@@ -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 "
...
...
po/no.po
View file @
3aabcacd
...
@@ -4,7 +4,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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:"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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
...
...
po/pl.po
View file @
3aabcacd
...
@@ -5,7 +5,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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 ""
...
@@ -838,7 +838,6 @@ msgstr ""
" urzdzenie VCD\n"
" urzdzenie VCD\n"
" udpstream:[@[<przypisany adres>][:<przypisany port>]]\n"
" udpstream:[@[<przypisany adres>][:<przypisany port>]]\n"
" strumie UDP wysyany przez VLS\n"
" strumie UDP wysyany przez VLS\n"
" vlc:loop wykonywanie ptli listy odtwarzania\n"
" vlc:pause zatrzymanie odtwarzania obiektw listy\n"
" vlc:pause zatrzymanie odtwarzania obiektw listy\n"
" vlc:quit wyjcie z VLC\n"
" vlc:quit wyjcie z VLC\n"
...
@@ -1664,7 +1663,7 @@ msgid "Familiar Linux Gtk+ interface module"
...
@@ -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"
...
@@ -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 ""
"Okrela uywany ekran sprztowy X11.\n"
"Okrela uywany ekran sprztowy X11.\n"
"Domylnie
vlc
uyje wartoci ze zmiennej rodowiskowej DISPLAY."
"Domylnie
VLC
uyje wartoci 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 ""
...
@@ -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 ""
"Okrela uywany ekran sprztowy X11. Domylnie
vlc
uyje wartoci ze "
"Okrela uywany ekran sprztowy X11. Domylnie
VLC
uyje wartoci 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"
...
@@ -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 ""
"Okrela uywany ekran sprztowy X11. Domylnie
vlc
uyje wartoci ze "
"Okrela uywany ekran sprztowy X11. Domylnie
VLC
uyje wartoci 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"
...
@@ -4012,8 +4011,8 @@ msgid "use shared memory"
msgstr "uywanie pamici wspdzielonej"
msgstr "uywanie pamici wspdzielonej"
#: 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 "Uywa pami wspdzielon do komunikacji pomidzy
vlc
a serwerem X"
msgstr "Uywa pami wspdzielon do komunikacji pomidzy
VLC
a serwerem X"
#: modules/video_output/x11/x11.c:62
#: modules/video_output/x11/x11.c:62
msgid "X11"
msgid "X11"
...
...
po/ru.po
View file @
3aabcacd
...
@@ -5,7 +5,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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
...
...
po/sv.po
View file @
3aabcacd
...
@@ -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-02 01:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 ""
...
@@ -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"
...
@@ -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 ""
...
@@ -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"
...
@@ -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 "Gm
vlc
"
msgstr "Gm
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"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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 ""
...
@@ -3855,10 +3854,6 @@ msgstr ""
#~ msgid "Previous File"
#~ msgid "Previous File"
#~ msgstr "Fregende fil"
#~ msgstr "Fregende fil"
#, fuzzy
#~ msgid "Select program"
#~ msgstr "Avsluta vlc"
#, fuzzy
#, fuzzy
#~ msgid "Toggle fullscreen"
#~ msgid "Toggle fullscreen"
#~ msgstr "Helskrm"
#~ msgstr "Helskrm"
...
...
po/vlc.pot
View file @
3aabcacd
...
@@ -7,7 +7,7 @@
...
@@ -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:
2
6+0100\n"
"POT-Creation-Date: 2003-02-02 01:
4
6+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"
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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 ""
...
@@ -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"
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment