/* -*- 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 * * 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 #include #include #include #include #include #include #include #include #include #include #include #include "translation.h" void initTranslations(QSettings & settings) { QStringList welcome={"Welcome", "Welkom", "Willkommen", "Bienvenue", u8"歡迎", u8"ようこそ!"}; // (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 langNames={ { "cn", u8"漢語繁體字" }, { "es", u8"Español" }, { "bg", u8"български" }, { "fr", u8"Français" }, }; // CHECK: Will the above break with MS VisualC++ compiler? QHash 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, langcode; // Add default language (English) const QString en="en"; langFiles[en]=""; langNames[en]="English"; // Scan through available translations, and add them to the list 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"; if (langNames.contains(code)) { name = langNames[code]; } else { langNames[code]=name; } langFiles[code]=fi.fileName(); } if (language.isEmpty() || !langNames.contains(language)) { QDialog langsel(nullptr, Qt::CustomizeWindowHint | Qt::WindowTitleHint); QFont font; font.setPointSize(25); langsel.setFont(font); langsel.setWindowTitle(u8"Language / Taal / Sprache / Langue / 语言 / ... "); QHBoxLayout lang_layout(&langsel); QLabel img; img.setPixmap(QPixmap(":/docs/sheep.png")); // hard coded non translatable QComboBox lang_combo(&langsel); QPushButton lang_okbtn("->", &langsel); QVBoxLayout layout1; QVBoxLayout layout2; lang_layout.addLayout(&layout1); lang_layout.addLayout(&layout2); layout1.addWidget(&img); for (int i=0;iload(langfile, transdir)) { qWarning() << "Could not load translation" << langfile << "reverting to english :("; } qApp->installTranslator(translator); }