mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fully revert Translation resource idea
This commit is contained in:
parent
a96cff0047
commit
ecfde2869e
@ -72,7 +72,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
||||
ui->splitter_2->setSizes(a);
|
||||
ui->splitter_2->setStretchFactor(1,1);
|
||||
|
||||
layout=new QHBoxLayout(ui->graphMainArea);
|
||||
layout=new QHBoxLayout();
|
||||
layout->setSpacing(0);
|
||||
layout->setMargin(0);
|
||||
layout->setContentsMargins(0,0,0,0);
|
||||
|
@ -65,7 +65,7 @@ void initTranslations(QSettings & settings) {
|
||||
|
||||
// Add default language (English)
|
||||
const QString en="en";
|
||||
langFiles[en]="";
|
||||
langFiles[en]="English.en.qm";
|
||||
langNames[en]="English";
|
||||
|
||||
// Scan through available translations, and add them to the list
|
||||
@ -121,6 +121,9 @@ void initTranslations(QSettings & settings) {
|
||||
for (QHash<QString, QString>::iterator it = langNames.begin(); it != langNames.end(); ++it) {
|
||||
const QString & code = it.key();
|
||||
const QString & name = it.value();
|
||||
if (!langFiles.contains(code) || langFiles[code].isEmpty())
|
||||
continue;
|
||||
|
||||
QListWidgetItem *item = new QListWidgetItem(name);
|
||||
item->setData(Qt::UserRole, code);
|
||||
langlist.insertItem(row++, item);
|
||||
@ -146,6 +149,7 @@ void initTranslations(QSettings & settings) {
|
||||
langname=langNames[language];
|
||||
langfile=langFiles[language];
|
||||
|
||||
if (language.compare("en") != 0) {
|
||||
qDebug() << "Loading " << langname << " Translation" << langfile << "from" << transdir;
|
||||
QTranslator * translator = new QTranslator();
|
||||
|
||||
@ -154,4 +158,7 @@ void initTranslations(QSettings & settings) {
|
||||
}
|
||||
|
||||
qApp->installTranslator(translator);
|
||||
} else {
|
||||
qDebug() << "Using in-built english Translation";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user