2017-10-09 08:35:48 +02:00
|
|
|
/*****************************************************************************
|
2018-05-24 22:32:00 +02:00
|
|
|
* gta5view Grand Theft Auto V Profile Viewer
|
2020-09-28 05:33:04 +02:00
|
|
|
* Copyright (C) 2016-2020 Syping
|
2017-10-09 08:35:48 +02:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "TranslationClass.h"
|
|
|
|
#include "GlobalString.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include <QStringBuilder>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QLocale>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
GlobalString::GlobalString()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QString> GlobalString::getGlobalMap()
|
|
|
|
{
|
|
|
|
QMap<QString, QString> globalMap;
|
|
|
|
QSettings globalFile(getLanguageFile(), QSettings::IniFormat);
|
2020-09-28 05:33:04 +02:00
|
|
|
#if QT_VERSION < 0x060000
|
2017-10-09 08:35:48 +02:00
|
|
|
globalFile.setIniCodec("UTF-8");
|
2020-09-28 05:33:04 +02:00
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
globalFile.beginGroup("Global");
|
2020-09-28 05:33:04 +02:00
|
|
|
for (const QString &globalStr : globalFile.childKeys())
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
globalMap[globalStr] = globalFile.value(globalStr, globalStr).toString();
|
|
|
|
}
|
|
|
|
globalFile.endGroup();
|
|
|
|
return globalMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GlobalString::getString(QString valueStr, bool *ok)
|
|
|
|
{
|
|
|
|
QString globalString = valueStr;
|
|
|
|
QSettings globalFile(getLanguageFile(), QSettings::IniFormat);
|
2020-09-28 05:33:04 +02:00
|
|
|
#if QT_VERSION < 0x060000
|
2017-10-09 08:35:48 +02:00
|
|
|
globalFile.setIniCodec("UTF-8");
|
2020-09-28 05:33:04 +02:00
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
globalFile.beginGroup("Global");
|
|
|
|
QStringList globalStrList = globalFile.childKeys();
|
|
|
|
if (globalStrList.contains(valueStr))
|
|
|
|
{
|
2017-10-21 05:59:10 +02:00
|
|
|
if (ok != nullptr) *ok = true;
|
2017-10-09 08:35:48 +02:00
|
|
|
globalString = globalFile.value(valueStr, valueStr).toString();
|
|
|
|
}
|
|
|
|
globalFile.endGroup();
|
|
|
|
return globalString;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GlobalString::getLanguageFile()
|
|
|
|
{
|
|
|
|
QString language = getLanguage();
|
|
|
|
QString languageFile = ":/global/global." % language % ".ini";
|
|
|
|
if (!QFileInfo(languageFile).exists())
|
|
|
|
{
|
|
|
|
languageFile = ":/global/global.en.ini";
|
|
|
|
}
|
|
|
|
return languageFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GlobalString::getLanguage()
|
|
|
|
{
|
2018-01-16 00:13:08 +01:00
|
|
|
return Translator->getCurrentAreaLanguage();
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|