diff options
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 |