OSCAR-code/sleepyhead/translation.cpp

158 lines
5.2 KiB
C++
Raw Normal View History

2014-04-24 09:44:15 +00:00
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Multilingual Support files
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#include <QApplication>
#include <QDebug>
#include <QStringList>
#include <QList>
#include <QDialog>
#include <QHBoxLayout>
#include <QLabel>
#include <QComboBox>
#include <QPushButton>
#include <QDir>
#include <QSettings>
#include <QTranslator>
#include <QListWidget>
2014-04-24 09:44:15 +00:00
#ifndef nullptr
#define nullptr NULL
#endif
2014-04-24 09:44:15 +00:00
#include "translation.h"
void initTranslations(QSettings & settings) {
// (Ordinary character sets will just use the name before the first '.' in the filename.)
// (This u8 stuff deliberately kills Qt4.x build support - if you know another way feel free to
// change it, but Qt4 support is still going to die sooner or later)
// Add any languages with special character set needs to this list
QHash<QString, QString> langNames;
langNames["cn"] = "漢語繁體字";
langNames["es"] = "Español";
langNames["bg"] = "български";
langNames["fr"] = "Français";
2014-05-19 03:46:02 +00:00
langNames["en_UK"] = "English UK";
// CHECK: Will the above break with MS VisualC++ compiler?
2014-04-24 09:44:15 +00:00
QHash<QString, QString> langFiles;
#ifdef Q_OS_MAC
QString transdir = QDir::cleanPath(QCoreApplication::applicationDirPath() +
"/../Resources/Translations/");
#else
const QString transdir = QCoreApplication::applicationDirPath() + "/Translations/";
#endif
QDir dir(transdir);
qDebug() << "Scanning \"" << transdir << "\" for translations";
dir.setFilter(QDir::Files);
dir.setNameFilters(QStringList("*.qm"));
QFileInfoList list = dir.entryInfoList();
QString language = settings.value("Settings/Language").toString();
QString langfile, langname;
2014-04-24 09:44:15 +00:00
// Add default language (English)
const QString en="en";
langFiles[en]="";
langNames[en]="English";
// Scan through available translations, and add them to the list
2014-04-24 09:44:15 +00:00
for (int i = 0; i < list.size(); ++i) {
QFileInfo fi = list.at(i);
QString name = fi.fileName().section('.', 0, 0);
QString code = fi.fileName().section('.', 1, 1);
qDebug() << "Detected" << name << "Translation";
2014-04-24 09:44:15 +00:00
if (langNames.contains(code)) {
name = langNames[code];
} else {
langNames[code]=name;
}
langFiles[code]=fi.fileName();
}
2014-04-24 09:44:15 +00:00
if (language.isEmpty() || !langNames.contains(language)) {
QDialog langsel(nullptr, Qt::CustomizeWindowHint | Qt::WindowTitleHint);
QFont font;
font.setPointSize(20);
2014-04-24 09:44:15 +00:00
langsel.setFont(font);
langsel.setWindowTitle("Language / Taal / Sprache / Langue / 语言 / ... ");
2014-04-24 09:44:15 +00:00
QHBoxLayout lang_layout(&langsel);
QLabel img;
img.setPixmap(QPixmap(":/docs/sheep.png"));
// hard coded non translatable
QPushButton lang_okbtn("->", &langsel);
2014-05-04 06:21:26 +00:00
QVBoxLayout layout1;
QVBoxLayout layout2;
2014-04-24 09:44:15 +00:00
layout2.setMargin(6);
lang_layout.setContentsMargins(4,4,4,4);
lang_layout.setMargin(6);
layout2.setSpacing(6);
QListWidget langlist;
2014-04-24 09:44:15 +00:00
lang_layout.addLayout(&layout1);
lang_layout.addLayout(&layout2);
layout1.addWidget(&img);
layout2.addWidget(&langlist, 1);
2014-04-24 09:44:15 +00:00
langlist.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
int row = 0;
2014-05-06 18:03:13 +00:00
for (QHash<QString, QString>::iterator it = langNames.begin(); it != langNames.end(); ++it) {
2014-04-24 09:44:15 +00:00
const QString & code = it.key();
const QString & name = it.value();
QListWidgetItem *item = new QListWidgetItem(name);
item->setData(Qt::UserRole, code);
langlist.insertItem(row++, item);
// Todo: Use base system language code
if (code.compare("en")==0) {
langlist.setCurrentItem(item);
}
2014-04-24 09:44:15 +00:00
}
langlist.sortItems();
layout2.addWidget(&lang_okbtn);
2014-04-24 09:44:15 +00:00
langsel.connect(&langlist, SIGNAL(itemDoubleClicked(QListWidgetItem*)), &langsel, SLOT(close()));
2014-04-24 09:44:15 +00:00
langsel.connect(&lang_okbtn, SIGNAL(clicked()), &langsel, SLOT(close()));
langsel.exec();
langsel.disconnect(&lang_okbtn, SIGNAL(clicked()), &langsel, SLOT(close()));
langsel.disconnect(&langlist, SIGNAL(itemDoubleClicked(QListWidgetItem*)), &langsel, SLOT(close()));
langname = langlist.currentItem()->text();
language = langlist.currentItem()->data(Qt::UserRole).toString();
2014-04-24 09:44:15 +00:00
settings.setValue("Settings/Language", language);
}
langname=langNames[language];
langfile=langFiles[language];
qDebug() << "Loading " << langname << " Translation" << langfile << "from" << transdir;
QTranslator * translator = new QTranslator();
if (!langfile.isEmpty() && !translator->load(langfile, transdir)) {
qWarning() << "Could not load translation" << langfile << "reverting to english :(";
2014-04-24 09:44:15 +00:00
}
qApp->installTranslator(translator);
}