summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt1
-rw-r--r--MultiMC.cpp30
-rw-r--r--gui/dialogs/ModEditDialogCommon.cpp4
-rw-r--r--gui/dialogs/SettingsDialog.cpp16
-rw-r--r--gui/dialogs/SettingsDialog.ui488
-rw-r--r--logic/NagUtils.cpp18
-rw-r--r--translations/mmc_de.ts1828
7 files changed, 1777 insertions, 608 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7aba8832..c0a4439b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -282,7 +282,6 @@ gui/dialogs/SettingsDialog.h
gui/dialogs/SettingsDialog.cpp
gui/dialogs/CopyInstanceDialog.h
gui/dialogs/CopyInstanceDialog.cpp
-gui/dialogs/dialogs/
gui/dialogs/NewInstanceDialog.cpp
gui/dialogs/ProgressDialog.h
gui/dialogs/ProgressDialog.cpp
diff --git a/MultiMC.cpp b/MultiMC.cpp
index 819091cd..7a82c642 100644
--- a/MultiMC.cpp
+++ b/MultiMC.cpp
@@ -47,8 +47,6 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override)
setOrganizationName("MultiMC");
setApplicationName("MultiMC5");
- initTranslations();
-
setAttribute(Qt::AA_UseHighDpiPixmaps);
// Don't quit on hiding the last window
this->setQuitOnLastWindowClosed(false);
@@ -175,6 +173,9 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override)
// load settings
initGlobalSettings();
+ // load translations
+ initTranslations();
+
// initialize the updater
m_updateChecker.reset(new UpdateChecker());
@@ -240,18 +241,20 @@ MultiMC::~MultiMC()
void MultiMC::initTranslations()
{
+ QLocale locale(m_settings->get("Language").toString());
+ QLocale::setDefault(locale);
+ QLOG_INFO() << "Your language is" << locale.bcp47Name();
m_qt_translator.reset(new QTranslator());
- if (m_qt_translator->load("qt_" + QLocale::system().name(),
+ if (m_qt_translator->load("qt_" + locale.bcp47Name(),
QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
{
- std::cout << "Loading Qt Language File for "
- << QLocale::system().name().toLocal8Bit().constData() << "...";
+ QLOG_DEBUG() << "Loading Qt Language File for"
+ << locale.bcp47Name().toLocal8Bit().constData() << "...";
if (!installTranslator(m_qt_translator.get()))
{
- std::cout << " failed.";
+ QLOG_ERROR() << "Loading Qt Language File failed.";
m_qt_translator.reset();
}
- std::cout << std::endl;
}
else
{
@@ -259,17 +262,15 @@ void MultiMC::initTranslations()
}
m_mmc_translator.reset(new QTranslator());
- if (m_mmc_translator->load("mmc_" + QLocale::system().name(),
- QDir("translations").absolutePath()))
+ if (m_mmc_translator->load("mmc_" + locale.bcp47Name(), MMC->root() + "/translations"))
{
- std::cout << "Loading MMC Language File for "
- << QLocale::system().name().toLocal8Bit().constData() << "...";
+ QLOG_DEBUG() << "Loading MMC Language File for"
+ << locale.bcp47Name().toLocal8Bit().constData() << "...";
if (!installTranslator(m_mmc_translator.get()))
{
- std::cout << " failed.";
+ QLOG_ERROR() << "Loading MMC Language File failed.";
m_mmc_translator.reset();
}
- std::cout << std::endl;
}
else
{
@@ -372,6 +373,9 @@ void MultiMC::initGlobalSettings()
// Editors
m_settings->registerSetting("JsonEditor", QString());
+ // Language
+ m_settings->registerSetting("Language", QLocale(QLocale::system().language()).bcp47Name());
+
// Console
m_settings->registerSetting("ShowConsole", true);
m_settings->registerSetting("AutoCloseConsole", true);
diff --git a/gui/dialogs/ModEditDialogCommon.cpp b/gui/dialogs/ModEditDialogCommon.cpp
index 9a15d92d..eee42e5e 100644
--- a/gui/dialogs/ModEditDialogCommon.cpp
+++ b/gui/dialogs/ModEditDialogCommon.cpp
@@ -50,8 +50,8 @@ void showWebsiteForMod(QWidget *parentDlg, Mod &m)
else
{
CustomMessageBox::selectable(
- parentDlg, parentDlg->tr("How sad!"),
- parentDlg->tr("The mod author didn't provide a website link for this mod."),
+ parentDlg, QObject::tr("How sad!"),
+ QObject::tr("The mod author didn't provide a website link for this mod."),
QMessageBox::Warning);
}
}
diff --git a/gui/dialogs/SettingsDialog.cpp b/gui/dialogs/SettingsDialog.cpp
index 00b3b1fd..b90434b0 100644
--- a/gui/dialogs/SettingsDialog.cpp
+++ b/gui/dialogs/SettingsDialog.cpp
@@ -284,6 +284,9 @@ void SettingsDialog::refreshUpdateChannelDesc()
void SettingsDialog::applySettings(SettingsObject *s)
{
+ // Language
+ s->set("Language", ui->languageBox->itemData(ui->languageBox->currentIndex()).toLocale().bcp47Name());
+
// Updates
s->set("AutoUpdate", ui->autoUpdateCheckBox->isChecked());
s->set("UpdateChannel", m_currentUpdateChannel);
@@ -365,6 +368,19 @@ void SettingsDialog::applySettings(SettingsObject *s)
void SettingsDialog::loadSettings(SettingsObject *s)
{
+ // Language
+ ui->languageBox->clear();
+ ui->languageBox->addItem(tr("English"), QLocale(QLocale::English));
+ foreach(const QString & lang,
+ QDir(MMC->root() + "/translations").entryList(QStringList() << "*.qm", QDir::Files))
+ {
+ QLocale locale(lang.section(QRegExp("[_\.]"), 1));
+ ui->languageBox->addItem(
+ QLocale::languageToString(locale.language()),
+ locale);
+ }
+ ui->languageBox->setCurrentIndex(ui->languageBox->findData(QLocale(s->get("Language").toString())));
+
// Updates
ui->autoUpdateCheckBox->setChecked(s->get("AutoUpdate").toBool());
m_currentUpdateChannel = s->get("UpdateChannel").toString();
diff --git a/gui/dialogs/SettingsDialog.ui b/gui/dialogs/SettingsDialog.ui
index b95b3c8c..54e7db7a 100644
--- a/gui/dialogs/SettingsDialog.ui
+++ b/gui/dialogs/SettingsDialog.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>526</width>
- <height>723</height>
+ <width>545</width>
+ <height>609</height>
</rect>
</property>
<property name="sizePolicy">
@@ -35,83 +35,47 @@
<property name="currentIndex">
<number>0</number>
</property>
- <widget class="QWidget" name="generalTab">
+ <widget class="QWidget" name="featuresTab">
<attribute name="title">
- <string>General</string>
+ <string>Features</string>
</attribute>
- <layout class="QVBoxLayout" name="verticalLayout">
+ <layout class="QVBoxLayout" name="verticalLayout_9">
<item>
- <widget class="QGroupBox" name="sortingModeBox">
- <property name="enabled">
- <bool>true</bool>
- </property>
+ <widget class="QGroupBox" name="updateSettingsBox">
<property name="title">
- <string>Sorting Mode</string>
+ <string>Update Settings</string>
</property>
- <layout class="QHBoxLayout" name="sortingModeBoxLayout">
+ <layout class="QVBoxLayout" name="verticalLayout_7">
<item>
- <widget class="QRadioButton" name="sortLastLaunchedBtn">
+ <widget class="QCheckBox" name="autoUpdateCheckBox">
<property name="text">
- <string>By last launched</string>
+ <string>Check for updates when MultiMC starts?</string>
</property>
- <attribute name="buttonGroup">
- <string notr="true">sortingModeGroup</string>
- </attribute>
</widget>
</item>
<item>
- <widget class="QRadioButton" name="sortByNameBtn">
+ <widget class="QLabel" name="updateChannelLabel">
<property name="text">
- <string>By name</string>
+ <string>Update Channel:</string>
</property>
- <attribute name="buttonGroup">
- <string notr="true">sortingModeGroup</string>
- </attribute>
</widget>
</item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="updateSettingsBox">
- <property name="title">
- <string>Update Settings</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout_7">
<item>
- <widget class="QCheckBox" name="autoUpdateCheckBox">
- <property name="text">
- <string>Check for updates when MultiMC starts?</string>
+ <widget class="QComboBox" name="updateChannelComboBox">
+ <property name="enabled">
+ <bool>false</bool>
</property>
</widget>
</item>
<item>
- <layout class="QVBoxLayout" name="channelVerticalLayout">
- <item>
- <widget class="QLabel" name="updateChannelLabel">
- <property name="text">
- <string>Update Channel:</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="updateChannelComboBox">
- <property name="enabled">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QLabel" name="updateChannelDescLabel">
- <property name="text">
- <string>No channel selected.</string>
- </property>
- <property name="wordWrap">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
+ <widget class="QLabel" name="updateChannelDescLabel">
+ <property name="text">
+ <string>No channel selected.</string>
+ </property>
+ <property name="wordWrap">
+ <bool>true</bool>
+ </property>
+ </widget>
</item>
</layout>
</widget>
@@ -281,6 +245,78 @@
</widget>
</item>
<item>
+ <spacer name="verticalSpacer_2">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ </layout>
+ </widget>
+ <widget class="QWidget" name="generalTab">
+ <attribute name="title">
+ <string>User Interface</string>
+ </attribute>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <item>
+ <layout class="QGridLayout" name="_2">
+ <item row="0" column="0">
+ <widget class="QLabel" name="label_3">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Language (needs restart):</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QComboBox" name="languageBox"/>
+ </item>
+ </layout>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="sortingModeBox">
+ <property name="enabled">
+ <bool>true</bool>
+ </property>
+ <property name="title">
+ <string>Sorting Mode</string>
+ </property>
+ <layout class="QHBoxLayout" name="sortingModeBoxLayout">
+ <item>
+ <widget class="QRadioButton" name="sortLastLaunchedBtn">
+ <property name="text">
+ <string>By last launched</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">sortingModeGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="sortByNameBtn">
+ <property name="text">
+ <string>By name</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">sortingModeGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
<widget class="QGroupBox" name="editorsBox">
<property name="title">
<string>External Editors (leave empty for system default)</string>
@@ -427,165 +463,6 @@
</item>
</layout>
</widget>
- <widget class="QWidget" name="networkTab">
- <property name="toolTip">
- <string>Network settings.</string>
- </property>
- <attribute name="title">
- <string>Network</string>
- </attribute>
- <layout class="QVBoxLayout" name="verticalLayout_6">
- <item>
- <widget class="QGroupBox" name="proxySettingsBox">
- <property name="title">
- <string>Proxy</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout_8">
- <item>
- <widget class="QGroupBox" name="proxyTypeBox">
- <property name="title">
- <string>Type</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_3">
- <item>
- <widget class="QRadioButton" name="proxyDefaultBtn">
- <property name="toolTip">
- <string>Uses your system's default proxy settings.</string>
- </property>
- <property name="text">
- <string>Default</string>
- </property>
- <attribute name="buttonGroup">
- <string notr="true">proxyGroup</string>
- </attribute>
- </widget>
- </item>
- <item>
- <widget class="QRadioButton" name="proxyNoneBtn">
- <property name="text">
- <string>None</string>
- </property>
- <attribute name="buttonGroup">
- <string notr="true">proxyGroup</string>
- </attribute>
- </widget>
- </item>
- <item>
- <widget class="QRadioButton" name="proxySOCKS5Btn">
- <property name="text">
- <string>SOCKS5</string>
- </property>
- <attribute name="buttonGroup">
- <string notr="true">proxyGroup</string>
- </attribute>
- </widget>
- </item>
- <item>
- <widget class="QRadioButton" name="proxyHTTPBtn">
- <property name="text">
- <string>HTTP</string>
- </property>
- <attribute name="buttonGroup">
- <string notr="true">proxyGroup</string>
- </attribute>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="proxyAddrBox">
- <property name="title">
- <string>Address and Port</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <item>
- <widget class="QLineEdit" name="proxyAddrEdit">
- <property name="placeholderText">
- <string>127.0.0.1</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QSpinBox" name="proxyPortEdit">
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buttonSymbols">
- <enum>QAbstractSpinBox::PlusMinus</enum>
- </property>
- <property name="maximum">
- <number>65535</number>
- </property>
- <property name="value">
- <number>8080</number>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="proxyAuthBox">
- <property name="title">
- <string>Authentication</string>
- </property>
- <layout class="QGridLayout" name="gridLayout_5">
- <item row="0" column="1">
- <widget class="QLineEdit" name="proxyUserEdit"/>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="proxyUsernameLabel">
- <property name="text">
- <string>Username:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="proxyPasswordLabel">
- <property name="text">
- <string>Password:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QLineEdit" name="proxyPassEdit">
- <property name="echoMode">
- <enum>QLineEdit::Password</enum>
- </property>
- </widget>
- </item>
- <item row="2" column="0" colspan="2">
- <widget class="QLabel" name="proxyPlainTextWarningLabel">
- <property name="text">
- <string>Note: Proxy username and password are stored in plain text inside MultiMC's configuration file!</string>
- </property>
- <property name="wordWrap">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <spacer name="verticalSpacer">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>20</width>
- <height>40</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </widget>
<widget class="QWidget" name="javaTab">
<attribute name="title">
<string>Java</string>
@@ -827,6 +704,165 @@
</item>
</layout>
</widget>
+ <widget class="QWidget" name="networkTab">
+ <property name="toolTip">
+ <string>Network settings.</string>
+ </property>
+ <attribute name="title">
+ <string>Network</string>
+ </attribute>
+ <layout class="QVBoxLayout" name="verticalLayout_6">
+ <item>
+ <widget class="QGroupBox" name="proxySettingsBox">
+ <property name="title">
+ <string>Proxy</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout_8">
+ <item>
+ <widget class="QGroupBox" name="proxyTypeBox">
+ <property name="title">
+ <string>Type</string>
+ </property>
+ <layout class="QHBoxLayout" name="horizontalLayout_3">
+ <item>
+ <widget class="QRadioButton" name="proxyDefaultBtn">
+ <property name="toolTip">
+ <string>Uses your system's default proxy settings.</string>
+ </property>
+ <property name="text">
+ <string>Default</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">proxyGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="proxyNoneBtn">
+ <property name="text">
+ <string>None</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">proxyGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="proxySOCKS5Btn">
+ <property name="text">
+ <string>SOCKS5</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">proxyGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="proxyHTTPBtn">
+ <property name="text">
+ <string>HTTP</string>
+ </property>
+ <attribute name="buttonGroup">
+ <string notr="true">proxyGroup</string>
+ </attribute>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="proxyAddrBox">
+ <property name="title">
+ <string>Address and Port</string>
+ </property>
+ <layout class="QHBoxLayout" name="horizontalLayout_2">
+ <item>
+ <widget class="QLineEdit" name="proxyAddrEdit">
+ <property name="placeholderText">
+ <string>127.0.0.1</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QSpinBox" name="proxyPortEdit">
+ <property name="alignment">
+ <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+ </property>
+ <property name="buttonSymbols">
+ <enum>QAbstractSpinBox::PlusMinus</enum>
+ </property>
+ <property name="maximum">
+ <number>65535</number>
+ </property>
+ <property name="value">
+ <number>8080</number>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="proxyAuthBox">
+ <property name="title">
+ <string>Authentication</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout_5">
+ <item row="0" column="1">
+ <widget class="QLineEdit" name="proxyUserEdit"/>
+ </item>
+ <item row="0" column="0">
+ <widget class="QLabel" name="proxyUsernameLabel">
+ <property name="text">
+ <string>Username:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="proxyPasswordLabel">
+ <property name="text">
+ <string>Password:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QLineEdit" name="proxyPassEdit">
+ <property name="echoMode">
+ <enum>QLineEdit::Password</enum>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0" colspan="2">
+ <widget class="QLabel" name="proxyPlainTextWarningLabel">
+ <property name="text">
+ <string>Note: Proxy username and password are stored in plain text inside MultiMC's configuration file!</string>
+ </property>
+ <property name="wordWrap">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <spacer name="verticalSpacer">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ </layout>
+ </widget>
</widget>
</item>
<item>
@@ -845,20 +881,6 @@
<tabstop>buttonBox</tabstop>
<tabstop>sortLastLaunchedBtn</tabstop>
<tabstop>sortByNameBtn</tabstop>
- <tabstop>autoUpdateCheckBox</tabstop>
- <tabstop>trackFtbBox</tabstop>
- <tabstop>ftbLauncherBox</tabstop>
- <tabstop>ftbLauncherBrowseBtn</tabstop>
- <tabstop>ftbBox</tabstop>
- <tabstop>ftbBrowseBtn</tabstop>
- <tabstop>instDirTextBox</tabstop>
- <tabstop>instDirBrowseBtn</tabstop>
- <tabstop>modsDirTextBox</tabstop>
- <tabstop>modsDirBrowseBtn</tabstop>
- <tabstop>lwjglDirTextBox</tabstop>
- <tabstop>lwjglDirBrowseBtn</tabstop>
- <tabstop>iconsDirTextBox</tabstop>
- <tabstop>iconsDirBrowseBtn</tabstop>
<tabstop>jsonEditorTextBox</tabstop>
<tabstop>jsonEditorBrowseBtn</tabstop>
<tabstop>maximizedCheckBox</tabstop>
@@ -916,7 +938,7 @@
</connection>
</connections>
<buttongroups>
- <buttongroup name="sortingModeGroup"/>
<buttongroup name="proxyGroup"/>
+ <buttongroup name="sortingModeGroup"/>
</buttongroups>
</ui>
diff --git a/logic/NagUtils.cpp b/logic/NagUtils.cpp
index 6f81b3c7..c963a98a 100644
--- a/logic/NagUtils.cpp
+++ b/logic/NagUtils.cpp
@@ -23,15 +23,15 @@ void checkJVMArgs(QString jvmargs, QWidget *parent)
if (jvmargs.contains("-XX:PermSize=") || jvmargs.contains(QRegExp("-Xm[sx]")))
{
CustomMessageBox::selectable(
- parent, parent->tr("JVM arguments warning"),
- parent->tr("You tried to manually set a JVM memory option (using "
- " \"-XX:PermSize\", \"-Xmx\" or \"-Xms\") - there"
- " are dedicated boxes for these in the settings (Java"
- " tab, in the Memory group at the top).\n"
- "Your manual settings will be overridden by the"
- " dedicated options.\n"
- "This message will be displayed until you remove them"
- " from the JVM arguments."),
+ parent, QObject::tr("JVM arguments warning"),
+ QObject::tr("You tried to manually set a JVM memory option (using "
+ " \"-XX:PermSize\", \"-Xmx\" or \"-Xms\") - there"
+ " are dedicated boxes for these in the settings (Java"
+ " tab, in the Memory group at the top).\n"
+ "Your manual settings will be overridden by the"
+ " dedicated options.\n"
+ "This message will be displayed until you remove them"
+ " from the JVM arguments."),
QMessageBox::Warning)->exec();
}
}
diff --git a/translations/mmc_de.ts b/translations/mmc_de.ts
index 42047378..f1da9766 100644
--- a/translations/mmc_de.ts
+++ b/translations/mmc_de.ts
@@ -1,51 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.0" language="de">
+<TS version="2.1" language="de">
<context>
<name>AboutDialog</name>
<message>
- <location filename="../gui/aboutdialog.ui" line="20"/>
<source>Dialog</source>
- <translation>Dialog</translation>
+ <translation type="vanished">Dialog</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="86"/>
+ <location filename="../gui/dialogs/AboutDialog.ui" line="+89"/>
<source>MultiMC</source>
<translation>MultiMC</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="108"/>
+ <location line="+22"/>
<source>About</source>
<translation>Über</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="114"/>
<source>MultiMC is a custom launcher that makes managing Minecraft easier by allowing you to have multiple installations of Minecraft at once.</source>
- <translation>MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.</translation>
+ <translation type="vanished">MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="133"/>
+ <location line="-91"/>
+ <source>About MultiMC</source>
+ <translation>Über MultiMC</translation>
+ </message>
+ <message>
+ <location line="+100"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MultiMC is a custom launcher that makes managing Minecraft easier by allowing you to have multiple instances of Minecraft at once.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location line="+19"/>
<source>© 2013 MultiMC Contributors</source>
<translation>© 2013 MultiMC Contributors</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="148"/>
+ <location line="+15"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;http://github.com/Forkk/MultiMC5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://github.com/MultiMC/MultiMC5&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="190"/>
+ <location line="+28"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;MultiMC&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Andrew Okin &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:forkk@forkk.net&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;forkk@forkk.net&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Petr Mrázek &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:peterix@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;peterix@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Sky &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://www.twitter.com/drayshak&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@drayshak&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Ubuntu&apos;; font-size:10pt; font-weight:600;&quot;&gt;With thanks to&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Orochimarufan &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:orochimarufan.x3@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;orochimarufan.x3@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;TakSuyu &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:taksuyu@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;taksuyu@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Kilobyte &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:stiepen22@gmx.de&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;stiepen22@gmx.de&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Jan (02JanDal) &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:02jandal@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;02jandal@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Robotbrain &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://twitter.com/skylordelros&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@skylordelros&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Rootbear75 &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://twitter.com/rootbear75&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@rootbear75&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt; (build server)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;MultiMC&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Andrew Okin &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:forkk@forkk.net&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;forkk@forkk.net&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Petr Mrázek &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:peterix@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;peterix@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Sky &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://www.twitter.com/drayshak&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@drayshak&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Ubuntu&apos;; font-size:10pt; font-weight:600;&quot;&gt;Mit dank an&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Orochimarufan &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:orochimarufan.x3@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;orochimarufan.x3@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;TakSuyu &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:taksuyu@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;taksuyu@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Kilobyte &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:stiepen22@gmx.de&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;stiepen22@gmx.de&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Jan (02JanDal) &amp;lt;&lt;/span&gt;&lt;a href=&quot;mailto:02jandal@gmail.com&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;02jandal@gmail.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Robotbrain &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://twitter.com/skylordelros&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@skylordelros&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Rootbear75 &amp;lt;&lt;/span&gt;&lt;a href=&quot;https://twitter.com/rootbear75&quot;&gt;&lt;span style=&quot; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;@rootbear75&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;&amp;gt; (bau server)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location line="+25"/>
<source>No Language file loaded.</source>
- <extracomment>Hey, Translator, You are free to put a reference to you here :)</extracomment>
- <translation>Deutsche Sprachdatei von Kilobyte (siehe oben).</translation>
+ <extracomment>Hey, Translator, feel free to put credit to you here</extracomment>
+ <translation>Deutsche Sprachdatei von Kilobyte (siehe oben). Aktualisiert von xnrand (nsfw auf IRC) und Jan.</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="224"/>
+ <location line="+39"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Ubuntu&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright 2012 MultiMC Contributors&lt;/span&gt;&lt;/p&gt;
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Sans Mono&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;MultiMC&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright 2012-2014 MultiMC Contributors&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;);&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;you may not use this file except in compliance with the License.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;You may obtain a copy of the License at&lt;/span&gt;&lt;/p&gt;
@@ -58,39 +102,271 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;See the License for the specific language governing permissions and&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;limitations under the License.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;MultiMC uses QSLog, &lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright (c) 2010, Razvan Petru&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;All rights reserved.&lt;/span&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;QSLog&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Copyright (c) 2010, Razvan Petru&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;All rights reserved.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Redistribution and use in source and binary forms, with or without modification,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;are permitted provided that the following conditions are met:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* Redistributions of source code must retain the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; list of conditions and the following disclaimer.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* Redistributions in binary form must reproduce the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; list of conditions and the following disclaimer in the documentation and/or other&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; materials provided with the distribution.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* The name of the contributors may not be used to endorse or promote products&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; derived from this software without specific prior written permission.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &amp;quot;AS IS&amp;quot; AND&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;OF THE POSSIBILITY OF SUCH DAMAGE.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Group View (instance view)&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; /*&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Copyright (C) 2007 Rafael Fernández López &amp;lt;ereslibre@kde.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Copyright (C) 2007 John Tapsell &amp;lt;tapsell@kde.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This library is free software; you can redistribute it and/or&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * modify it under the terms of the GNU Library General Public&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * License as published by the Free Software Foundation; either&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * version 2 of the License, or (at your option) any later version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This library is distributed in the hope that it will be useful,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Library General Public License for more details.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * You should have received a copy of the GNU Library General Public License&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * along with this library; see the file COPYING.LIB. If not, write to&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Boston, MA 02110-1301, USA.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; */&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Pack200&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The GNU General Public License (GPL)&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Version 2, June 1991&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;+ &amp;quot;CLASSPATH&amp;quot; EXCEPTION TO THE GPL&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Certain source files distributed by Oracle America and/or its affiliates are&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;subject to the following clarification and special exception to the GPL, but&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;only where Oracle has expressly included in the particular source file&apos;s header&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;the words &amp;quot;Oracle designates this particular file as subject to the &amp;quot;Classpath&amp;quot;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;exception as provided by Oracle in the LICENSE file that accompanied this code.&amp;quot;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Linking this library statically or dynamically with other modules is making&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; a combined work based on this library. Thus, the terms and conditions of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the GNU General Public License cover the whole combination.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; As a special exception, the copyright holders of this library give you&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; permission to link this library with independent modules to produce an&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; executable, regardless of the license terms of these independent modules,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; and to copy and distribute the resulting executable under terms of your&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; choice, provided that you also meet, for each linked independent module,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the terms and conditions of the license of that module. An independent&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; module is a module which is not derived from or based on this library. If&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; you modify this library, you may extend this exception to your version of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the library, but you are not obligated to do so. If you do not wish to do&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; so, delete this exception statement from your version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Quazip&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Copyright (C) 2005-2011 Sergey A. Tachenov&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This program is free software; you can redistribute it and/or modify it&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;under the terms of the GNU Lesser General Public License as published by&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;the Free Software Foundation; either version 2 of the License, or (at&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;your option) any later version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This program is distributed in the hope that it will be useful, but&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;WITHOUT ANY WARRANTY; without even the implied warranty of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;General Public License for more details.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You should have received a copy of the GNU Lesser General Public License&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;along with this program; if not, write to the Free Software Foundation,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;See COPYING file for the full LGPL text.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Original ZIP package is copyrighted by Gilles Vollant, see&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;quazip/(un)zip.h files for details, basically it&apos;s zlib license.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;xz-minidec&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;/*&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * XZ decompressor&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Authors: Lasse Collin &amp;lt;lasse.collin@tukaani.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Igor Pavlov &amp;lt;http://7-zip.org/&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This file has been put into the public domain.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * You can do whatever you want with this file.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; */&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Sans Mono&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;MultiMC&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright 2012-2014 MultiMC Contributors&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;);&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;you may not use this file except in compliance with the License.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;You may obtain a copy of the License at&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Redistribution and use in source and binary forms, with or without modification,&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;are permitted provided that the following conditions are met:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt; http://www.apache.org/licenses/LICENSE-2.0&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;* Redistributions of source code must retain the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt; list of conditions and the following disclaimer.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;* Redistributions in binary form must reproduce the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt; list of conditions and the following disclaimer in the documentation and/or other&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt; materials provided with the distribution.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;* The name of the contributors may not be used to endorse or promote products&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt; derived from this software without specific prior written permission.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Unless required by applicable law or agreed to in writing, software&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;distributed under the License is distributed on an &amp;quot;AS IS&amp;quot; BASIS,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;See the License for the specific language governing permissions and&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;limitations under the License.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &amp;quot;AS IS&amp;quot; AND&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;OF THE POSSIBILITY OF SUCH DAMAGE.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation></translation>
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;QSLog&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Copyright (c) 2010, Razvan Petru&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;All rights reserved.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Redistribution and use in source and binary forms, with or without modification,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;are permitted provided that the following conditions are met:&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* Redistributions of source code must retain the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; list of conditions and the following disclaimer.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* Redistributions in binary form must reproduce the above copyright notice, this&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; list of conditions and the following disclaimer in the documentation and/or other&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; materials provided with the distribution.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;* The name of the contributors may not be used to endorse or promote products&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; derived from this software without specific prior written permission.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &amp;quot;AS IS&amp;quot; AND&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;OF THE POSSIBILITY OF SUCH DAMAGE.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Group View (instance view)&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; /*&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Copyright (C) 2007 Rafael Fernández López &amp;lt;ereslibre@kde.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Copyright (C) 2007 John Tapsell &amp;lt;tapsell@kde.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This library is free software; you can redistribute it and/or&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * modify it under the terms of the GNU Library General Public&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * License as published by the Free Software Foundation; either&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * version 2 of the License, or (at your option) any later version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This library is distributed in the hope that it will be useful,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Library General Public License for more details.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * You should have received a copy of the GNU Library General Public License&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * along with this library; see the file COPYING.LIB. If not, write to&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Boston, MA 02110-1301, USA.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; */&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Pack200&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;The GNU General Public License (GPL)&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Version 2, June 1991&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;+ &amp;quot;CLASSPATH&amp;quot; EXCEPTION TO THE GPL&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Certain source files distributed by Oracle America and/or its affiliates are&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;subject to the following clarification and special exception to the GPL, but&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;only where Oracle has expressly included in the particular source file&apos;s header&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;the words &amp;quot;Oracle designates this particular file as subject to the &amp;quot;Classpath&amp;quot;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;exception as provided by Oracle in the LICENSE file that accompanied this code.&amp;quot;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Linking this library statically or dynamically with other modules is making&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; a combined work based on this library. Thus, the terms and conditions of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the GNU General Public License cover the whole combination.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; As a special exception, the copyright holders of this library give you&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; permission to link this library with independent modules to produce an&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; executable, regardless of the license terms of these independent modules,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; and to copy and distribute the resulting executable under terms of your&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; choice, provided that you also meet, for each linked independent module,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the terms and conditions of the license of that module. An independent&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; module is a module which is not derived from or based on this library. If&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; you modify this library, you may extend this exception to your version of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; the library, but you are not obligated to do so. If you do not wish to do&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; so, delete this exception statement from your version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;Quazip&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Copyright (C) 2005-2011 Sergey A. Tachenov&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This program is free software; you can redistribute it and/or modify it&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;under the terms of the GNU Lesser General Public License as published by&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;the Free Software Foundation; either version 2 of the License, or (at&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;your option) any later version.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;This program is distributed in the hope that it will be useful, but&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;WITHOUT ANY WARRANTY; without even the implied warranty of&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;General Public License for more details.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;You should have received a copy of the GNU Lesser General Public License&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;along with this program; if not, write to the Free Software Foundation,&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;See COPYING file for the full LGPL text.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Original ZIP package is copyrighted by Gilles Vollant, see&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;quazip/(un)zip.h files for details, basically it&apos;s zlib license.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:18pt; font-weight:600;&quot;&gt;xz-minidec&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;/*&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * XZ decompressor&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Authors: Lasse Collin &amp;lt;lasse.collin@tukaani.org&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * Igor Pavlov &amp;lt;http://7-zip.org/&amp;gt;&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; *&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * This file has been put into the public domain.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; * You can do whatever you want with this file.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; */&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location line="+140"/>
+ <source>Forking/Redistribution</source>
+ <translation>Abspaltung/Weiterverbreitung</translation>
+ </message>
+ <message>
+ <location line="+6"/>
+ <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;We keep MultiMC open source because we think it&apos;s important to be able to see the source code for a project like this, and we do so using the Apache license.&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;Part of the reason for using the Apache license is we don&apos;t want people using the &amp;quot;MultiMC&amp;quot; name when redistributing the project. This means people must take the time to go through the source code and remove all references to &amp;quot;MultiMC&amp;quot;, including but not limited to the project icon and the title of windows, (no *MultiMC-fork* in the title).&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;The Apache license covers reasonable use for the name - a mention of the project&apos;s origins in the About dialog and the license is acceptable. However, it should be abundantly clear that the project is a fork &lt;/span&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt; font-weight:600;&quot;&gt;without&lt;/span&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt; implying that you have our blessing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:7.8pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;Wir wollen das MultiMC open source bleibt da wir glauben das es wichtig ist den Quellcode einem Projekt wie diesem einzusehen. Daher verbreiten wir MultiMC unter der Apache Licens&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;Eine der grunde das wir die Apache Licens gewählt haben ist das wir nicht wollen das der &amp;quot;MultiMC&amp;quot; name benutzt wird beim weiterverbreiten. Dies bedeutet das leute sich die zeit nehmen mussen den code durchzugehen und alle referencen zu &amp;quot;MultiMC&amp;quot;, inkludirend aber nicht begrenzt zu dem &amp;quot;MultiMC&amp;quot; Logo und den titeln in Fenstern (kein *MultiMC-fork* im titel)&lt;/span&gt;&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt;Die Apache Licens gibt ihnen ein angemessenes recht den namen zu benutzen - eine bemerkung im Über dialog und in der Licens is akzeptabel. Es sollte aber klar sein das das Projekt eine abspaltung ist &lt;/span&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt; font-weight:600;&quot;&gt;ohne&lt;/span&gt;&lt;span style=&quot; font-family:&apos;Bitstream Vera Sans&apos;; font-size:11pt;&quot;&gt; unserem Segen&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;http://github.com/Forkk/MultiMC5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://github.com/Forkk/MultiMC5&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;http://github.com/Forkk/MultiMC5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://github.com/Forkk/MultiMC5&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="167"/>
+ <location line="-219"/>
<source>Credits</source>
<translation>Dank an</translation>
</message>
@@ -112,7 +388,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Deutsche Übersetzung: Kilobyte &amp;lt;&lt;a href=&quot;mailto:stiepen22@gmx.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;stiepen22@gmx.de&lt;/span&gt;&lt;/a&gt;&amp;gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="209"/>
+ <location line="+53"/>
<source>License</source>
<translation>Lizenz</translation>
</message>
@@ -201,83 +477,289 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;POSSIBILITY OF SUCH DAMAGE.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="278"/>
+ <location line="+193"/>
<source>About Qt</source>
<translation>Über Qt</translation>
</message>
<message>
- <location filename="../gui/aboutdialog.ui" line="298"/>
+ <location line="+20"/>
<source>Close</source>
<translation>Schließen</translation>
</message>
</context>
<context>
+ <name>AccountListDialog</name>
+ <message>
+ <location filename="../gui/dialogs/AccountListDialog.ui" line="+14"/>
+ <source>Manage Accounts</source>
+ <translation>Konto verwaltung</translation>
+ </message>
+ <message>
+ <location line="+6"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Welcome! If you&apos;re new here, you can click the &amp;quot;Add&amp;quot; button to add your Mojang or Minecraft account.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Willkommen! Sollten Sie neu sein können Sie &amp;quot;Hinzufügen&amp;quot; drucken um ihr Mojang oder Minecraft Konto hinzuzufügen&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location line="+17"/>
+ <source>&amp;Add</source>
+ <translation>&amp;Hinzufügen</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>&amp;Remove</source>
+ <translation>&amp;Entfernen</translation>
+ </message>
+ <message>
+ <location line="+20"/>
+ <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set the currently selected account as the active account. The active account is the account that is used to log in (unless it is overridden in an instance-specific setting).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+ <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mache das ausgewählten Konto zum voreingestellten Konto. Das voreingestellte Konto ist das Konto das zum Einloggen benutzt wird (es sei denn es wird von einer Instanz-spezifischen Einstellung überschrieben).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <source>&amp;Set Default</source>
+ <translation>&amp;Benutze als voreinstellung</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Set no default account. This will cause MultiMC to prompt you to select an account every time you launch an instance that doesn&apos;t have its own default set.</source>
+ <translation>Mache die Voreinstellung rückgängig. Wenn kein Konto voreingestellt ist wird MultiMC dich beim jedem Start einer Instanz fragen, welches Konto benutzt werden soll, es sei denn die Instans hat ein Instanz-spezifisches Konto eingeställt.</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <source>&amp;No Default</source>
+ <translation>&amp;Keine Voreinstellung</translation>
+ </message>
+ <message>
+ <location filename="../gui/dialogs/AccountListDialog.cpp" line="+71"/>
+ <source>Please enter your Mojang or Minecraft account username and password to add your account.</source>
+ <translation>Bitte gib Benutzernamen und Passwort deines Mojang- oder Minecraft-Kontos an um es hinzuzufügen.</translation>
+ </message>
+ <message>
+ <location line="+84"/>
+ <source>Login error.</source>
+ <translation>Loginfehler.</translation>
+ </message>
+</context>
+<context>
+ <name>AccountSelectDialog</name>
+ <message>
+ <location filename="../gui/dialogs/AccountSelectDialog.ui" line="+14"/>
+ <source>Select an Account</source>
+ <translation>Wähle ein Konto</translation>
+ </message>
+ <message>
+ <location line="+6"/>
+ <source>Select an account.</source>
+ <translation>Wähle ein konto.</translation>
+ </message>
+ <message>
+ <location line="+12"/>
+ <source>Use as default?</source>
+ <translation>Als Voreinstellung benutzen?</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Use as default for this instance only?</source>
+ <translation>Nur für diese Instanz als Voreinstellung benutzen?</translation>
+ </message>
+</context>
+<context>
+ <name>AssetsMigrateTask</name>
+ <message>
+ <location filename="../logic/assets/AssetsMigrateTask.cpp" line="+19"/>
+ <source>Migrating legacy assets...</source>
+ <translation>Migriere bestehende Daten...</translation>
+ </message>
+</context>
+<context>
+ <name>AuthenticateTask</name>
+ <message>
+ <location filename="../logic/auth/flows/AuthenticateTask.cpp" line="+197"/>
+ <source>Authenticating: Sending request...</source>
+ <translation>Authentifizierung: Sende Anfrage...</translation>
+ </message>
+ <message>
+ <location line="+2"/>
+ <source>Authenticating: Processing response...</source>
+ <translation>Authentifizierung: Bearbeite Antwort...</translation>
+ </message>
+</context>
+<context>
<name>ConsoleWindow</name>
<message>
- <location filename="../gui/consolewindow.ui" line="14"/>
+ <location filename="../gui/ConsoleWindow.ui" line="+14"/>
<source>MultiMC Console</source>
<translation>MultiMC-Konsole</translation>
</message>
<message>
- <location filename="../gui/consolewindow.ui" line="68"/>
+ <location line="+34"/>
+ <source>Upload Log</source>
+ <translation>Log hochladen</translation>
+ </message>
+ <message>
+ <location line="+20"/>
+ <source>&amp;Kill Minecraft</source>
+ <translation>&amp;Minecraft Killen</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>&amp;Close</source>
+ <translation>&amp;Schließen</translation>
+ </message>
+ <message>
<source>Kill Minecraft</source>
- <translation>Minecraft Killen</translation>
+ <translation type="vanished">Minecraft Killen</translation>
</message>
<message>
- <location filename="../gui/consolewindow.ui" line="75"/>
<source>Close</source>
- <translation>Schließen</translation>
+ <translation type="vanished">Schließen</translation>
</message>
<message>
- <location filename="../gui/consolewindow.cpp" line="93"/>
+ <location filename="../gui/ConsoleWindow.cpp" line="+161"/>
<source>Kill Minecraft?</source>
- <extracomment>Main question of the kill confirmation dialog</extracomment>
<translation>Minecraft Killen?</translation>
</message>
<message>
- <location filename="../gui/consolewindow.cpp" line="94"/>
+ <location line="+1"/>
<source>This can cause the instance to get corrupted and should only be used if Minecraft is frozen for some reason</source>
<translation>Dies kann diese Instanz beschädigen und sollte daher nur genutzt werden, wenn Minecraft eingefroren ist</translation>
</message>
</context>
<context>
+ <name>CopyInstanceDialog</name>
+ <message>
+ <location filename="../gui/dialogs/CopyInstanceDialog.ui" line="+17"/>
+ <source>Copy Instance</source>
+ <translation>Kopiere Instanz</translation>
+ </message>
+ <message>
+ <location line="+57"/>
+ <source>Name</source>
+ <translation>Name</translation>
+ </message>
+</context>
+<context>
+ <name>DownloadUpdateTask</name>
+ <message>
+ <location filename="../logic/updater/DownloadUpdateTask.cpp" line="+80"/>
+ <source>Finding information about the current version...</source>
+ <translation>Finde Informationen zur benutzten Version...</translation>
+ </message>
+ <message>
+ <location line="+21"/>
+ <source>Loading version information...</source>
+ <translation>Lade Versionsinformationen...</translation>
+ </message>
+ <message>
+ <location line="+50"/>
+ <source>Failed to download version info files.</source>
+ <translation>Laden der Versionsdateien ist fehlgeschlagen.</translation>
+ </message>
+ <message>
+ <location line="+5"/>
+ <source>Reading file list for new version...</source>
+ <translation>Bearbeite die Dateiliste der neuen Version...</translation>
+ </message>
+ <message>
+ <location line="+15"/>
+ <source>Reading file list for current version...</source>
+ <translation>Bearbeite die Dateilsite der benutzten Version...</translation>
+ </message>
+ <message>
+ <location line="+90"/>
+ <source>Failed to process update lists...</source>
+ <translation>Fehler beim Bearbeiten der Updateliste...</translation>
+ </message>
+ <message>
+ <location line="+12"/>
+ <source>Downloading %1 update files.</source>
+ <translation>%1 Dateien werden heruntergeladen.</translation>
+ </message>
+ <message>
+ <location line="+14"/>
+ <source>Processing file lists - figuring out how to install the update...</source>
+ <translation>Bearbete Dateilisten - Rechne aus, wie das Update installiert werden soll...</translation>
+ </message>
+ <message>
+ <location line="+206"/>
+ <source>Failed to write update script file.</source>
+ <translation>Fehler beim Schreiben des Updatescripts.</translation>
+ </message>
+ <message>
+ <location line="+43"/>
+ <source>Failed to download update files.</source>
+ <translation>Fehler beim Herunterladen der Updatedateien.</translation>
+ </message>
+</context>
+<context>
+ <name>EditAccountDialog</name>
+ <message>
+ <location filename="../gui/dialogs/EditAccountDialog.ui" line="+14"/>
+ <source>Edit Account</source>
+ <translation>Bearbeite Konto</translation>
+ </message>
+ <message>
+ <location line="+6"/>
+ <source>Message label placeholder.</source>
+ <translation>Message label placeholder.</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>Email / Username</source>
+ <translation>Email / Benutzername</translation>
+ </message>
+ <message>
+ <location line="+10"/>
+ <source>Password</source>
+ <translation>Passwort</translation>
+ </message>
+</context>
+<context>
<name>EditNotesDialog</name>
<message>
- <location filename="../gui/EditNotesDialog.ui" line="14"/>
+ <location filename="../gui/dialogs/EditNotesDialog.ui" line="+14"/>
<source>Edit Notes</source>
<translation>Notizen bearbeiten</translation>
</message>
<message>
- <location filename="../gui/EditNotesDialog.cpp" line="15"/>
+ <location filename="../gui/dialogs/EditNotesDialog.cpp" line="+30"/>
<source>Edit notes of %1</source>
<translation>Notizen von %1 bearbeiten</translation>
</message>
</context>
<context>
+ <name>ForgeListLoadTask</name>
+ <message>
+ <location filename="../logic/lists/ForgeVersionList.cpp" line="+161"/>
+ <source>Fetching Forge version lists...</source>
+ <translation>Lade die Forge-Versionslisten...</translation>
+ </message>
+</context>
+<context>
<name>IconPickerDialog</name>
<message>
- <location filename="../gui/IconPickerDialog.ui" line="14"/>
+ <location filename="../gui/dialogs/IconPickerDialog.ui" line="+14"/>
<source>Pick icon</source>
<translation>Symbol auswählen</translation>
</message>
<message>
- <location filename="../gui/IconPickerDialog.cpp" line="44"/>
+ <location filename="../gui/dialogs/IconPickerDialog.cpp" line="+64"/>
<source>Add Icon</source>
<translation>Symbol hinzufügen</translation>
</message>
<message>
- <location filename="../gui/IconPickerDialog.cpp" line="45"/>
+ <location line="+2"/>
<source>Remove Icon</source>
<translation>Symbol entfernen</translation>
</message>
<message>
- <location filename="../gui/IconPickerDialog.cpp" line="91"/>
+ <location line="+37"/>
<source>Select Icons</source>
<extracomment>The title of the select icons open file dialog</extracomment>
<translation>Symbol auswählen</translation>
</message>
<message>
- <location filename="../gui/IconPickerDialog.cpp" line="93"/>
+ <location line="+3"/>
<source>Icons</source>
<extracomment>The type of icon files</extracomment>
<translation>Symbole</translation>
@@ -286,140 +768,190 @@ p, li { white-space: pre-wrap; }
<context>
<name>InstanceSettings</name>
<message>
- <location filename="../gui/instancesettings.ui" line="27"/>
+ <location filename="../gui/dialogs/InstanceSettings.ui" line="+14"/>
+ <source>Instance Settings</source>
+ <translation>Instanzeinstellungen</translation>
+ </message>
+ <message>
+ <location line="+13"/>
<source>Minecraft</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="36"/>
+ <location line="+9"/>
<source>Window Size</source>
<translation>Fenstergröße</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="48"/>
+ <location line="+12"/>
<source>Start Minecraft maximized?</source>
<translation>Minecraft maximiert starten?</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="57"/>
+ <location line="+9"/>
<source>Window height:</source>
<translation>Fensterhöhe:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="64"/>
+ <location line="+7"/>
<source>Window width:</source>
<translation>Fensterbreite:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="108"/>
+ <location line="+44"/>
<source>Console Settings</source>
<translation>Konsoleneinstellungen</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="120"/>
+ <location line="+12"/>
<source>Show console while the game is running?</source>
<translation>Konsole anzeigen wenn das Spiel läuft?</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="127"/>
+ <location line="+7"/>
<source>Automatically close console when the game quits?</source>
<translation>Konsole automatisch schließen, nachdem das Spiel beendet wurde?</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="140"/>
+ <location line="+159"/>
+ <source>Browse...</source>
+ <translation>Durchsuchen...</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Auto-detect...</source>
+ <translation>Auto-Erkennung...</translation>
+ </message>
+ <message>
<source>Account Settings</source>
- <translation>Konteneinstellungen</translation>
+ <translation type="vanished">Konteneinstellungen</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="155"/>
<source>Login automatically when an instance icon is double clicked?</source>
- <translation>Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?</translation>
+ <translation type="vanished">Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="182"/>
+ <location line="-142"/>
<source>Java</source>
<translation>Java</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="191"/>
+ <location line="+9"/>
<source>Memory</source>
<translation>Arbeitsspeicher</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="219"/>
+ <location line="+28"/>
<source>Minimum memory allocation:</source>
<translation>Min. Arbeitspeicher:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="226"/>
+ <location line="+7"/>
<source>Maximum memory allocation:</source>
<translation>Max. Arbeitspeicher:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="265"/>
+ <location line="+39"/>
<source>PermGen:</source>
<translation>PermGen:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="278"/>
+ <location line="+13"/>
<source>Java Settings</source>
<translation>Java-Einstellungen</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="290"/>
+ <location line="+12"/>
+ <source>Test</source>
+ <translation>Teste</translation>
+ </message>
+ <message>
+ <location line="+7"/>
<source>Java path:</source>
<translation>Java-Pfad:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="300"/>
+ <location line="+7"/>
<source>JVM arguments:</source>
<translation>JVM-Argumente:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="307"/>
<source>Auto-detect</source>
- <translation>Automatisch erkennen</translation>
+ <translation type="vanished">Automatisch erkennen</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="323"/>
+ <location line="+33"/>
<source>Custom Commands</source>
<translation>Eigene Befehle</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="338"/>
+ <location line="+15"/>
<source>Post-exit command:</source>
<translation>Nach-abschluss-Befehl:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="345"/>
+ <location line="+7"/>
<source>Pre-launch command:</source>
<translation>Vor-Start-Befehl:</translation>
</message>
<message>
- <location filename="../gui/instancesettings.ui" line="367"/>
+ <location line="+22"/>
<source>Pre-launch command runs before the instance launches and post-exit command runs after it exits. Both will be run in MultiMC&apos;s working directory with INST_ID, INST_DIR, and INST_NAME as environment variables.</source>
<translation>Vor-Start wird ausgeführt, bevor die Instanz startet, Nach-Ende nachdem die Instanz beendet wurde. Beide werden Im ausführungsverzeichnis von MultiMC gestartet. Verfügbare Umgebungsvariablen: INST_ID, INST_DIR, INST_NAME.</translation>
</message>
+ <message>
+ <location filename="../gui/dialogs/InstanceSettings.cpp" line="+195"/>
+ <source>Select a Java version</source>
+ <translation>Wähle eine Java-Version</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>Find Java executable</source>
+ <translation>Java-Programm finden</translation>
+ </message>
+ <message>
+ <location line="+26"/>
+ <source>Java test success</source>
+ <translation>Java test erfolgreich abgeschlossen</translation>
+ </message>
+ <message>
+ <location line="+5"/>
+ <source>Java test failure</source>
+ <translation>Java test fehlgeschlagen</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>The specified java binary didn&apos;t work. You should use the auto-detect feature, or set the path to the java executable.</source>
+ <translation>Das ausgewählte Java-Programm hat nicht funktioniert. Sie sollten die Auto-Erkennung benutzen, oder den Pfad zum Java-Programm angeben.</translation>
+ </message>
+</context>
+<context>
+ <name>JavaListLoadTask</name>
+ <message>
+ <location filename="../logic/lists/JavaVersionList.cpp" line="+175"/>
+ <source>Detecting Java installations...</source>
+ <translation>Suche nach Java-Installationen...</translation>
+ </message>
</context>
<context>
<name>LWJGLSelectDialog</name>
<message>
- <location filename="../gui/lwjglselectdialog.ui" line="14"/>
- <source>Dialog</source>
- <translation></translation>
+ <location filename="../gui/dialogs/LwjglSelectDialog.ui" line="+14"/>
+ <source>Manage Lwjgl Versions</source>
+ <translation>LWJGL Versionsverwaltung</translation>
</message>
<message>
- <location filename="../gui/lwjglselectdialog.ui" line="20"/>
+ <location line="+6"/>
<source>Status label...</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/lwjglselectdialog.ui" line="32"/>
+ <location line="+12"/>
<source>&amp;Refresh</source>
<translation>Anktualisie&amp;ren</translation>
</message>
<message>
- <location filename="../gui/lwjglselectdialog.cpp" line="59"/>
+ <location filename="../gui/dialogs/LwjglSelectDialog.cpp" line="+61"/>
<source>Loading LWJGL version list...</source>
<translation>Lade LWJGL-Versionsliste...</translation>
</message>
@@ -427,550 +959,788 @@ p, li { white-space: pre-wrap; }
<context>
<name>LegacyModEditDialog</name>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="14"/>
- <source>Dialog</source>
- <translation></translation>
+ <location filename="../gui/dialogs/LegacyModEditDialog.ui" line="+14"/>
+ <source>Edit Mods</source>
+ <translation>Mods bearbeiten</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="24"/>
+ <location line="+10"/>
<source>Jar Mods</source>
<translation>Jar-Mods</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="42"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="108"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="163"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="221"/>
+ <location line="+20"/>
+ <location line="+77"/>
+ <location line="+69"/>
+ <location line="+70"/>
<source>&amp;Add</source>
<translation>&amp;Hinzufügen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="49"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="115"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="170"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="228"/>
+ <location line="-209"/>
+ <location line="+77"/>
+ <location line="+69"/>
+ <location line="+70"/>
<source>&amp;Remove</source>
<translation>&amp;Entfernen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="56"/>
+ <location line="-209"/>
<source>MCForge</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="76"/>
+ <location line="+20"/>
<source>Move &amp;Up</source>
<translation>&amp;Nach Oben</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="83"/>
+ <location line="+7"/>
<source>Move &amp;Down</source>
<translation>Nach &amp;Unten</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="93"/>
+ <location line="+19"/>
<source>Core Mods</source>
<translation>Coremods</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="135"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="190"/>
- <location filename="../gui/LegacyModEditDialog.ui" line="248"/>
+ <location line="+44"/>
+ <location line="+69"/>
+ <location line="+70"/>
<source>&amp;View Folder</source>
<translation>&amp;Ordner öffnen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="145"/>
+ <location line="-117"/>
<source>Loader Mods</source>
<translation>Normale Mods</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.ui" line="203"/>
+ <location line="+72"/>
<source>Texture Packs</source>
- <translation>Texturenpacks</translation>
+ <translation>Texturenpakete</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.cpp" line="249"/>
- <location filename="../gui/LegacyModEditDialog.cpp" line="246"/>
+ <location filename="../gui/dialogs/OneSixModEditDialog.cpp" line="+303"/>
+ <location filename="../gui/dialogs/LegacyModEditDialog.cpp" line="+258"/>
<source>Select Loader Mods</source>
<extracomment>Title of regular mod selection dialog</extracomment>
<translation>Mods auswählen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.cpp" line="276"/>
+ <location line="+27"/>
<source>Select Resource Packs</source>
<translation>Resourcenpacks auswählen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.cpp" line="188"/>
+ <location filename="../gui/dialogs/LegacyModEditDialog.cpp" line="-58"/>
<source>Select Core Mods</source>
<extracomment>Title of core mod selection dialog</extracomment>
- <translation>Coremodsauswählen</translation>
+ <translation>Coremods auswählen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.cpp" line="235"/>
+ <location line="+10"/>
+ <source>Select Forge version</source>
+ <translation>Wähle Forge-Version</translation>
+ </message>
+ <message>
+ <location line="+37"/>
<source>Select Jar Mods</source>
<extracomment>Title of jar mod selection dialog</extracomment>
<translation>Jarmods auswählen</translation>
</message>
<message>
- <location filename="../gui/LegacyModEditDialog.cpp" line="257"/>
+ <location line="+22"/>
<source>Select Texture Packs</source>
<extracomment>Title of texture pack selection dialog</extracomment>
- <translation>Texturenpacks auswählen</translation>
+ <translation>Texturenpakete auswählen</translation>
</message>
</context>
<context>
- <name>LoginDialog</name>
+ <name>LegacyUpdate</name>
<message>
- <location filename="../gui/logindialog.ui" line="14"/>
- <source>Login</source>
- <translation>Einloggen</translation>
+ <location filename="../logic/LegacyUpdate.cpp" line="+79"/>
+ <source>Downloading new LWJGL...</source>
+ <translation>LWJGL wird herruntergeladen...</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="20"/>
- <source>&lt;span style=&quot; color:#ff0000;&quot;&gt;Error&lt;/span&gt;</source>
- <translation></translation>
+ <location line="+68"/>
+ <source>Installing new LWJGL...</source>
+ <translation>Das neue LWJGL wird installiert...</translation>
+ </message>
+ <message>
+ <location line="+76"/>
+ <source>Installing new LWJGL - extracting </source>
+ <translation>Das neue LWJGL wird installiert - entpacken</translation>
+ </message>
+ <message>
+ <location line="+30"/>
+ <source>Checking for jar updates...</source>
+ <translation>Suche nach jar Änderungen...</translation>
+ </message>
+ <message>
+ <location line="+10"/>
+ <source>Downloading new minecraft.jar ...</source>
+ <translation>Neue minecraft.jar wird herruntergeladen...</translation>
+ </message>
+ <message>
+ <location line="+34"/>
+ <source>Installing mods: Adding </source>
+ <translation>Mod-Installation: Hinzufügen </translation>
+ </message>
+ <message>
+ <location line="+86"/>
+ <source>Installing mods: Backing up minecraft.jar ...</source>
+ <translation>Mod-Installation: Erstellen einer Sicherheitskopie von minecraft.jar...</translation>
+ </message>
+ <message>
+ <location line="+25"/>
+ <source>Installing mods: Opening minecraft.jar ...</source>
+ <translation>Mod-Installation: minecraft.jar wird geöffnet...</translation>
+ </message>
+ <message>
+ <location line="+14"/>
+ <source>Installing mods: Adding mod files...</source>
+ <translation>Mod-Installation: Mod-Dateien werden hinzugefügt...</translation>
+ </message>
+</context>
+<context>
+ <name>LoginDialog</name>
+ <message>
+ <source>Login</source>
+ <translation type="vanished">Einloggen</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="29"/>
<source>Username:</source>
- <translation>Nutzername:</translation>
+ <translation type="vanished">Nutzername:</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="43"/>
<source>Password:</source>
- <translation>Passwort:</translation>
+ <translation type="vanished">Passwort:</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="53"/>
<source>Password</source>
- <translation>Passwort</translation>
+ <translation type="vanished">Passwort</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="66"/>
<source>Forget</source>
- <translation>Vergessen</translation>
+ <translation type="vanished">Vergessen</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="83"/>
<source>&amp;Remember Username?</source>
- <translation>&amp;Nutzernamen speichern?</translation>
+ <translation type="vanished">&amp;Nutzernamen speichern?</translation>
</message>
<message>
- <location filename="../gui/logindialog.ui" line="96"/>
<source>R&amp;emember Password?</source>
- <translation>&amp;Passwort speichern?</translation>
+ <translation type="vanished">&amp;Passwort speichern?</translation>
</message>
<message>
- <location filename="../gui/logindialog.cpp" line="28"/>
<source>Offline Once</source>
<extracomment>Use offline mode one time</extracomment>
- <translation>Einmal Offline</translation>
+ <translation type="vanished">Einmal Offline-Modus verwenden</translation>
</message>
<message>
- <location filename="../gui/logindialog.cpp" line="37"/>
<source>Name</source>
<extracomment>The username during login (placeholder)</extracomment>
- <translation>Name</translation>
+ <translation type="vanished">Name</translation>
</message>
</context>
<context>
<name>LoginTask</name>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="41"/>
- <location filename="../logic/net/LoginTask.cpp" line="135"/>
<source>Logging in...</source>
- <translation>Einloggen...</translation>
+ <translation type="vanished">Einloggen...</translation>
</message>
<message>
<source>Failed to parse Minecraft version string.</source>
<translation type="obsolete">Konnte Minecraft-Versionsstring nicht parsen.</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="124"/>
<source>Invalid username or password.</source>
- <translation>Falsche Kombination von Nutzernamen und Passwort.</translation>
+ <translation type="vanished">Falsche Kombination von Nutzernamen und Passwort.</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="126"/>
<source>Launcher outdated, please update.</source>
- <translation>Veralteter Launcher, Bitte lade ein Update herunter.</translation>
+ <translation type="vanished">Veralteter Launcher, Bitte lade ein Update herunter.</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="93"/>
- <location filename="../logic/net/LoginTask.cpp" line="128"/>
- <location filename="../logic/net/LoginTask.cpp" line="205"/>
- <location filename="../logic/net/LoginTask.cpp" line="232"/>
<source>Login failed: %1</source>
- <translation>Login fehlgeschlagen: %1</translation>
+ <translation type="vanished">Login fehlgeschlagen: %1</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="77"/>
- <location filename="../logic/net/LoginTask.cpp" line="189"/>
<source>The login servers are currently unavailable. Check http://help.mojang.com/ for more info.</source>
- <translation>Derzeit kann auf die Login-Server nicht zugegriffe werden. Für weitere Informationen siehe http://help.mojang.com/.</translation>
+ <translation type="vanished">Derzeit kann auf die Login-Server nicht zugegriffen werden. Für weitere Informationen siehe http://help.mojang.com/.</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="82"/>
- <location filename="../logic/net/LoginTask.cpp" line="194"/>
<source>Login failed: Unknown HTTP error %1 occurred.</source>
- <translation>Login fehlgeschlagen. Unbekannter HTTP-Fehler: %1.</translation>
+ <translation type="vanished">Login fehlgeschlagen. Unbekannter HTTP-Fehler: %1.</translation>
</message>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="89"/>
- <location filename="../logic/net/LoginTask.cpp" line="201"/>
<source>Login canceled.</source>
- <translation>Login abgebrochen.</translation>
+ <translation type="vanished">Login abgebrochen.</translation>
</message>
+</context>
+<context>
+ <name>MCModInfoFrame</name>
<message>
- <location filename="../logic/net/LoginTask.cpp" line="238"/>
- <source>Login failed: BAD FORMAT #1</source>
- <translatorcomment>Login fehlgeschlagen: UNGÜLTIGES FORMAT #1</translatorcomment>
- <translation></translation>
+ <location filename="../gui/widgets/MCModInfoFrame.ui" line="+26"/>
+ <source>Frame</source>
+ <translation>Frame</translation>
+ </message>
+ <message>
+ <location line="+6"/>
+ <location filename="../gui/widgets/MCModInfoFrame.cpp" line="+54"/>
+ <source>Select a mod to view title and authors...</source>
+ <translation>Wähle einem Mod aus, um Titel und Autoren zu sehen...</translation>
+ </message>
+ <message>
+ <location line="+19"/>
+ <location filename="../gui/widgets/MCModInfoFrame.cpp" line="+1"/>
+ <source>Select a mod to view description...</source>
+ <translation>Wähle ein Mod um die Beschreibung zu sehen...</translation>
+ </message>
+ <message>
+ <location filename="../gui/widgets/MCModInfoFrame.cpp" line="-11"/>
+ <source>No description provided in mcmod.info</source>
+ <translation>mcmod.info wurde nicht mit einer Beschreibung versehen</translation>
+ </message>
+</context>
+<context>
+ <name>MCVListLoadTask</name>
+ <message>
+ <location filename="../logic/lists/MinecraftVersionList.cpp" line="+142"/>
+ <source>Loading instance version list...</source>
+ <translation>Lade Liste von Minecraft-Versionen...</translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
- <location filename="../gui/mainwindow.ui" line="14"/>
+ <location filename="../gui/MainWindow.ui" line="+14"/>
<source>MultiMC 5</source>
<translation>MultiMC 5</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="40"/>
+ <location line="+30"/>
<source>Main Toolbar</source>
<translation>Haupt-Werkzeugleiste</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="80"/>
+ <location line="+41"/>
<source>Instance Toolbar</source>
<translation>Instanz-Werkzeugleiste</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="123"/>
+ <location line="+40"/>
+ <source>News Toolbar</source>
+ <translation>Nachrichten-Werkzeugleiste</translation>
+ </message>
+ <message>
+ <location line="+34"/>
<source>Add Instance</source>
<translation>Instanz hinzufügen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="126"/>
- <location filename="../gui/mainwindow.ui" line="129"/>
+ <location line="+3"/>
+ <location line="+3"/>
+ <location line="+332"/>
<source>Add a new instance.</source>
<translation>Neue Instanz erstellen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="138"/>
+ <location line="-323"/>
<source>View Instance Folder</source>
<translation>Instanzordner öffnen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="141"/>
- <location filename="../gui/mainwindow.ui" line="144"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Open the instance folder in a file browser.</source>
<translation>Instanzordner im Dateimanager öffnen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="153"/>
+ <location line="+9"/>
<source>Refresh</source>
<translation>Aktualisieren</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="156"/>
- <location filename="../gui/mainwindow.ui" line="159"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Reload the instance list.</source>
<translation>Instanzliste neu Laden.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="168"/>
+ <location line="+9"/>
<source>View Central Mods Folder</source>
- <translation>Zenstralen Modordner öffnen</translation>
+ <translation>Zenstralen Mod-Ordner öffnen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="171"/>
- <location filename="../gui/mainwindow.ui" line="174"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Open the central mods folder in a file browser.</source>
- <translation>Zentralen Modordner in einem Dateimanager öffnen.</translation>
+ <translation>Zentralen Mod-Ordner in einem Dateimanager öffnen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="183"/>
+ <location line="+9"/>
<source>Check for Updates</source>
<translation>Auf Updates überprüfen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="186"/>
- <location filename="../gui/mainwindow.ui" line="189"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Check for new updates for MultiMC</source>
<translation>Auf Updates für MultiMC prüfen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="198"/>
- <location filename="../gui/mainwindow.ui" line="325"/>
+ <location line="+9"/>
+ <location line="+133"/>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="201"/>
- <location filename="../gui/mainwindow.ui" line="204"/>
+ <location line="-130"/>
+ <location line="+3"/>
<source>Change settings.</source>
<translation>Einstellungen ändern.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="216"/>
+ <location line="+12"/>
<source>Report a Bug</source>
<translation>Fehler melden</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="219"/>
- <location filename="../gui/mainwindow.ui" line="222"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Open the bug tracker to report a bug with MultiMC.</source>
- <translation>Fehler-Verfolgung öffnen, um einen Fehler zu melden (Bitte auf Englisch ;))</translation>
+ <translation>Fehler-Verfolgung öffnen, um einen Fehler zu melden (Bitte auf Englisch ;)).</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="231"/>
<source>News</source>
- <translation>Neuigkeiten</translation>
+ <translation type="vanished">Neuigkeiten</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="234"/>
- <location filename="../gui/mainwindow.ui" line="237"/>
<source>Open the MultiMC dev blog to read news about MultiMC.</source>
- <translation>Den MultiMC Entwicklerblog öffnen und Neuigkeiten über MultiMC erfahren.</translation>
+ <translation type="vanished">Den MultiMC Entwicklerblog öffnen und Neuigkeiten über MultiMC erfahren.</translation>
+ </message>
+ <message>
+ <location line="+9"/>
+ <source>More News</source>
+ <translation>Mehr Nachrichten</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <source>More news...</source>
+ <translation>Mehr Nachrichten...</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <location line="+3"/>
+ <source>Open the MultiMC development blog to read more news about MultiMC.</source>
+ <translation>Öffne den MultiMC Entwicklerblog um mehr Nachrichten zu MultiMC zu lesen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="246"/>
- <location filename="../gui/mainwindow.ui" line="252"/>
+ <location line="+9"/>
+ <location line="+6"/>
<source>About MultiMC</source>
<translation>Über MultiMC</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="249"/>
+ <location line="-3"/>
<source>View information about MultiMC.</source>
<translation>Informationen über MultiMC anzeigen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="260"/>
+ <location line="+11"/>
<source>Play</source>
<translation>Spielen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="263"/>
- <location filename="../gui/mainwindow.ui" line="266"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Launch the selected instance.</source>
<translation>Die ausgewählte Instanz starten.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="271"/>
+ <location line="+5"/>
<source>Instance Name</source>
<translation>Instanzname</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="274"/>
- <location filename="../gui/mainwindow.ui" line="277"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Rename the selected instance.</source>
<translation>Ausgewählte Instanz umbenennen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="282"/>
+ <location line="+5"/>
<source>Change Group</source>
<translation>Gruppe ändern</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="285"/>
- <location filename="../gui/mainwindow.ui" line="288"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Change the selected instance&apos;s group.</source>
<translation>Die Gruppe der ausgewählten Instanz ändern.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="300"/>
+ <location line="+12"/>
<source>Change Icon</source>
<translation>Symbol ändern</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="303"/>
- <location filename="../gui/mainwindow.ui" line="306"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Change the selected instance&apos;s icon.</source>
<translation>Das Symbol der ausgewählten Instanz ändern.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="311"/>
+ <location line="+8"/>
<source>Edit Notes</source>
<translation>Notizen bearbeiten</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="314"/>
- <location filename="../gui/mainwindow.ui" line="317"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Edit the notes for the selected instance.</source>
<translation>Notizen für die ausgewählte Instanz bearbeiten.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="328"/>
- <location filename="../gui/mainwindow.ui" line="331"/>
+ <location line="+11"/>
+ <location line="+3"/>
<source>Change settings for the selected instance.</source>
<translation>Einstellungen für die ausgewählte Instanz bearbeiten.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="339"/>
+ <location line="+8"/>
<source>Make Shortcut</source>
<translation>Verknüpfung erstellen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="342"/>
- <location filename="../gui/mainwindow.ui" line="345"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Make a shortcut on the desktop for the selected instance.</source>
<translation>Erstellt eine Verknüpfung für die ausgewählte Instanz auf dem Desktop.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="353"/>
+ <location line="+8"/>
<source>Manage Saves</source>
<translation>Speicherstände verwalten</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="356"/>
- <location filename="../gui/mainwindow.ui" line="359"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Manage saves for the selected instance.</source>
<translation>Die Speicherstände der ausgewählten Instanz verwalten.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="364"/>
+ <location line="+5"/>
<source>Edit Mods</source>
<translation>Mods bearbeiten</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="367"/>
- <location filename="../gui/mainwindow.ui" line="370"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Edit the mods for the selected instance.</source>
<translation>Die Mods der ausgewähten Instanz bearbeiten.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="378"/>
+ <location line="+5"/>
<source>Change Version</source>
<translation>Version ändern</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="381"/>
- <location filename="../gui/mainwindow.ui" line="384"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Change the selected instance&apos;s Minecraft version.</source>
<translation>Die Minecraftversion der ausgewählten Instanz ändern.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="392"/>
+ <location line="+8"/>
<source>Change LWJGL</source>
<translation>LWJGL ändern</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="395"/>
- <location filename="../gui/mainwindow.ui" line="398"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Change the version of LWJGL for the selected instance to use.</source>
<translation>Die zu benutzende Version von LWJGL für die aktuelle Instanz ändern.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="403"/>
+ <location line="+5"/>
<source>Instance Folder</source>
<translation>Instanzordner</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="406"/>
- <location filename="../gui/mainwindow.ui" line="409"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Open the selected instance&apos;s root folder in a file browser.</source>
<translation>Den Wurzelordner der Aktuellen Instanz im Dateimanager öffnen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="414"/>
+ <location line="+5"/>
<source>Delete</source>
<translation>Löschen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="417"/>
- <location filename="../gui/mainwindow.ui" line="420"/>
+ <location line="+3"/>
+ <location line="+3"/>
<source>Delete the selected instance.</source>
<translation>Ausgewählte Instanz löschen.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="425"/>
+ <location line="+5"/>
<source>Config Folder</source>
- <translation>Konfig-ordner</translation>
+ <translation>Konfig-Ordner</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="428"/>
+ <location line="+3"/>
<source>Open the instance&apos;s config folder</source>
<translation>Den Konfigurationsordner im Dateimanager anzeigen</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="440"/>
+ <location line="+12"/>
<source>Meow</source>
<translation>Miau</translation>
</message>
<message>
- <location filename="../gui/mainwindow.ui" line="443"/>
+ <location line="+3"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-weight:600; color:#ff0004;&quot;&gt;Catnarok!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;Or just a cat with a ball of yarn?&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;WHO KNOWS?!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;:/icons/instances/tnt&quot;/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
</message>
<message>
+ <location line="+9"/>
+ <source>Copy Instance</source>
+ <translation>Kopiere Instanz</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <source>Copy the selected instance.</source>
+ <translation>Kopiere die ausgewählte Instanz.</translation>
+ </message>
+ <message>
+ <location line="+8"/>
+ <location filename="../gui/MainWindow.cpp" line="+201"/>
+ <source>Manage Accounts</source>
+ <translation>Verwalte Konten</translation>
+ </message>
+ <message>
+ <location line="+3"/>
+ <source>Manage your Mojang or Minecraft accounts.</source>
+ <translation>Verwalte diene Mojang- und Minecraft -onten.</translation>
+ </message>
+ <message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-weight:600; color:#ff0004;&quot;&gt;Catnatok!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;Or just a cat with a ball of yarn?&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;WHO KNOWS?!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;:/icons/instances/tnt&quot;/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="obsolete">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-weight:600; color:#ff0004;&quot;&gt;Catnatok!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;Or just a cat with a ball of yarn?&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;WHO KNOWS?!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;:/icons/instances/tnt&quot;/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="313"/>
+ <location filename="../gui/MainWindow.cpp" line="-9"/>
+ <source>No instance selected</source>
+ <translation>Keine Instanz ausgewählt</translation>
+ </message>
+ <message>
+ <location line="+17"/>
+ <source>Accounts</source>
+ <translation>Konten</translation>
+ </message>
+ <message>
+ <location line="+67"/>
+ <source>No update found.</source>
+ <translation>Keine neue Version gefunden.</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>No MultiMC update was found!
+You are using the latest version.</source>
+ <translation>Kein update zu MultiMC konnte gefunden werden!
+Sie benutzen die neuste Version.</translation>
+ </message>
+ <message>
+ <location line="+52"/>
+ <source>No accounts added!</source>
+ <translation>Keine Konten angegeben!</translation>
+ </message>
+ <message>
+ <location line="+37"/>
+ <source>No Default Account</source>
+ <translation>Kein voreingestelltes Konto</translation>
+ </message>
+ <message>
+ <location line="+95"/>
+ <source>Loading news...</source>
+ <translation>Nachrichten werden geladen...</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>No news available.</source>
+ <translation>Keine Nachrichten zugänglich.</translation>
+ </message>
+ <message>
+ <location line="+105"/>
+ <location line="+7"/>
+ <location line="+7"/>
+ <location line="+12"/>
+ <location line="+8"/>
+ <location line="+37"/>
+ <location line="+7"/>
+ <location line="+7"/>
+ <location line="+436"/>
+ <source>Error</source>
+ <translation>Fehler</translation>
+ </message>
+ <message>
+ <location line="-486"/>
+ <location line="+487"/>
+ <source>MultiMC cannot download Minecraft or update instances unless you have at least one account added.
+Please add your Mojang or Minecraft account.</source>
+ <translation>MultiMC kann Minecraft nicht herrunterladen und keine Instanzen aktualisieren so lange Sie nicht mindestens ein Konto angegeben haben.
+Bitte fügen Sie Ihr Mojang oder Minecraft Konto hinzu.</translation>
+ </message>
+ <message>
+ <location line="-390"/>
<source>Group name</source>
<translation>Gruppenname</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="313"/>
+ <location line="+0"/>
<source>Enter a new group name.</source>
<translation>Neuen Gruppennamen eingeben.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="398"/>
+ <location line="+91"/>
+ <source>CAREFUL</source>
+ <translation>ACHTUNG</translation>
+ </message>
+ <message>
+ <location line="+0"/>
+ <source>This is permanent! Are you sure?
+About to delete: </source>
+ <translation>Dies ist permanent! Sind sie sich sicher?
+Die folgende Instanz löschen:</translation>
+ </message>
+ <message>
+ <location line="+17"/>
<source>Instance name</source>
<translation>Instanzname</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="398"/>
+ <location line="+0"/>
<source>Enter a new instance name.</source>
<translation>Neuen Instanznamen eingeben.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="580"/>
+ <location line="+89"/>
+ <source>No Accounts</source>
+ <translation>Keine Konten</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>In order to play Minecraft, you must have at least one Mojang or Minecraft account logged in to MultiMC.Would you like to open the account manager to add an account now?</source>
+ <translation>Damit sie Minecraft spielen können mussen sie mindestens ein Mojang- oder Minecraft-Konto in MultiMC hinterlegen. Wollen sie die Konto Verwaltung öffen um ein Konto hinzuzufügen?</translation>
+ </message>
+ <message>
+ <location line="+14"/>
+ <source>Which account would you like to use?</source>
+ <translation>Wälches Konto wollen Sie benutzen?</translation>
+ </message>
+ <message>
+ <location line="+17"/>
+ <source>Your account is currently not logged in. Please enter your password to log in again.</source>
+ <translation>Ihr Konto ist momentan nicht angemeldet. Bitte geben sie ihr passwort an um sich anzumelden.</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Play Offline</source>
+ <translation>Offline spielen</translation>
+ </message>
+ <message>
+ <location line="+90"/>
+ <source>Error updating instance</source>
+ <translation>Fehler beim Aktualisieren der Instanz</translation>
+ </message>
+ <message>
+ <location line="+30"/>
<source>MultiMC Shortcut</source>
<translation>MultiMC-Verknüpfung</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="580"/>
+ <location line="+0"/>
<source>Enter a Shortcut Name.</source>
<translation>Verknüpfungsnamen eingeben.</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="588"/>
+ <location line="+8"/>
<source>Not useful</source>
<translation>Sinnlos</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="589"/>
+ <location line="+1"/>
<source>A Dummy Shortcut was created. it will not do anything productive</source>
<translation>Eine Dummy-Verknüpfung wurde erstellt. Sie wird jedoch absolut nichts bewirken</translation>
</message>
<message>
- <location filename="../gui/mainwindow.cpp" line="665"/>
+ <location line="+16"/>
+ <source>Change Minecraft version</source>
+ <translation>Minecraft-Version ändern</translation>
+ </message>
+ <message>
+ <location line="+18"/>
+ <source>Are you sure?</source>
+ <translation>Sind Sie sicher?</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>This will remove any library/version customization you did previously. This includes things like Forge install and similar.</source>
+ <translation>Dies will sämtliche Bibliotheks/Versions-Anpassung die Sie vorgenommen haben entfernen. Dies schließt Sachen wie Forge mit ein.</translation>
+ </message>
+ <message>
+ <location line="+40"/>
+ <source>Instance settings</source>
+ <translation>Instanzeinstellungen</translation>
+ </message>
+ <message>
+ <location line="+38"/>
<source>Rename Instance</source>
<translation>Instanz umbenennen</translation>
</message>
+ <message>
+ <location line="+77"/>
+ <source>Select a Java version</source>
+ <translation>Wähle eine Java-Version</translation>
+ </message>
+ <message>
+ <location line="+10"/>
+ <source>Invalid version selected</source>
+ <translation>Ungültige version ausgewählt</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>You didn&apos;t select a valid Java version, so MultiMC will select the default. You can change this in the settings dialog.</source>
+ <translation>Sie haben keine gültige Java-Version ausgewählt, daher wird MultiMC für Sie eine Voreinstellung benutzen. Sie können dies in den Einstellungen ändern.</translation>
+ </message>
</context>
<context>
<name>MinecraftProcess</name>
<message>
- <location filename="../logic/MinecraftProcess.cpp" line="123"/>
+ <location filename="../logic/MinecraftProcess.cpp" line="+139"/>
<source>Minecraft exited with exitcode %1.</source>
<extracomment>Message displayed on instance exit</extracomment>
- <translation>Minecraft wurde mit exitcode %1 beendet.</translation>
+ <translation>Minecraft wurde mit Status %1 beendet.</translation>
</message>
<message>
- <location filename="../logic/MinecraftProcess.cpp" line="126"/>
+ <location line="+5"/>
+ <source>Minecraft crashed with exitcode %1.</source>
+ <extracomment>Message displayed on instance crashed</extracomment>
+ <translation>Minecraft ist mit dem Status %1 abgesturtzt</translation>
+ </message>
+ <message>
+ <location line="+6"/>
<source>Minecraft was killed by user.</source>
<extracomment>Message displayed after the instance exits due to kill request</extracomment>
- <translation>Minecraft wurde durch den nutzer gekillt.</translation>
+ <translation>Minecraft wurde durch den Nutzer gekillt.</translation>
</message>
<message>
- <location filename="../logic/MinecraftProcess.cpp" line="175"/>
+ <location line="+52"/>
<source>Could not launch minecraft!</source>
<extracomment>Error message displayed if instace can&apos;t start</extracomment>
<translation>Konnte Minecraft nicht starten!</translation>
@@ -980,15 +1750,15 @@ p, li { white-space: pre-wrap; }
<name>MultiMC</name>
<message>
<source>display this help and exit.</source>
- <translation type="obsolete">Zeigt diese Hilfe und beended das Programm.</translation>
+ <translation type="obsolete">Zeigt diese Hilfe und beendet das Programm.</translation>
</message>
<message>
<source>display program version and exit.</source>
- <translation type="obsolete">Zeigt die programmversion an und beendet das Programm.</translation>
+ <translation type="obsolete">Zeigt die Programmversion an und beendet das Programm.</translation>
</message>
<message>
<source>use the supplied directory as MultiMC root instead of the binary location (use &apos;.&apos; for current)</source>
- <translation type="obsolete">Benutze das angegebene Verzeichnis als Arbeitsverzeichnis anstelle des speicherorts. (Benutze &apos;.&apos; um das aktuele Verzeichnis zu verwenden)</translation>
+ <translation type="obsolete">Benutze das angegebene Verzeichnis als Arbeitsverzeichnis anstelle des Speicherorts. (Benutze &apos;.&apos; um das aktuele Verzeichnis zu verwenden)</translation>
</message>
<message>
<source>replaces the given file with the running executable</source>
@@ -1030,362 +1800,632 @@ p, li { white-space: pre-wrap; }
<context>
<name>NewInstanceDialog</name>
<message>
- <location filename="../gui/newinstancedialog.ui" line="17"/>
+ <location filename="../gui/dialogs/NewInstanceDialog.ui" line="+17"/>
<source>New Instance</source>
<translation>Neue Instanz</translation>
</message>
<message>
- <location filename="../gui/newinstancedialog.ui" line="74"/>
+ <location line="+57"/>
<source>Name</source>
<translation>Name</translation>
</message>
<message>
- <location filename="../gui/newinstancedialog.ui" line="90"/>
+ <location line="+16"/>
<source>Version:</source>
<translation>Version:</translation>
</message>
<message>
- <location filename="../gui/newinstancedialog.ui" line="104"/>
+ <location line="+14"/>
<source>...</source>
<translation>...</translation>
</message>
+ <message>
+ <location filename="../gui/dialogs/NewInstanceDialog.cpp" line="+99"/>
+ <source>Change Minecraft version</source>
+ <translation>Ändere die Minecraft-Version...</translation>
+ </message>
+</context>
+<context>
+ <name>NewsEntry</name>
+ <message>
+ <location filename="../logic/news/NewsEntry.cpp" line="+24"/>
+ <location line="+36"/>
+ <source>Untitled</source>
+ <translation>Unbennant</translation>
+ </message>
+ <message>
+ <location line="-35"/>
+ <location line="+36"/>
+ <source>No content.</source>
+ <translation>Kein Eintrag.</translation>
+ </message>
+ <message>
+ <location line="-34"/>
+ <location line="+36"/>
+ <source>Unknown Author</source>
+ <translation>Unbekannter Autor</translation>
+ </message>
+</context>
+<context>
+ <name>OneSixFTBInstanceForge</name>
+ <message>
+ <location filename="../logic/OneSixFTBInstance.cpp" line="+37"/>
+ <source>Downloading Forge...</source>
+ <translation>Forge wird heruntergeladen...</translation>
+ </message>
+ <message>
+ <location line="+18"/>
+ <source>Installing Forge...</source>
+ <translation>Forge wird installiert...</translation>
+ </message>
+ <message>
+ <location line="+5"/>
+ <source>Couldn&apos;t load the version config</source>
+ <translation>Fehlschlag beim laden der Versions-Konfiguration</translation>
+ </message>
+ <message>
+ <location line="+8"/>
+ <source>Couldn&apos;t install Forge</source>
+ <translation>Fehler beim Installieren von Forge</translation>
+ </message>
</context>
<context>
<name>OneSixModEditDialog</name>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="14"/>
<source>Dialog</source>
<translatorcomment>Am i really responsible for this?</translatorcomment>
- <translation>Edit Mods</translation>
+ <translation type="vanished">Edit Mods</translation>
</message>
<message>
<source>Library</source>
<translation type="obsolete">Bibliothek</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="158"/>
+ <location filename="../gui/dialogs/OneSixModEditDialog.ui" line="+179"/>
<source>Loader Mods</source>
<translation>Mods</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="122"/>
- <location filename="../gui/OneSixModEditDialog.ui" line="176"/>
- <location filename="../gui/OneSixModEditDialog.ui" line="231"/>
+ <location line="-50"/>
+ <location line="+80"/>
+ <location line="+67"/>
<source>&amp;Add</source>
<translation>&amp;Hinzufügen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="33"/>
+ <location line="-262"/>
+ <source>Manage Mods</source>
+ <translation>Verwalte Mods</translation>
+ </message>
+ <message>
+ <location line="+19"/>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="53"/>
+ <location line="+20"/>
<source>Main Class:</source>
<translation>Hauptklasse:</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="73"/>
+ <location line="+20"/>
<source>Replace any current custom version with Minecraft Forge</source>
<translation>Die aktuelle benutzerdefinierte Version mit Minecraft Forge ersetzen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="76"/>
+ <location line="+3"/>
<source>Install Forge</source>
<translation>Forge Installieren</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="83"/>
+ <location line="+7"/>
+ <source>Install LiteLoader</source>
+ <translation>Installiere LiteLoader</translation>
+ </message>
+ <message>
+ <location line="+7"/>
<source>Create an customized copy of the base version</source>
<translation>Eine modifizierbare Kopie der Version erstellen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="86"/>
+ <location line="+3"/>
<source>Customize</source>
<translation>Benutzerdefiniert</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="96"/>
+ <location line="+10"/>
<source>Revert to original base version</source>
<translation>Benutzerdefinierte Einstellungen zurücksetzen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="99"/>
+ <location line="+3"/>
<source>Revert</source>
<translation>Zurücksetzen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="119"/>
+ <location line="+20"/>
<source>Add new libraries</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="132"/>
+ <location line="+13"/>
<source>Remove selected libraries</source>
<translation></translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="135"/>
- <location filename="../gui/OneSixModEditDialog.ui" line="183"/>
- <location filename="../gui/OneSixModEditDialog.ui" line="238"/>
+ <location line="+3"/>
+ <location line="+74"/>
+ <location line="+67"/>
<source>&amp;Remove</source>
<translation>&amp;Entfernen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="203"/>
- <location filename="../gui/OneSixModEditDialog.ui" line="258"/>
+ <location line="-127"/>
+ <source>Open custom.json</source>
+ <translation>Öffne custom.json</translation>
+ </message>
+ <message>
+ <location line="+80"/>
+ <location line="+67"/>
<source>&amp;View Folder</source>
<translation>&amp;Ordner öffnen</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.ui" line="213"/>
+ <location line="-45"/>
<source>Resource Packs</source>
<translation>Resourcenpacks</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.cpp" line="108"/>
- <location filename="../gui/OneSixModEditDialog.cpp" line="131"/>
+ <location filename="../gui/dialogs/OneSixModEditDialog.cpp" line="-205"/>
+ <location line="+34"/>
<source>Revert?</source>
<translation>Zurücksetzen?</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.cpp" line="108"/>
+ <location line="-34"/>
<source>Do you want to revert the version of this instance to its original configuration?</source>
<translation>Möchtest du wirklich die Version dieser Instanz zurücksetzen?</translation>
</message>
<message>
- <location filename="../gui/OneSixModEditDialog.cpp" line="132"/>
+ <location line="+20"/>
+ <source>Error</source>
+ <translation>Fehler</translation>
+ </message>
+ <message>
+ <location line="+0"/>
+ <source>Unable to open custom.json, check the settings</source>
+ <translation>Fehler beim Öffnen der custom.json Datei, überprüfen Sie Ihre Einstellungen</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Select Forge version</source>
+ <translation>Wähle Forge-Version</translation>
+ </message>
+ <message>
+ <location line="+8"/>
<source>This will revert any changes you did to the version up to this point. Is that OK?</source>
<translation>Dies wird alle Änderungen, die du vorgenommen hast zurücksetzen. Bist du damit einverstanden?</translation>
</message>
+ <message>
+ <location line="+69"/>
+ <location line="+15"/>
+ <source>LiteLoader</source>
+ <translation>LiteLoader</translation>
+ </message>
+ <message>
+ <location line="-14"/>
+ <source>There is no information available on how to install LiteLoader into this version of Minecraft</source>
+ <translation>Es gibt momentan keine Informationen zur Installation von LiteLoader für diese Version von Minecraft</translation>
+ </message>
+ <message>
+ <location line="+15"/>
+ <source>For reasons unknown, the LiteLoader installation failed. Check your MultiMC log files for details.</source>
+ <translation>Aus unbekannten Gründen ist die Installation von LiteLoader fehlgeschlagen. Schauen sie sich Ihre MultiMC Logdateien an, um weitere Details zu erhalten.</translation>
+ </message>
+</context>
+<context>
+ <name>OneSixUpdate</name>
+ <message>
+ <location filename="../logic/OneSixUpdate.cpp" line="+60"/>
+ <location line="+32"/>
+ <source>Testing the Java installation...</source>
+ <translation>Java-Installation wird getestet...</translation>
+ </message>
+ <message>
+ <location line="+39"/>
+ <source>Getting the version files from Mojang...</source>
+ <translation>Versionsdateien von Mojang werden herruntergeladen...</translation>
+ </message>
+ <message>
+ <location line="+68"/>
+ <source>Updating assets index...</source>
+ <translation>Datenindex wird aktualisiert...</translation>
+ </message>
+ <message>
+ <location line="+51"/>
+ <source>Getting the assets files from Mojang...</source>
+ <translation>Daten werden von Mojang geholt...</translation>
+ </message>
+ <message>
+ <location line="+34"/>
+ <source>Getting the library files from Mojang...</source>
+ <translation>Bibliotheken werden von Mojang geholt...</translation>
+ </message>
+ <message>
+ <location line="+88"/>
+ <source>Preparing for launch...</source>
+ <translation>Der Start wird vorbereitet...</translation>
+ </message>
</context>
<context>
<name>ProgressDialog</name>
<message>
- <location filename="../gui/ProgressDialog.ui" line="26"/>
+ <location filename="../gui/dialogs/ProgressDialog.ui" line="+26"/>
<source>Please wait...</source>
<translation>Bitte warten...</translation>
</message>
<message>
- <location filename="../gui/ProgressDialog.ui" line="32"/>
+ <location line="+6"/>
<source>Task Status...</source>
<translation>Aufgabenstatus...</translation>
</message>
+ <message>
+ <location line="+26"/>
+ <source>Skip</source>
+ <translation>Überspringen</translation>
+ </message>
+</context>
+<context>
+ <name>QObject</name>
+ <message>
+ <location filename="../logic/NagUtils.cpp" line="+26"/>
+ <source>JVM arguments warning</source>
+ <translation>JVM argument verwarnung</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>You tried to manually set a JVM memory option (using &quot;-XX:PermSize&quot;, &quot;-Xmx&quot; or &quot;-Xms&quot;) - there are dedicated boxes for these in the settings (Java tab, in the Memory group at the top).
+Your manual settings will be overridden by the dedicated options.
+This message will be displayed until you remove them from the JVM arguments.</source>
+ <translation>Sie haben versucht manuel eine JVM Speicher option anzugeben (&quot;-XX:PermSize&quot;, &quot;-Xmx&quot; oder &quot;-Xms&quot;) - es gibt hierfür gewidmete boxen in den einstellung (Java tab, in der Speicher gruppe am anfang).
+Ihre manuellen einstellungen werden von den gewidmeten überschrieben werden.
+Diese Mitteilung wird angezeigt werden bis Sie sie von den JVM argumenten entfernt haben.</translation>
+ </message>
+ <message>
+ <location filename="../gui/dialogs/ModEditDialogCommon.cpp" line="+53"/>
+ <source>How sad!</source>
+ <translation>Wie schade!</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>The mod author didn&apos;t provide a website link for this mod.</source>
+ <translation>Der Autor des mods hat keine link zu einer webseite angegeben.</translation>
+ </message>
+</context>
+<context>
+ <name>RefreshTask</name>
+ <message>
+ <location filename="../logic/auth/flows/RefreshTask.cpp" line="+148"/>
+ <source>Refreshing login token...</source>
+ <translation>Auffrischung des Login-Tokens...</translation>
+ </message>
+ <message>
+ <location line="+2"/>
+ <source>Refreshing login token: Processing response...</source>
+ <translation>Auffrischung des Login-Tokens: Verarbeite Antwort...</translation>
+ </message>
</context>
<context>
<name>SettingsDialog</name>
<message>
- <location filename="../gui/settingsdialog.ui" line="20"/>
+ <location filename="../gui/dialogs/SettingsDialog.ui" line="+20"/>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="40"/>
+ <location line="+20"/>
<source>General</source>
- <translation>Generell</translation>
+ <translation>Allgemein</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="49"/>
+ <location line="+9"/>
<source>Sorting Mode</source>
<translation>Sortiermodus</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="55"/>
+ <location line="+6"/>
<source>By last launched</source>
<translation>Nach letzem Start</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="65"/>
+ <location line="+10"/>
<source>By name</source>
<translation>Nach Namen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="78"/>
+ <location line="+13"/>
<source>Update Settings</source>
<translation>Updateeinstellungen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="84"/>
+ <location line="+6"/>
<source>Use development builds?</source>
<translation>Entwicklerversionen benutzen?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="91"/>
+ <location line="+7"/>
<source>Check for updates when MultiMC starts?</source>
<translation>Beim Start nach Updates suchen?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="101"/>
+ <location line="+97"/>
<source>Folders</source>
<translation>Ordner</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="107"/>
+ <location line="+6"/>
<source>Instances:</source>
<translation>Instanzen:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="117"/>
- <location filename="../gui/settingsdialog.ui" line="134"/>
- <location filename="../gui/settingsdialog.ui" line="151"/>
+ <location line="-69"/>
+ <location line="+46"/>
+ <location line="+33"/>
+ <location line="+20"/>
+ <location line="+14"/>
+ <location line="+17"/>
+ <location line="+26"/>
+ <location line="+289"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="124"/>
+ <location line="-469"/>
+ <source>FTB</source>
+ <translation>FTB</translation>
+ </message>
+ <message>
+ <location line="+31"/>
+ <source>Launcher:</source>
+ <translation>Launcher:</translation>
+ </message>
+ <message>
+ <location line="+14"/>
+ <source>Track FTB instances</source>
+ <translation>FTB-Instanzen beobachten</translation>
+ </message>
+ <message>
+ <location line="+32"/>
+ <source>Files:</source>
+ <translation>Dateien:</translation>
+ </message>
+ <message>
+ <location line="+33"/>
<source>Mods:</source>
<translation>Mods:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="141"/>
+ <location line="+20"/>
<source>LWJGL:</source>
<translation>LWJGL:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="175"/>
+ <location line="+17"/>
+ <source>Icons:</source>
+ <translation>Symbole:</translation>
+ </message>
+ <message>
+ <location line="+17"/>
+ <source>External Editors (leave empty for system default)</source>
+ <translation>Externe Editor-Anwendungen (leer lassen, um die System-Voreinstellung zu benutzen)</translation>
+ </message>
+ <message>
+ <location line="+9"/>
+ <source>JSON Editor:</source>
+ <translation>JSON Editor:</translation>
+ </message>
+ <message>
+ <location line="+31"/>
<source>Minecraft</source>
<translation>Minecraft</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="181"/>
+ <location line="+6"/>
<source>Window Size</source>
<translation>Fenstergröße</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="187"/>
+ <location line="+6"/>
<source>Start Minecraft maximized?</source>
<translation>Minecraft maximiert starten?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="196"/>
+ <location line="+9"/>
<source>Window height:</source>
<translation>Fensterhöhe:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="203"/>
+ <location line="+7"/>
<source>Window width:</source>
<translation>Fensterbreite:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="244"/>
+ <location line="+41"/>
<source>Console Settings</source>
<translation>Konsoleneinstellungen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="250"/>
+ <location line="+6"/>
<source>Show console while the game is running?</source>
<translation>Konsole anzeigen wenn das Spiel läuft?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="257"/>
+ <location line="+7"/>
<source>Automatically close console when the game quits?</source>
<translation>Konsole automatisch schließen, nachdem das Spiel beendet wurde?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="267"/>
<source>Login automatically when an instance icon is double clicked?</source>
- <translation>Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?</translation>
+ <translation type="vanished">Automatisch einloggen, wenn das Instanzsymbol doppelt geklickt wurde?</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="288"/>
+ <location line="+24"/>
<source>Java</source>
<translation>Java</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="294"/>
+ <location line="+6"/>
<source>Memory</source>
<translation>Arbeitsspeicher</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="316"/>
+ <location line="+22"/>
<source>Minimum memory allocation:</source>
<translation>Min. Arbeitspeicher:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="323"/>
+ <location line="+7"/>
<source>Maximum memory allocation:</source>
<translation>Max. Arbeitspeicher:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="346"/>
+ <location line="+23"/>
<source>PermGen:</source>
<translation>PermGen:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="372"/>
+ <location line="+26"/>
<source>Java Settings</source>
<translation>Java-Einstellungen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="378"/>
+ <location line="+12"/>
<source>Java path:</source>
<translation>Java-Pfad:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="385"/>
+ <location line="+13"/>
+ <source>Auto-detect...</source>
+ <translation>Auto-Erkennung:</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>Test</source>
+ <translation>Test</translation>
+ </message>
+ <message>
+ <location line="+13"/>
<source>JVM arguments:</source>
<translation>JVM-Argumente:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="398"/>
<source>Browse...</source>
- <translation>Durchsuchen...</translation>
+ <translation type="vanished">Durchsuchen...</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="417"/>
<source>Auto-detect</source>
- <translation>Automatisch erkennen</translation>
+ <translation type="vanished">Automatisch erkennen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="427"/>
+ <location line="+39"/>
<source>Custom Commands</source>
<translation>Eigene Befehle</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="433"/>
+ <location line="+6"/>
<source>Post-exit command:</source>
<translation>Nach-abschluss-Befehl:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="440"/>
+ <location line="+7"/>
<source>Pre-launch command:</source>
<translation>Vor-Start-Befehl:</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.ui" line="462"/>
+ <location line="+22"/>
<source>Pre-launch command runs before the instance launches and post-exit command runs after it exits. Both will be run in MultiMC&apos;s working directory with INST_ID, INST_DIR, and INST_NAME as environment variables.</source>
<translation>Vor-Start wird ausgeführt, bevor die Instanz startet, Nach-Ende nachdem die Instanz beendet wurde. Beide werden Im ausführungsverzeichnis von MultiMC gestartet. Verfügbare Umgebungsvariablen: INST_ID, INST_DIR, INST_NAME.</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="53"/>
+ <location filename="../gui/dialogs/SettingsDialog.cpp" line="+77"/>
+ <source>FTB Launcher Directory</source>
+ <translation>FTB-Launcher-Ordner</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>FTB Directory</source>
+ <translation>FTB-Ordner</translation>
+ </message>
+ <message>
+ <location line="+13"/>
<source>Instance Directory</source>
<translation>Instanz-Ordner</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="61"/>
+ <location line="+12"/>
+ <source>Icons Directory</source>
+ <translation>Symbolordner</translation>
+ </message>
+ <message>
+ <location line="+13"/>
<source>Mods Directory</source>
<translation>Modordner</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="69"/>
+ <location line="+13"/>
<source>LWJGL Directory</source>
<translation>LWJGL-Ordner</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="103"/>
+ <location line="+14"/>
+ <source>JSON Editor</source>
+ <translation>JSON Editor</translation>
+ </message>
+ <message>
+ <location line="+23"/>
+ <source>Invalid</source>
+ <translation>Ungültig</translation>
+ </message>
+ <message>
+ <location line="+0"/>
+ <source>The file chosen does not seem to be an executable</source>
+ <translation>Die ausgesuchte Datei scheint keine Anwendung zu sein</translation>
+ </message>
+ <message>
+ <location line="+34"/>
<source>Development builds</source>
<translation>Entwicklerversionen</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="104"/>
+ <location line="+1"/>
<source>Development builds contain experimental features and may be unstable. Are you sure you want to enable them?</source>
- <translation>Entwicklerversionen enthalten experimentelle Features und können instabil sein. Möchtest du sie dennoch aktivieren?</translation>
+ <translation>Entwicklerversionen enthalten experimentelle Features und können instabil sein. Möchtest du Sie dennoch aktivieren?</translation>
+ </message>
+ <message>
+ <location line="+132"/>
+ <source>Select a Java version</source>
+ <translation>Wähle Java version</translation>
</message>
<message>
- <location filename="../gui/settingsdialog.cpp" line="195"/>
+ <location line="+13"/>
<source>Find Java executable</source>
<translatorcomment>Umm... this translation is a bit meh</translatorcomment>
- <translation type="unfinished">Java-Anwendung finden</translation>
+ <translation>Java-Anwendung finden</translation>
+ </message>
+ <message>
+ <location line="+27"/>
+ <source>Java test success</source>
+ <translation>Java test erfolgreich abgeschlossen</translation>
+ </message>
+ <message>
+ <location line="+5"/>
+ <source>Java test failure</source>
+ <translation>Java test fehlgeschlagen</translation>
+ </message>
+ <message>
+ <location line="+1"/>
+ <source>The specified java binary didn&apos;t work. You should use the auto-detect feature, or set the path to the java executable.</source>
+ <translation>Das ausgewählte Java-Program hat nicht funktioniert. Sie sollten die Auto-Erkennung benutzen, oder den Pfad zum Java-Programm angeben.</translation>
</message>
</context>
<context>
@@ -1400,11 +2440,51 @@ p, li { white-space: pre-wrap; }
</message>
</context>
<context>
+ <name>UpdateDialog</name>
+ <message>
+ <location filename="../gui/dialogs/UpdateDialog.ui" line="+14"/>
+ <source>MultiMC Update</source>
+ <translation>Neue MultiMC Version</translation>
+ </message>
+ <message>
+ <location line="+10"/>
+ <source>A new MultiMC update is available!</source>
+ <translation>Eine Neue Version von MultiMC ist jetzt verfügbar!</translation>
+ </message>
+ <message>
+ <location line="+16"/>
+ <source>Update now</source>
+ <translation>Jetzt herunterladen</translation>
+ </message>
+ <message>
+ <location line="+7"/>
+ <source>Update after MultiMC closes</source>
+ <translation>Herunterladen wenn MultiMC geschlossen wird</translation>
+ </message>
+ <message>
+ <location line="+13"/>
+ <source>Don&apos;t update yet</source>
+ <translation>Noch nicht herrunterladen</translation>
+ </message>
+</context>
+<context>
+ <name>ValidateTask</name>
+ <message>
+ <location filename="../logic/auth/flows/ValidateTask.cpp" line="+58"/>
+ <source>Validating access token: Sending request...</source>
+ <translation>Validiere Zugriffstoken: Sende Anfrage...</translation>
+ </message>
+ <message>
+ <location line="+2"/>
+ <source>Validating access token: Processing response...</source>
+ <translation>Validiere Zugriffstoken: Bearbeite Antwort...</translation>
+ </message>
+</context>
+<context>
<name>VersionSelectDialog</name>
<message>
- <location filename="../gui/versionselectdialog.ui" line="14"/>
<source>Dialog</source>
- <translation>Dialog</translation>
+ <translation type="vanished">Dialog</translation>
</message>
<message>
<source>Show &amp;snapshots?</source>
@@ -1412,17 +2492,65 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<source>Show &amp;Nostalgia?</source>
- <translation type="obsolete">&apos;&amp;Nostalgia&apos;-Versionen anzeigen?</translation>
+ <translation type="obsolete">&apos;&amp;Nostalgie&apos;-Versionen anzeigen?</translation>
+ </message>
+ <message>
+ <location filename="../gui/dialogs/VersionSelectDialog.ui" line="+14"/>
+ <source>Choose Version</source>
+ <translation>Wähle Version</translation>
</message>
<message>
- <location filename="../gui/versionselectdialog.ui" line="47"/>
+ <location line="+33"/>
<source>Reloads the version list.</source>
<translation>Instanzliste aktualisieren.</translation>
</message>
<message>
- <location filename="../gui/versionselectdialog.ui" line="50"/>
+ <location line="+3"/>
<source>&amp;Refresh</source>
<translation>&amp;Aktualisieren</translation>
</message>
</context>
+<context>
+ <name>YggdrasilTask</name>
+ <message>
+ <location filename="../logic/auth/YggdrasilTask.cpp" line="+98"/>
+ <source>&lt;b&gt;SSL Handshake failed.&lt;/b&gt;&lt;br/&gt;There might be a few causes for it:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;You use Windows XP and need to &lt;a href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=38918&quot;&gt;update your root certificates&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Some device on your network is interfering with SSL traffic. In that case, you have bigger worries than Minecraft not starting.&lt;/li&gt;&lt;li&gt;Possibly something else. Check the MultiMC log file for details&lt;/li&gt;&lt;/ul&gt;</source>
+ <translation>&lt;b&gt;SSL-Handshake fehlgeschlagen.&lt;/b&gt;&lt;br/&gt;Es kann mehrere Erklärungen geben:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;Sie benutzen Windows XP und mussen &lt;a href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=38918&quot;&gt;Ihr root certifikat aktualisieren&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Irgend ein gerät in Ihrem Netzwerk mischt sich in den SSL verkehr mit ein. In diesem fall haben sie grössere probleme alls das Minecraft nicht starten kann.&lt;/li&gt;&lt;li&gt;Möglicherweise irgendetwas anderes. Sehen sie in der MultiMC log Datei nach um weitere Details zu finden&lt;/li&gt;&lt;/ul&gt;</translation>
+ </message>
+ <message>
+ <location line="+47"/>
+ <source>An unknown error occurred when processing the response from the authentication server.</source>
+ <translation>Ein unbekannter Fehler ist beim Bearbeiten der Antwort des Authentifizierungs-Servers aufgetreten.</translation>
+ </message>
+ <message>
+ <location line="+5"/>
+ <source>Failed to parse Yggdrasil JSON response: %1 at offset %2.</source>
+ <translation>Fehler beim Bearbeiten der Yggdrasil-JSON-Antwort: %1 bei %2.</translation>
+ </message>
+ <message>
+ <location line="+26"/>
+ <source>An unknown error occurred when trying to communicate with the authentication server: %1</source>
+ <translation>Ein unbekannter Fehler ist aufgetreten bei der Kommunikation mit den Authentifizierungs-Server: %1</translation>
+ </message>
+ <message>
+ <location line="+20"/>
+ <source>An unknown Yggdrasil error occurred.</source>
+ <translation>Ein unbekannter Yggdrasil-Fehler ist aufgetreten.</translation>
+ </message>
+ <message>
+ <location line="+9"/>
+ <source>Sending request to auth servers...</source>
+ <translation>Sende Anfrage an die Authentifizierungs-Server...</translation>
+ </message>
+ <message>
+ <location line="+2"/>
+ <source>Processing response from servers...</source>
+ <translation>Bearbeite Antwort des Authentifizierungs-Servers...</translation>
+ </message>
+ <message>
+ <location line="+2"/>
+ <source>Processing. Please wait...</source>
+ <translation>Bearbeite. Bitte warten...</translation>
+ </message>
+</context>
</TS>