diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 15:46:03 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 15:46:03 +0000 |
commit | f80ac81e7a467d86ab238b0d61539a2e5ced862b (patch) | |
tree | 2c7e038a3b8f5df081ec795b6271cbe4f39bf7e1 /i18n.cpp | |
parent | 705678a6d19457c74fc5a0c4c3e449e54144e29b (diff) | |
download | vdr-plugin-live-f80ac81e7a467d86ab238b0d61539a2e5ced862b.tar.gz vdr-plugin-live-f80ac81e7a467d86ab238b0d61539a2e5ced862b.tar.bz2 |
- added internationalization
Diffstat (limited to 'i18n.cpp')
-rw-r--r-- | i18n.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/i18n.cpp b/i18n.cpp new file mode 100644 index 0000000..97c7c4f --- /dev/null +++ b/i18n.cpp @@ -0,0 +1,32 @@ +#include "i18n.h" + +namespace vdrlive { + +const tI18nPhrase Phrases[] = { + // The name of the language + /* + { "English", + "Deutsch", + "Slovenski", + "Italiano", + "Nederlands", + "Português", + "Français", + "Norsk", + "suomi", // Finnish (this is not a typo - it's really lowercase!) + "Polski", + "Español", + "ÅëëçíéêÜ", // Greek + "Svenska", + "Românã", + "Magyar", + "Català", + "ÀãááÚØÙ", // Russian + "Hrvatski", + "Eesti", + "Dansk", + "Èesky", //Czech + }, */ +}; + +} // namespace vdrlive |