Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
d4d94351
Commit
d4d94351
authored
Jun 17, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forward-port of [11453] plus a small string-enhancement to src/libvlc.h
parent
5d88ca9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
20 deletions
+4
-20
configure.ac
configure.ac
+1
-1
src/libvlc.h
src/libvlc.h
+3
-6
src/misc/darwin_specific.m
src/misc/darwin_specific.m
+0
-13
No files found.
configure.ac
View file @
d4d94351
...
...
@@ -206,7 +206,7 @@ AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
dnl
dnl Gettext stuff
dnl
ALL_LINGUAS="
bn ca da de el en_GB es fr hi hu it ja my ne nl no pl ps pt_BR ru sv tet tl
zh_TW"
ALL_LINGUAS="
ca da de en_GB es fr it ja nl pt_BR
zh_TW"
AM_GNU_GETTEXT_VERSION(0.11.5)
AM_GNU_GETTEXT
if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
...
...
src/libvlc.h
View file @
d4d94351
...
...
@@ -27,13 +27,10 @@
#include "vlc_keys.h"
static
char
*
ppsz_language
[]
=
{
"auto"
,
"en"
,
"en_GB"
,
"bn"
,
"ca"
,
"da"
,
"de"
,
"el"
,
"es"
,
"fr"
,
"hi"
,
"hu"
,
"it"
,
"ja"
,
"my"
,
"ne"
,
"nl"
,
"no"
,
"pl"
,
"ps"
,
"pt_BR"
,
"ru"
,
"sv"
,
"tet"
,
"tl"
,
"zh_TW"
};
{
"auto"
,
"en"
,
"en_GB"
,
"ca"
,
"da"
,
"de"
,
"es"
,
"fr"
,
"it"
,
"ja"
,
"nl"
,
"pt_BR"
,
"zh_TW"
};
static
char
*
ppsz_language_text
[]
=
{
N_
(
"Auto"
),
N_
(
"American"
),
N_
(
"British"
),
N_
(
"Bengali"
),
N_
(
"Catalan"
),
N_
(
"Danish"
),
N_
(
"German"
),
N_
(
"Greek"
),
N_
(
"Spanish"
),
N_
(
"French"
),
N_
(
"Hindi"
),
N_
(
"Hungarian"
),
N_
(
"Italian"
),
N_
(
"Japanese"
),
N_
(
"Burmese"
),
N_
(
"Nepali"
),
N_
(
"Dutch"
),
N_
(
"Norwegian"
),
N_
(
"Polish"
),
N_
(
"Pashto"
),
N_
(
"Brazilian"
),
N_
(
"Russian"
),
N_
(
"Swedish"
),
N_
(
"Tetum"
),
N_
(
"Tagalog"
),
N_
(
"Chinese Traditional"
)
};
{
N_
(
"Auto"
),
N_
(
"American English"
),
N_
(
"British English"
),
N_
(
"Catalan"
),
N_
(
"Danish"
),
N_
(
"German"
),
N_
(
"Spanish"
),
N_
(
"French"
),
N_
(
"Italian"
),
N_
(
"Japanese"
),
N_
(
"Dutch"
),
N_
(
"Brazilian Portuguese"
),
N_
(
"Chinese Traditional"
)
};
static
char
*
ppsz_snap_formats
[]
=
{
"png"
,
"jpg"
};
...
...
src/misc/darwin_specific.m
View file @
d4d94351
...
...
@@ -40,30 +40,17 @@ static int FindLanguage( const char * psz_lang )
const
char
**
ppsz_parser
;
const
char
*
ppsz_all
[]
=
{
"Bengali"
,
"bn"
,
"Catalan"
,
"ca"
,
"Danish"
,
"da"
,
"German"
,
"de"
,
"Modern Greek"
,
"el"
,
"British"
,
"en_GB"
,
"English"
,
"en"
,
"Spanish"
,
"es"
,
"French"
,
"fr"
,
"Hindi"
,
"hi"
,
"Hungarian"
,
"hu"
,
"Italian"
,
"it"
,
"Japanese"
,
"ja"
,
"Burmese"
,
"my"
,
"Nepali"
,
"ne"
,
"Dutch"
,
"nl"
,
"Norwegian"
,
"no"
,
"Polish"
,
"pl"
,
"Pashto"
,
"ps"
,
"Brazillian Portuguese"
,
"pt_BR"
,
"Russian"
,
"ru"
,
"Swedish"
,
"sv"
,
"Tetum"
,
"tet"
,
"Tagalog"
,
"tl"
,
"Chinese Traditional"
,
"zh_TW"
,
NULL
};
...
...
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