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
e8325b39
Commit
e8325b39
authored
Apr 06, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled the translation configuration variable on OS X since it doesn't
work.
parent
0c512e55
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/libvlc.c
src/libvlc.c
+3
-1
src/libvlc.h
src/libvlc.h
+3
-1
No files found.
src/libvlc.c
View file @
e8325b39
...
...
@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.7
2 2003/03/29 12:22:15 gbazin
Exp $
* $Id: libvlc.c,v 1.7
3 2003/04/06 14:12:46 massiot
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -322,6 +322,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
}
/* Check for translation config option */
#ifndef SYS_DARWIN
if
(
!
config_GetInt
(
p_vlc
,
"translation"
)
)
{
/* Reset the default domain */
...
...
@@ -332,6 +333,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
textdomain
(
"dummy"
);
#endif
}
#endif
/*
* Load the builtins and plugins into the module_bank.
...
...
src/libvlc.h
View file @
e8325b39
...
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.5
3 2003/03/30 16:26:42 gbazin
Exp $
* $Id: libvlc.h,v 1.5
4 2003/04/06 14:12:46 massiot
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -448,7 +448,9 @@ vlc_module_begin();
add_integer_with_short
(
"verbose"
,
'v'
,
-
1
,
NULL
,
VERBOSE_TEXT
,
VERBOSE_LONGTEXT
,
VLC_FALSE
);
add_bool_with_short
(
"quiet"
,
'q'
,
0
,
NULL
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
VLC_TRUE
);
#ifndef SYS_DARWIN
add_bool
(
"translation"
,
1
,
NULL
,
TRANSLATION_TEXT
,
TRANSLATION_LONGTEXT
,
VLC_FALSE
);
#endif
add_bool
(
"color"
,
0
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"advanced"
,
0
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
VLC_FALSE
);
add_string
(
"search-path"
,
NULL
,
NULL
,
INTF_PATH_TEXT
,
INTF_PATH_LONGTEXT
,
VLC_TRUE
);
...
...
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