Commit 7bb9af28 authored by Christophe Mutricy's avatar Christophe Mutricy

Add Slovak localisation by Marian Hikanik. Many thanks to him

parent d605f165
...@@ -29,6 +29,7 @@ Interfaces: ...@@ -29,6 +29,7 @@ Interfaces:
Localization: Localization:
* Add Czech * Add Czech
* Add Slovak
Developers: Developers:
* Updates to the libvlc API * Updates to the libvlc API
......
...@@ -91,6 +91,7 @@ Laurent Mutricy <laurent.mutricy at ecl2005 dot ec-lyon dot fr> - HTTP interface ...@@ -91,6 +91,7 @@ Laurent Mutricy <laurent.mutricy at ecl2005 dot ec-lyon dot fr> - HTTP interface
Lorena Gomes - Catalan translation Lorena Gomes - Catalan translation
Marc Nolette <nolette at videotron.ca> - PVR support in DirectShow input Marc Nolette <nolette at videotron.ca> - PVR support in DirectShow input
Marco Munderloh <Marco.Munderloh at web.de> - HTTP fix for Win32 to URL filenames Marco Munderloh <Marco.Munderloh at web.de> - HTTP fix for Win32 to URL filenames
Marin Hikaník- <podnety _at_ mojepreklady _dot_ net> - Slovak localisation
Mark Gritter <mgritter at kealia.com> - fix for netlist packet leak in demuxPSI Mark Gritter <mgritter at kealia.com> - fix for netlist packet leak in demuxPSI
Markus Kern <markus-kern at gmx dot net> - video output window fixes (win32) Markus Kern <markus-kern at gmx dot net> - video output window fixes (win32)
Markus Kuespert <ltlBeBoy at beosmail.com> - BeOS CSS support Markus Kuespert <ltlBeBoy at beosmail.com> - BeOS CSS support
......
This diff is collapsed.
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#if defined (WIN32) || defined (__APPLE__) #if defined (WIN32) || defined (__APPLE__)
static char *ppsz_language[] = static char *ppsz_language[] =
{ "auto", "en", "en_GB", "ca", "cs", "da", "de", "es", "fr", "gl", "he", "hu", { "auto", "en", "en_GB", "ca", "cs", "da", "de", "es", "fr", "gl", "he", "hu",
"it", "ja", "ka", "ko", "nl", "oc", "pt_BR", "ro", "ru", "sv", "tr", "it", "ja", "ka", "ko", "nl", "oc", "pt_BR", "ro", "ru", "sk", "sv", "tr",
"zh_CN", "zh_TW" }; "zh_CN", "zh_TW" };
static char *ppsz_language_text[] = static char *ppsz_language_text[] =
...@@ -39,7 +39,8 @@ N_("Catalan"), N_("Czech"), N_("Danish"), N_("German"), N_("Spanish"), ...@@ -39,7 +39,8 @@ N_("Catalan"), N_("Czech"), N_("Danish"), N_("German"), N_("Spanish"),
N_("French"), N_("Galician"), N_("Hebrew"), N_("Hungarian"),N_("Italian"), N_("French"), N_("Galician"), N_("Hebrew"), N_("Hungarian"),N_("Italian"),
N_("Japanese"),N_("Georgian"), N_("Korean"), N_("Dutch"), N_("Occitan"), N_("Japanese"),N_("Georgian"), N_("Korean"), N_("Dutch"), N_("Occitan"),
N_("Brazilian Portuguese"), N_("Romanian"), N_("Russian"), N_("Swedish"), N_("Brazilian Portuguese"), N_("Romanian"), N_("Russian"), N_("Swedish"),
N_("Turkish"), N_("Simplified Chinese"), N_("Chinese Traditional") }; N_("Slovak"), N_("Turkish"), N_("Simplified Chinese"),
N_("Chinese Traditional") };
#endif #endif
static char *ppsz_snap_formats[] = static char *ppsz_snap_formats[] =
......
...@@ -62,6 +62,7 @@ static int FindLanguage( const char * psz_lang ) ...@@ -62,6 +62,7 @@ static int FindLanguage( const char * psz_lang )
"Brazilian Portuguese", "pt_BR", "Brazilian Portuguese", "pt_BR",
"Romanian", "ro", "Romanian", "ro",
"Russian", "ru", "Russian", "ru",
"Slovak", "sk",
"Swedish", "sv", "Swedish", "sv",
"Turkish", "tr", "Turkish", "tr",
"Simplified Chinese", "zh_CN", "Simplified Chinese", "zh_CN",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment