2018-06-09 00:59:16 +00:00
|
|
|
|
/* Multilingual Support header
|
2014-04-24 09:44:15 +00:00
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-24 09:44:15 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2014-04-24 09:44:15 +00:00
|
|
|
|
|
|
|
|
|
#ifndef TRANSLATION_H
|
|
|
|
|
#define TRANSLATION_H
|
|
|
|
|
|
2018-06-09 00:59:16 +00:00
|
|
|
|
#include <QString>
|
|
|
|
|
const QString DefaultLanguage = "en_US";
|
2014-10-02 17:46:08 +00:00
|
|
|
|
const QString LangSetting = "Settings/Language";
|
|
|
|
|
|
2018-06-09 00:59:16 +00:00
|
|
|
|
void initTranslations();
|
|
|
|
|
QString currentLanguage();
|
|
|
|
|
QString lookupLanguageName(QString language);
|
2014-04-24 09:44:15 +00:00
|
|
|
|
|
|
|
|
|
#endif // TRANSLATION_H
|