1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/************************************************************************
**
** Copyright (C) 2019-2024 Kevin B. Hendricks, Stratford, Ontario Canada
** Copyright (C) 2011 John Schember <john@nachtimwald.com>
**
** This file is part of PageEdit.
**
** PageEdit 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.
**
** PageEdit 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 PageEdit. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include <QDir>
#include <QCoreApplication>
#include <QLibraryInfo>
#include <QString>
#include "UILanguage.h"
#include "pageedit_constants.h"
#if !defined(Q_OS_WIN32) && !defined(Q_OS_MAC)
#include <stdlib.h>
#endif
static QString TRANSLATION_FILE_PREFIX = "pageedit_";
static QString TRANSLATION_FILE_SUFFIX = ".qm";
QStringList UILanguage::GetPossibleTranslationPaths()
{
// There are a few different places translations can be stored depending
// on the platform and where they were installed.
QStringList possible_qm_locations;
#if !defined(Q_OS_WIN32) && !defined(Q_OS_MAC)
possible_qm_locations.append(pageedit_share_root + "/translations/");
#endif
possible_qm_locations.append(QLibraryInfo::path(QLibraryInfo::TranslationsPath));
#ifdef Q_OS_MAC
possible_qm_locations.append(QCoreApplication::applicationDirPath() + "/../translations");
#else
possible_qm_locations.append(QCoreApplication::applicationDirPath() + "/translations");
#endif
return possible_qm_locations;
}
QStringList UILanguage::GetUILanguages()
{
QStringList ui_languages;
QStringList checked_dirs;
foreach(QString path, GetPossibleTranslationPaths()) {
// Find all translation files and add them to the avaliable list.
QDir translationDir(path);
if (translationDir.exists() && !checked_dirs.contains(translationDir.absolutePath())) {
QStringList filters;
// Look for all pageedit_*.qm files.
filters << TRANSLATION_FILE_PREFIX + "*" + TRANSLATION_FILE_SUFFIX;
translationDir.setNameFilters(filters);
QStringList translation_files = translationDir.entryList();
foreach(QString file, translation_files) {
QFileInfo fileInfo(file);
QString basename = fileInfo.baseName();
QString language = basename.right(basename.length() - TRANSLATION_FILE_PREFIX.length());
ui_languages.append(language);
}
checked_dirs.append(translationDir.absolutePath());
}
}
return ui_languages;
}
|