diff options
author | lordjaxom <lordjaxom> | 2005-01-11 18:00:34 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-11 18:00:34 +0000 |
commit | c93926a1eb1a46e8942b932d1f561df9a6208c42 (patch) | |
tree | 09e15203830d96bed6e469069220612d1605393c | |
parent | 212331440624cc0c7a077ca6695a752c36866154 (diff) | |
download | vdr-plugin-text2skin-c93926a1eb1a46e8942b932d1f561df9a6208c42.tar.gz vdr-plugin-text2skin-c93926a1eb1a46e8942b932d1f561df9a6208c42.tar.bz2 |
- added missing table entries for Eesti and Dansk
-rw-r--r-- | i18n.c | 58 |
1 files changed, 53 insertions, 5 deletions
@@ -1,10 +1,34 @@ /* - * $Id: i18n.c,v 1.1 2004/12/19 22:03:14 lordjaxom Exp $ + * $Id: i18n.c,v 1.2 2005/01/11 18:00:34 lordjaxom Exp $ */ #include "i18n.h" +#include <vdr/config.h> const tI18nPhrase Phrases[] = { + /* + { "English", + "Deutsch", + "Slovenski", + "Italiano", + "Nederlands", + "Português", + "Français", + "Norsk", + "suomi", // this is not a typo - it's really lowercase! + "Polski", + "Español", + "ÅëëçíéêÜ", // Greek + "Svenska", + "Românã", + "Magyar", + "Català", + "ÀãááÚØÙ", // Russian + "Hrvatski", + "Eesti", + "Dansk", + }, + */ { "Loader for text-based skins", "Lader für textbasierte Skins", "", @@ -22,7 +46,13 @@ const tI18nPhrase Phrases[] = { "", "", "", - "" + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif }, { "Flush image cache", "Bildspeicher leeren", @@ -41,7 +71,13 @@ const tI18nPhrase Phrases[] = { "", "", "", - "" + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif }, { "Flushing image cache...", "Bildspeicher wird geleert...", @@ -60,7 +96,13 @@ const tI18nPhrase Phrases[] = { "", "", "", - "" + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif }, { "Max. image cache size", "Max. Größe des Bildspeichers", @@ -79,7 +121,13 @@ const tI18nPhrase Phrases[] = { "", "", "", - "" + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif }, { NULL } }; |