diff options
author | Midas <vdrportal_midas@gmx.de> | 2010-04-22 12:49:36 +0200 |
---|---|---|
committer | Midas <vdrportal_midas@gmx.de> | 2010-04-22 12:49:36 +0200 |
commit | d8df53ab68aa2031da1d49a8eb8897aa52ae0b2d (patch) | |
tree | c8c569ac7c94f6636c510382d4ba22d639aaa7dd /i18n.c | |
parent | 4921cf32c8bda089a21dc4a14ce191ed477f80ff (diff) | |
download | vdr-plugin-block-d8df53ab68aa2031da1d49a8eb8897aa52ae0b2d.tar.gz vdr-plugin-block-d8df53ab68aa2031da1d49a8eb8897aa52ae0b2d.tar.bz2 |
Changed source directory structure.
Diffstat (limited to 'i18n.c')
-rw-r--r-- | i18n.c | 413 |
1 files changed, 413 insertions, 0 deletions
@@ -0,0 +1,413 @@ +/** + * based on i18n.c,v 1.2 2006/07/05 20:19:56 thomas + * + * version by Midas + */ + +#include "i18n.h" + +#if VDRVERSNUM < 10507 + +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", + }, + */ + { "Block broadcast", + "Sendung sperren", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Block unwanted shows by EPG title", + "Sendung/EPG-Titel sperren", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Channel not acceptable!", + "Aktuelle Sendung unzumutbar!", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "New Entry", + "Neuer Eintrag", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Hide Mainmenu Entry", + "Hauptmenüeintrag verstecken", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Edit", + "Editieren", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Delete", + "Löschen", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "New", + "Neu", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Delete keyword?", + "Schlagwort löschen?", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Pattern", + "Suchmuster", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "--- Keywords -------------------------------------------------------------------", + "--- Schlagworte ----------------------------------------------------------------", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Regular Expression", + "Regulärer Ausdruck", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Ignore Case", + "Groß/Kleinschreibung ignorieren", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Malformed regular expression!", + "Ungültiger regulärer Ausdruck!", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { "Message Timeout [s]", + "Wartezeit bis Umschalten [s]", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", +#if VDRVERSNUM >= 10313 + "", +#endif +#if VDRVERSNUM >= 10316 + "", +#endif + }, + { NULL } +}; + +#endif |