diff options
author | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-29 00:15:10 +0000 |
---|---|---|
committer | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-29 00:15:10 +0000 |
commit | 8ed86a99e21b43f188c8b49e96c887a3e3878fe5 (patch) | |
tree | b5678cc966f7b920e6ef0f3bba9363394bf137c4 /src/i18n.cpp | |
parent | 615f3d362c14d4e076fddab6e33491b7bfc22af6 (diff) | |
download | vdr-plugin-menuorg-8ed86a99e21b43f188c8b49e96c887a3e3878fe5.tar.gz vdr-plugin-menuorg-8ed86a99e21b43f188c8b49e96c887a3e3878fe5.tar.bz2 |
added i18n stuff
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5670 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/i18n.cpp')
-rw-r--r-- | src/i18n.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/i18n.cpp b/src/i18n.cpp new file mode 100644 index 0000000..4ab94b2 --- /dev/null +++ b/src/i18n.cpp @@ -0,0 +1,48 @@ +/* + * vdr-submenu - A plugin for the Linux Video Disk Recorder + * Copyright (c) 2007 Thomas Creutz <thomas.creutz@gmx.de> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ + * + */ + +#include "i18n.h" + +const tI18nPhrase Phrases[] = +{ + { + "failed to load XML file", + "Konnte XML Datei nicht laden", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + }, + { NULL } +}; |