00001 /* 00002 ** This file is part of Vidalia, and is subject to the license terms in the 00003 ** LICENSE file, found in the top level directory of this distribution. If you 00004 ** did not receive the LICENSE file with this file, you may obtain it from the 00005 ** Vidalia source package distributed by the Vidalia Project at 00006 ** http://www.vidalia-project.net/. No part of Vidalia, including this file, 00007 ** may be copied, modified, propagated, or distributed except according to the 00008 ** terms described in the LICENSE file. 00009 */ 00010 00011 /* 00012 ** \file LanguageSupport.h 00013 ** \version $Id: LanguageSupport.h 3735 2009-04-28 20:28:01Z edmanm $ 00014 ** \brief Contains languages supported by Vidalia 00015 */ 00016 00017 #ifndef _LANGUAGESUPPORT_H 00018 #define _LANGUAGESUPPORT_H 00019 00020 #include <QStringList> 00021 #include <QMap> 00022 00023 00024 class LanguageSupport 00025 { 00026 public: 00027 /** Returns the default language code for the system locale. */ 00028 static QString defaultLanguageCode(); 00029 /** Returns the language code for a given language name. */ 00030 static QString languageCode(const QString &languageName); 00031 /** Returns a list of all supported language codes (e.g., "en"). */ 00032 static QStringList languageCodes(); 00033 /** Returns the language name for a given language code. */ 00034 static QString languageName(const QString &languageCode); 00035 /** Returns a list of all supported language names (e.g., "English"). */ 00036 static QStringList languageNames(); 00037 /** Returns a list of all supported language codes and names. */ 00038 static QMap<QString, QString> languages(); 00039 /** Returns true if we understand the given language code. */ 00040 static bool isValidLanguageCode(const QString &languageCode); 00041 }; 00042 00043 #endif 00044