Commit b5b04149 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* src/misc/darwin_specific.m: fixed some languages.

* include/vlc_keys.h: added some extra keys on my keyboard.
parent f9d29371
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* hotkeys.h: keycode defines * hotkeys.h: keycode defines
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: vlc_keys.h,v 1.3 2003/10/28 14:51:50 sam Exp $ * $Id: vlc_keys.h,v 1.4 2003/10/28 20:15:48 hartman Exp $
* *
* Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
* *
...@@ -132,11 +132,21 @@ static const struct key_descriptor_s keys[] = ...@@ -132,11 +132,21 @@ static const struct key_descriptor_s keys[] =
{ "y", 'y' }, { "y", 'y' },
{ "z", 'z' }, { "z", 'z' },
{ "+", '+' }, { "+", '+' },
{ "=", '=' },
{ "-", '-' }, { "-", '-' },
{ ",", ',' }, { ",", ',' },
{ ".", '.' }, { ".", '.' },
{ "<", '<' }, { "<", '<' },
{ ">", '>' } { ">", '>' },
{ "`", '`' },
{ "/", '/' },
{ ";", ';' },
{ "'", '\'' },
{ "\\", '\\' },
{ "[", '[' },
{ "]", ']' },
{ "*", '*' }
}; };
static inline char *KeyToString( int i_key ) static inline char *KeyToString( int i_key )
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* darwin_specific.m: Darwin specific features * darwin_specific.m: Darwin specific features
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: darwin_specific.m,v 1.14 2003/09/29 17:36:35 gbazin Exp $ * $Id: darwin_specific.m,v 1.15 2003/10/28 20:15:48 hartman Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -43,13 +43,14 @@ static int FindLanguage( const char * psz_lang ) ...@@ -43,13 +43,14 @@ static int FindLanguage( const char * psz_lang )
"German", "de", "German", "de",
"British", "en_GB", "British", "en_GB",
"English", "en", "English", "en",
"Spanish", "es",
"French", "fr", "French", "fr",
"Italian", "it", "Italian", "it",
"Japanese", "ja", "Japanese", "ja",
"Dutch", "nl", "Dutch", "nl",
"Norwegian", "no", "Norwegian", "no",
"Polish", "pl", "Polish", "pl",
"Brazillian Portuguese", "pt_BR",
"Russian", "ru", "Russian", "ru",
"Swedish", "sv", "Swedish", "sv",
NULL NULL
......
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