Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
76c72672
Commit
76c72672
authored
Jul 12, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark --language as obsolete
parent
e64f3930
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
136 deletions
+1
-136
src/libvlc-module.c
src/libvlc-module.c
+1
-136
No files found.
src/libvlc-module.c
View file @
76c72672
...
@@ -44,134 +44,6 @@
...
@@ -44,134 +44,6 @@
#include "vlc_keys.h"
#include "vlc_keys.h"
#include "vlc_meta.h"
#include "vlc_meta.h"
#if defined (WIN32) || defined (__APPLE__)
static
const
char
*
const
ppsz_language
[]
=
{
"auto"
,
"en"
,
"ar"
,
"bn"
,
"pt_BR"
,
"en_GB"
,
"el"
,
"bg"
,
"ca"
,
"zh_TW"
,
"cs"
,
"da"
,
"nl"
,
"fi"
,
"et"
,
"eu"
,
"fr"
,
"ga"
,
"gd"
,
"gl"
,
"ka"
,
"de"
,
"he"
,
"hr"
,
"hu"
,
"hy"
,
"is"
,
"id"
,
"it"
,
"ja"
,
"ko"
,
"lt"
,
"mn"
,
"ms"
,
"nb"
,
"nn"
,
"kk"
,
"km"
,
"ne"
,
"oc"
,
"fa"
,
"pl"
,
"pt_PT"
,
"pa"
,
"ro"
,
"ru"
,
"zh_CN"
,
"si"
,
"sr"
,
"sk"
,
"sl"
,
"ckb"
,
"es"
,
"sv"
,
"te"
,
"tr"
,
"uk"
,
"vi"
,
"wa"
,
};
static
const
char
*
const
ppsz_language_text
[]
=
{
N_
(
"Auto"
),
"American English"
,
"ﻉﺮﺒﻳ"
,
"বাংলা"
,
"Português Brasileiro"
,
"British English"
,
"Νέα Ελληνικά"
,
"български език"
,
"Català"
,
"正體中文"
,
"Čeština"
,
"Dansk"
,
"Nederlands"
,
"Suomi"
,
"eesti keel"
,
"Euskara"
,
"Français"
,
"Gaeilge"
,
"Gàidhlig"
,
"Galego"
,
"ქართული"
,
"Deutsch"
,
"עברית"
,
"hrvatski"
,
"Magyar"
,
"հայերեն"
,
"íslenska"
,
"Bahasa Indonesia"
,
"Italiano"
,
"日本語"
,
"한국어"
,
"lietuvių"
,
"Монгол хэл"
,
"Melayu"
,
"Bokmål"
,
"Nynorsk"
,
"Қазақ тілі"
,
"ភាសាខ្មែរ"
,
"नेपाली"
,
"Occitan"
,
"ﻑﺍﺮﺳی"
,
"Polski"
,
"Português"
,
"ਪੰਜਾਬੀ"
,
"Română"
,
"Русский"
,
"简体中文"
,
"සිංහල"
,
"српски"
,
"Slovensky"
,
"slovenščina"
,
"کوردیی سۆرانی"
,
"Español"
,
"Svenska"
,
"తెలుగు"
,
"Türkçe"
,
"украї́нська мо́ва"
,
"tiếng Việt"
,
"Walon"
,
};
#endif
static
const
char
*
const
ppsz_snap_formats
[]
=
static
const
char
*
const
ppsz_snap_formats
[]
=
{
"png"
,
"jpg"
,
"tiff"
};
{
"png"
,
"jpg"
,
"tiff"
};
...
@@ -232,11 +104,6 @@ static const char *const ppsz_snap_formats[] =
...
@@ -232,11 +104,6 @@ static const char *const ppsz_snap_formats[] =
#define OPEN_LONGTEXT N_( \
#define OPEN_LONGTEXT N_( \
"This stream will always be opened at VLC startup." )
"This stream will always be opened at VLC startup." )
#define LANGUAGE_TEXT N_("Language")
#define LANGUAGE_LONGTEXT N_( "You can manually select a language for the " \
"interface. The system language is auto-detected if \"auto\" is " \
"specified here." )
#define COLOR_TEXT N_("Color messages")
#define COLOR_TEXT N_("Color messages")
#define COLOR_LONGTEXT N_( \
#define COLOR_LONGTEXT N_( \
"This enables colorization of the messages sent to the console " \
"This enables colorization of the messages sent to the console " \
...
@@ -2229,9 +2096,7 @@ vlc_module_begin ()
...
@@ -2229,9 +2096,7 @@ vlc_module_begin ()
#endif
#endif
#if defined (WIN32) || defined (__APPLE__)
#if defined (WIN32) || defined (__APPLE__)
add_string
(
"language"
,
"auto"
,
LANGUAGE_TEXT
,
LANGUAGE_LONGTEXT
,
add_obsolete_string
(
"language"
)
/* since 2.1.0 */
false
)
change_string_list
(
ppsz_language
,
ppsz_language_text
,
0
)
#endif
#endif
add_bool
(
"color"
,
true
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
true
)
add_bool
(
"color"
,
true
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
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