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 @@
0
0
- 526
- 723
+ 545
+ 609
@@ -35,43 +35,11 @@
0
-
+
- General
+ Features
-
- -
-
-
- true
-
-
- Sorting Mode
-
-
-
-
-
-
- By last launched
-
-
- sortingModeGroup
-
-
-
- -
-
-
- By name
-
-
- sortingModeGroup
-
-
-
-
-
-
+
-
@@ -86,32 +54,28 @@
-
-
-
-
-
-
- Update Channel:
-
-
-
- -
-
-
- false
-
-
-
- -
-
-
- No channel selected.
-
-
- true
-
-
-
-
+
+
+ Update Channel:
+
+
+
+ -
+
+
+ false
+
+
+
+ -
+
+
+ No channel selected.
+
+
+ true
+
+
@@ -280,6 +244,78 @@
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
+
+
+ User Interface
+
+
+ -
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+ Language (needs restart):
+
+
+
+ -
+
+
+
+
+ -
+
+
+ true
+
+
+ Sorting Mode
+
+
+
-
+
+
+ By last launched
+
+
+ sortingModeGroup
+
+
+
+ -
+
+
+ By name
+
+
+ sortingModeGroup
+
+
+
+
+
+
-
@@ -427,165 +463,6 @@
-
-
- Network settings.
-
-
- Network
-
-
- -
-
-
- Proxy
-
-
-
-
-
-
- Type
-
-
-
-
-
-
- Uses your system's default proxy settings.
-
-
- Default
-
-
- proxyGroup
-
-
-
- -
-
-
- None
-
-
- proxyGroup
-
-
-
- -
-
-
- SOCKS5
-
-
- proxyGroup
-
-
-
- -
-
-
- HTTP
-
-
- proxyGroup
-
-
-
-
-
-
- -
-
-
- Address and Port
-
-
-
-
-
-
- 127.0.0.1
-
-
-
- -
-
-
- Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
-
-
- QAbstractSpinBox::PlusMinus
-
-
- 65535
-
-
- 8080
-
-
-
-
-
-
- -
-
-
- Authentication
-
-
-
-
-
-
- -
-
-
- Username:
-
-
-
- -
-
-
- Password:
-
-
-
- -
-
-
- QLineEdit::Password
-
-
-
- -
-
-
- Note: Proxy username and password are stored in plain text inside MultiMC's configuration file!
-
-
- true
-
-
-
-
-
-
-
-
-
- -
-
-
- Qt::Vertical
-
-
-
- 20
- 40
-
-
-
-
-
-
Java
@@ -827,6 +704,165 @@
+
+
+ Network settings.
+
+
+ Network
+
+
+ -
+
+
+ Proxy
+
+
+
-
+
+
+ Type
+
+
+
-
+
+
+ Uses your system's default proxy settings.
+
+
+ Default
+
+
+ proxyGroup
+
+
+
+ -
+
+
+ None
+
+
+ proxyGroup
+
+
+
+ -
+
+
+ SOCKS5
+
+
+ proxyGroup
+
+
+
+ -
+
+
+ HTTP
+
+
+ proxyGroup
+
+
+
+
+
+
+ -
+
+
+ Address and Port
+
+
+
-
+
+
+ 127.0.0.1
+
+
+
+ -
+
+
+ Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
+
+
+ QAbstractSpinBox::PlusMinus
+
+
+ 65535
+
+
+ 8080
+
+
+
+
+
+
+ -
+
+
+ Authentication
+
+
+
-
+
+
+ -
+
+
+ Username:
+
+
+
+ -
+
+
+ Password:
+
+
+
+ -
+
+
+ QLineEdit::Password
+
+
+
+ -
+
+
+ Note: Proxy username and password are stored in plain text inside MultiMC's configuration file!
+
+
+ true
+
+
+
+
+
+
+
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+
+
-
@@ -845,20 +881,6 @@
buttonBox
sortLastLaunchedBtn
sortByNameBtn
- autoUpdateCheckBox
- trackFtbBox
- ftbLauncherBox
- ftbLauncherBrowseBtn
- ftbBox
- ftbBrowseBtn
- instDirTextBox
- instDirBrowseBtn
- modsDirTextBox
- modsDirBrowseBtn
- lwjglDirTextBox
- lwjglDirBrowseBtn
- iconsDirTextBox
- iconsDirBrowseBtn
jsonEditorTextBox
jsonEditorBrowseBtn
maximizedCheckBox
@@ -916,7 +938,7 @@
-
+
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 @@
-
+
AboutDialog
-
- Dialog
+ Dialog
-
+
MultiMC
-
+
Über
-
- MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.
+ MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.
-
+
+
+ Über MultiMC
+
+
+
+
+ <html><head/><body><p>MultiMC ist ein alternativer Launcher, der das Management von Minecraft vereinfacht, indem er es dir erlaubt, mehrere Installationen von Minecraft zu verwalten.</p></body></html>
+
+
+
© 2013 MultiMC Contributors
-
+
-
-
- Hey, Translator, You are free to put a reference to you here :)
- Deutsche Sprachdatei von Kilobyte (siehe oben).
-
-
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">MultiMC</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Andrew Okin <</span><a href="mailto:forkk@forkk.net"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">forkk@forkk.net</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Petr Mrázek <</span><a href="mailto:peterix@gmail.com"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">peterix@gmail.com</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Sky <</span><a href="https://www.twitter.com/drayshak"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">@drayshak</span></a><span style=" font-size:10pt;">></span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:10pt; font-weight:600;">Mit dank an</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Orochimarufan <</span><a href="mailto:orochimarufan.x3@gmail.com"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">orochimarufan.x3@gmail.com</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">TakSuyu <</span><a href="mailto:taksuyu@gmail.com"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">taksuyu@gmail.com</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Kilobyte <</span><a href="mailto:stiepen22@gmx.de"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">stiepen22@gmx.de</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Jan (02JanDal) <</span><a href="mailto:02jandal@gmail.com"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">02jandal@gmail.com</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Robotbrain <</span><a href="https://twitter.com/skylordelros"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">@skylordelros</span></a><span style=" font-size:10pt;">></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Rootbear75 <</span><a href="https://twitter.com/rootbear75"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">@rootbear75</span></a><span style=" font-size:10pt;">> (bau server)</span></p></body></html>
+
+
+
+
+ Hey, Translator, feel free to put credit to you here
+ Deutsche Sprachdatei von Kilobyte (siehe oben). Aktualisiert von xnrand (nsfw auf IRC) und Jan.
+
+
+
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'DejaVu Sans Mono'; font-size:7.8pt; font-weight:400; font-style:normal;">
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">MultiMC</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Copyright 2012-2014 MultiMC Contributors</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Licensed under the Apache License, Version 2.0 (the "License");</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">you may not use this file except in compliance with the License.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">You may obtain a copy of the License at</span></p>
<p style="-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;"><br /></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Redistribution and use in source and binary forms, with or without modification,</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">are permitted provided that the following conditions are met:</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> http://www.apache.org/licenses/LICENSE-2.0</span></p>
<p style="-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;"><br /></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">* Redistributions of source code must retain the above copyright notice, this</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> list of conditions and the following disclaimer.</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">* Redistributions in binary form must reproduce the above copyright notice, this</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> list of conditions and the following disclaimer in the documentation and/or other</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> materials provided with the distribution.</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">* The name of the contributors may not be used to endorse or promote products</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> derived from this software without specific prior written permission.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Unless required by applicable law or agreed to in writing, software</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">distributed under the License is distributed on an "AS IS" BASIS,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">See the License for the specific language governing permissions and</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">limitations under the License.</span></p>
<p style="-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;"><br /></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">OF THE POSSIBILITY OF SUCH DAMAGE.</span></p></body></html>
-
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">QSLog</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Copyright (c) 2010, Razvan Petru</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">All rights reserved.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Redistribution and use in source and binary forms, with or without modification,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">are permitted provided that the following conditions are met:</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">* Redistributions of source code must retain the above copyright notice, this</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> list of conditions and the following disclaimer.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">* Redistributions in binary form must reproduce the above copyright notice, this</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> list of conditions and the following disclaimer in the documentation and/or other</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> materials provided with the distribution.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">* The name of the contributors may not be used to endorse or promote products</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> derived from this software without specific prior written permission.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">OF THE POSSIBILITY OF SUCH DAMAGE.</span></p>
+<p style="-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;"><br /></p>
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">Group View (instance view)</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> /*</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Copyright (C) 2007 Rafael Fernández López <ereslibre@kde.org></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Copyright (C) 2007 John Tapsell <tapsell@kde.org></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> *</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * This library is free software; you can redistribute it and/or</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * modify it under the terms of the GNU Library General Public</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * License as published by the Free Software Foundation; either</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * version 2 of the License, or (at your option) any later version.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> *</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * This library is distributed in the hope that it will be useful,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Library General Public License for more details.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> *</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * You should have received a copy of the GNU Library General Public License</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * along with this library; see the file COPYING.LIB. If not, write to</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Boston, MA 02110-1301, USA.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> */</span></p>
+<p style="-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;"><br /></p>
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">Pack200</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The GNU General Public License (GPL)</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Version 2, June 1991</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">+ "CLASSPATH" EXCEPTION TO THE GPL</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Certain source files distributed by Oracle America and/or its affiliates are</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">subject to the following clarification and special exception to the GPL, but</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">only where Oracle has expressly included in the particular source file's header</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">the words "Oracle designates this particular file as subject to the "Classpath"</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">exception as provided by Oracle in the LICENSE file that accompanied this code."</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> Linking this library statically or dynamically with other modules is making</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> a combined work based on this library. Thus, the terms and conditions of</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> the GNU General Public License cover the whole combination.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> As a special exception, the copyright holders of this library give you</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> permission to link this library with independent modules to produce an</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> executable, regardless of the license terms of these independent modules,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> and to copy and distribute the resulting executable under terms of your</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> choice, provided that you also meet, for each linked independent module,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> the terms and conditions of the license of that module. An independent</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> module is a module which is not derived from or based on this library. If</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> you modify this library, you may extend this exception to your version of</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> the library, but you are not obligated to do so. If you do not wish to do</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> so, delete this exception statement from your version.</span></p>
+<p style="-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;"><br /></p>
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">Quazip</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Copyright (C) 2005-2011 Sergey A. Tachenov</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This program is free software; you can redistribute it and/or modify it</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">under the terms of the GNU Lesser General Public License as published by</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">the Free Software Foundation; either version 2 of the License, or (at</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">your option) any later version.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This program is distributed in the hope that it will be useful, but</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">WITHOUT ANY WARRANTY; without even the implied warranty of</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">General Public License for more details.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You should have received a copy of the GNU Lesser General Public License</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">along with this program; if not, write to the Free Software Foundation,</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">See COPYING file for the full LGPL text.</span></p>
+<p style="-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;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Original ZIP package is copyrighted by Gilles Vollant, see</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">quazip/(un)zip.h files for details, basically it's zlib license.</span></p>
+<p style="-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;"><br /></p>
+<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:18pt; font-weight:600;">xz-minidec</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">/*</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * XZ decompressor</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> *</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Authors: Lasse Collin <lasse.collin@tukaani.org></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * Igor Pavlov <http://7-zip.org/></span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> *</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * This file has been put into the public domain.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> * You can do whatever you want with this file.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> */</span></p></body></html>
+
+
+
+
+ Abspaltung/Weiterverbreitung
+
+
+
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt;">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</span></p>
+<p style="-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:'Bitstream Vera Sans'; font-size:11pt;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt;">Eine der grunde das wir die Apache Licens gewählt haben ist das wir nicht wollen das der "MultiMC" name benutzt wird beim weiterverbreiten. Dies bedeutet das leute sich die zeit nehmen mussen den code durchzugehen und alle referencen zu "MultiMC", inkludirend aber nicht begrenzt zu dem "MultiMC" Logo und den titeln in Fenstern (kein *MultiMC-fork* im titel)</span></p>
+<p style="-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:'Bitstream Vera Sans'; font-size:11pt;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt;">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 </span><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt; font-weight:600;">ohne</span><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt;"> unserem Segen</span></p></body></html>
<html><head/><body><p><a href="http://github.com/Forkk/MultiMC5"><span style=" text-decoration: underline; color:#0000ff;">http://github.com/Forkk/MultiMC5</span></a></p></body></html>
-
+
Dank an
@@ -112,7 +388,7 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Deutsche Übersetzung: Kilobyte <<a href="mailto:stiepen22@gmx.de"><span style=" text-decoration: underline; color:#0000ff;">stiepen22@gmx.de</span></a>></p></body></html>
-
+
Lizenz
@@ -201,83 +477,289 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">POSSIBILITY OF SUCH DAMAGE.</span></p></body></html>
-
+
Über Qt
-
+
Schließen
+
+ AccountListDialog
+
+
+
+ Konto verwaltung
+
+
+
+
+ <html><head/><body><p>Willkommen! Sollten Sie neu sein können Sie "Hinzufügen" drucken um ihr Mojang oder Minecraft Konto hinzuzufügen</p></body></html>
+
+
+
+
+ &Hinzufügen
+
+
+
+
+ &Entfernen
+
+
+
+
+ <html><head/><body><p>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).</p></body></html>
+
+
+
+
+ &Benutze als voreinstellung
+
+
+
+
+ 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.
+
+
+
+
+ &Keine Voreinstellung
+
+
+
+
+ Bitte gib Benutzernamen und Passwort deines Mojang- oder Minecraft-Kontos an um es hinzuzufügen.
+
+
+
+
+ Loginfehler.
+
+
+
+ AccountSelectDialog
+
+
+
+ Wähle ein Konto
+
+
+
+
+ Wähle ein konto.
+
+
+
+
+ Als Voreinstellung benutzen?
+
+
+
+
+ Nur für diese Instanz als Voreinstellung benutzen?
+
+
+
+ AssetsMigrateTask
+
+
+
+ Migriere bestehende Daten...
+
+
+
+ AuthenticateTask
+
+
+
+ Authentifizierung: Sende Anfrage...
+
+
+
+
+ Authentifizierung: Bearbeite Antwort...
+
+
ConsoleWindow
-
+
MultiMC-Konsole
-
+
+
+ Log hochladen
+
+
+
+
+ &Minecraft Killen
+
+
+
+
+ &Schließen
+
+
- Minecraft Killen
+ Minecraft Killen
-
- Schließen
+ Schließen
-
+
- Main question of the kill confirmation dialog
Minecraft Killen?
-
+
Dies kann diese Instanz beschädigen und sollte daher nur genutzt werden, wenn Minecraft eingefroren ist
+
+ CopyInstanceDialog
+
+
+
+ Kopiere Instanz
+
+
+
+
+ Name
+
+
+
+ DownloadUpdateTask
+
+
+
+ Finde Informationen zur benutzten Version...
+
+
+
+
+ Lade Versionsinformationen...
+
+
+
+
+ Laden der Versionsdateien ist fehlgeschlagen.
+
+
+
+
+ Bearbeite die Dateiliste der neuen Version...
+
+
+
+
+ Bearbeite die Dateilsite der benutzten Version...
+
+
+
+
+ Fehler beim Bearbeiten der Updateliste...
+
+
+
+
+ %1 Dateien werden heruntergeladen.
+
+
+
+
+ Bearbete Dateilisten - Rechne aus, wie das Update installiert werden soll...
+
+
+
+
+ Fehler beim Schreiben des Updatescripts.
+
+
+
+
+ Fehler beim Herunterladen der Updatedateien.
+
+
+
+ EditAccountDialog
+
+
+
+ Bearbeite Konto
+
+
+
+
+ Message label placeholder.
+
+
+
+
+ Email / Benutzername
+
+
+
+
+ Passwort
+
+
EditNotesDialog
-
+
Notizen bearbeiten
-
+
Notizen von %1 bearbeiten
+
+ ForgeListLoadTask
+
+
+
+ Lade die Forge-Versionslisten...
+
+
IconPickerDialog
-
+
Symbol auswählen
-
+
Symbol hinzufügen
-
+
Symbol entfernen
-
+
The title of the select icons open file dialog
Symbol auswählen
-
+
The type of icon files
Symbole
@@ -286,140 +768,190 @@ p, li { white-space: pre-wrap; }
InstanceSettings
-
+
+
+ Instanzeinstellungen
+
+
+
-
+
Fenstergröße
-
+
Minecraft maximiert starten?
-
+
Fensterhöhe:
-
+
Fensterbreite:
-
+
Konsoleneinstellungen
-
+
Konsole anzeigen wenn das Spiel läuft?
-
+
Konsole automatisch schließen, nachdem das Spiel beendet wurde?
-
+
+
+ Durchsuchen...
+
+
+
+
+ Auto-Erkennung...
+
+
- Konteneinstellungen
+ Konteneinstellungen
-
- Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?
+ Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?
-
+
Java
-
+
Arbeitsspeicher
-
+
Min. Arbeitspeicher:
-
+
Max. Arbeitspeicher:
-
+
PermGen:
-
+
Java-Einstellungen
-
+
+
+ Teste
+
+
+
Java-Pfad:
-
+
JVM-Argumente:
-
- Automatisch erkennen
+ Automatisch erkennen
-
+
Eigene Befehle
-
+
Nach-abschluss-Befehl:
-
+
Vor-Start-Befehl:
-
+
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.
+
+
+
+ Wähle eine Java-Version
+
+
+
+
+ Java-Programm finden
+
+
+
+
+ Java test erfolgreich abgeschlossen
+
+
+
+
+ Java test fehlgeschlagen
+
+
+
+
+ Das ausgewählte Java-Programm hat nicht funktioniert. Sie sollten die Auto-Erkennung benutzen, oder den Pfad zum Java-Programm angeben.
+
+
+
+ JavaListLoadTask
+
+
+
+ Suche nach Java-Installationen...
+
LWJGLSelectDialog
-
-
-
+
+
+ LWJGL Versionsverwaltung
-
+
-
+
Anktualisie&ren
-
+
Lade LWJGL-Versionsliste...
@@ -427,550 +959,788 @@ p, li { white-space: pre-wrap; }
LegacyModEditDialog
-
-
-
+
+
+ Mods bearbeiten
-
+
Jar-Mods
-
-
-
-
+
+
+
+
&Hinzufügen
-
-
-
-
+
+
+
+
&Entfernen
-
+
-
+
&Nach Oben
-
+
Nach &Unten
-
+
Coremods
-
-
-
+
+
+
&Ordner öffnen
-
+
Normale Mods
-
+
- Texturenpacks
+ Texturenpakete
-
-
+
+
Title of regular mod selection dialog
Mods auswählen
-
+
Resourcenpacks auswählen
-
+
Title of core mod selection dialog
- Coremodsauswählen
+ Coremods auswählen
-
+
+
+ Wähle Forge-Version
+
+
+
Title of jar mod selection dialog
Jarmods auswählen
-
+
Title of texture pack selection dialog
- Texturenpacks auswählen
+ Texturenpakete auswählen
+
+
+
+ LegacyUpdate
+
+
+
+ LWJGL wird herruntergeladen...
+
+
+
+
+ Das neue LWJGL wird installiert...
+
+
+
+
+ Das neue LWJGL wird installiert - entpacken
+
+
+
+
+ Suche nach jar Änderungen...
+
+
+
+
+ Neue minecraft.jar wird herruntergeladen...
+
+
+
+
+ Mod-Installation: Hinzufügen
+
+
+
+
+ Mod-Installation: Erstellen einer Sicherheitskopie von minecraft.jar...
+
+
+
+
+ Mod-Installation: minecraft.jar wird geöffnet...
+
+
+
+
+ Mod-Installation: Mod-Dateien werden hinzugefügt...
LoginDialog
-
- Einloggen
+ Einloggen
-
-
-
-
-
-
- Nutzername:
+ Nutzername:
-
- Passwort:
+ Passwort:
-
- Passwort
+ Passwort
-
- Vergessen
+ Vergessen
-
- &Nutzernamen speichern?
+ &Nutzernamen speichern?
-
- &Passwort speichern?
+ &Passwort speichern?
-
Use offline mode one time
- Einmal Offline
+ Einmal Offline-Modus verwenden
-
The username during login (placeholder)
- Name
+ Name
LoginTask
-
-
- Einloggen...
+ Einloggen...
Konnte Minecraft-Versionsstring nicht parsen.
-
- Falsche Kombination von Nutzernamen und Passwort.
+ Falsche Kombination von Nutzernamen und Passwort.
-
- Veralteter Launcher, Bitte lade ein Update herunter.
+ Veralteter Launcher, Bitte lade ein Update herunter.
-
-
-
-
- Login fehlgeschlagen: %1
+ Login fehlgeschlagen: %1
-
-
- Derzeit kann auf die Login-Server nicht zugegriffe werden. Für weitere Informationen siehe http://help.mojang.com/.
+ Derzeit kann auf die Login-Server nicht zugegriffen werden. Für weitere Informationen siehe http://help.mojang.com/.
-
-
- Login fehlgeschlagen. Unbekannter HTTP-Fehler: %1.
+ Login fehlgeschlagen. Unbekannter HTTP-Fehler: %1.
-
-
- Login abgebrochen.
+ Login abgebrochen.
+
+
+
+ MCModInfoFrame
+
+
+
+ Frame
-
-
- Login fehlgeschlagen: UNGÜLTIGES FORMAT #1
-
+
+
+
+ Wähle einem Mod aus, um Titel und Autoren zu sehen...
+
+
+
+
+
+ Wähle ein Mod um die Beschreibung zu sehen...
+
+
+
+
+ mcmod.info wurde nicht mit einer Beschreibung versehen
+
+
+
+ MCVListLoadTask
+
+
+
+ Lade Liste von Minecraft-Versionen...
MainWindow
-
+
MultiMC 5
-
+
Haupt-Werkzeugleiste
-
+
Instanz-Werkzeugleiste
-
+
+
+ Nachrichten-Werkzeugleiste
+
+
+
Instanz hinzufügen
-
-
+
+
+
Neue Instanz erstellen.
-
+
Instanzordner öffnen
-
-
+
+
Instanzordner im Dateimanager öffnen.
-
+
Aktualisieren
-
-
+
+
Instanzliste neu Laden.
-
+
- Zenstralen Modordner öffnen
+ Zenstralen Mod-Ordner öffnen
-
-
+
+
- Zentralen Modordner in einem Dateimanager öffnen.
+ Zentralen Mod-Ordner in einem Dateimanager öffnen.
-
+
Auf Updates überprüfen
-
-
+
+
Auf Updates für MultiMC prüfen
-
-
+
+
Einstellungen
-
-
+
+
Einstellungen ändern.
-
+
Fehler melden
-
-
+
+
- Fehler-Verfolgung öffnen, um einen Fehler zu melden (Bitte auf Englisch ;))
+ Fehler-Verfolgung öffnen, um einen Fehler zu melden (Bitte auf Englisch ;)).
-
- Neuigkeiten
+ Neuigkeiten
-
-
- Den MultiMC Entwicklerblog öffnen und Neuigkeiten über MultiMC erfahren.
+ Den MultiMC Entwicklerblog öffnen und Neuigkeiten über MultiMC erfahren.
-
-
+
+
+ Mehr Nachrichten
+
+
+
+
+ Mehr Nachrichten...
+
+
+
+
+
+ Öffne den MultiMC Entwicklerblog um mehr Nachrichten zu MultiMC zu lesen.
+
+
+
+
Über MultiMC
-
+
Informationen über MultiMC anzeigen.
-
+
Spielen
-
-
+
+
Die ausgewählte Instanz starten.
-
+
Instanzname
-
-
+
+
Ausgewählte Instanz umbenennen.
-
+
Gruppe ändern
-
-
+
+
Die Gruppe der ausgewählten Instanz ändern.
-
+
Symbol ändern
-
-
+
+
Das Symbol der ausgewählten Instanz ändern.
-
+
Notizen bearbeiten
-
-
+
+
Notizen für die ausgewählte Instanz bearbeiten.
-
-
+
+
Einstellungen für die ausgewählte Instanz bearbeiten.
-
+
Verknüpfung erstellen
-
-
+
+
Erstellt eine Verknüpfung für die ausgewählte Instanz auf dem Desktop.
-
+
Speicherstände verwalten
-
-
+
+
Die Speicherstände der ausgewählten Instanz verwalten.
-
+
Mods bearbeiten
-
-
+
+
Die Mods der ausgewähten Instanz bearbeiten.
-
+
Version ändern
-
-
+
+
Die Minecraftversion der ausgewählten Instanz ändern.
-
+
LWJGL ändern
-
-
+
+
Die zu benutzende Version von LWJGL für die aktuelle Instanz ändern.
-
+
Instanzordner
-
-
+
+
Den Wurzelordner der Aktuellen Instanz im Dateimanager öffnen.
-
+
Löschen
-
-
+
+
Ausgewählte Instanz löschen.
-
+
- Konfig-ordner
+ Konfig-Ordner
-
+
Den Konfigurationsordner im Dateimanager anzeigen
-
+
Miau
-
+
+
+
+
+ Kopiere Instanz
+
+
+
+
+ Kopiere die ausgewählte Instanz.
+
+
+
+
+
+ Verwalte Konten
+
+
+
+
+ Verwalte diene Mojang- und Minecraft -onten.
+
<html><head/><body><p align="center"><span style=" font-weight:600; color:#ff0004;">Catnatok!</span></p><p align="center">Or just a cat with a ball of yarn?</p><p align="center"><span style=" font-style:italic;">WHO KNOWS?!</span></p><p align="center"><img src=":/icons/instances/tnt"/></p></body></html>
-
+
+
+ Keine Instanz ausgewählt
+
+
+
+
+ Konten
+
+
+
+
+ Keine neue Version gefunden.
+
+
+
+
+ Kein update zu MultiMC konnte gefunden werden!
+Sie benutzen die neuste Version.
+
+
+
+
+ Keine Konten angegeben!
+
+
+
+
+ Kein voreingestelltes Konto
+
+
+
+
+ Nachrichten werden geladen...
+
+
+
+
+ Keine Nachrichten zugänglich.
+
+
+
+
+
+
+
+
+
+
+
+
+ Fehler
+
+
+
+
+
+ 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.
+
+
+
Gruppenname
-
+
Neuen Gruppennamen eingeben.
-
+
+
+ ACHTUNG
+
+
+
+
+ Dies ist permanent! Sind sie sich sicher?
+Die folgende Instanz löschen:
+
+
+
Instanzname
-
+
Neuen Instanznamen eingeben.
-
+
+
+ Keine Konten
+
+
+
+
+ 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?
+
+
+
+
+ Wälches Konto wollen Sie benutzen?
+
+
+
+
+ Ihr Konto ist momentan nicht angemeldet. Bitte geben sie ihr passwort an um sich anzumelden.
+
+
+
+
+ Offline spielen
+
+
+
+
+ Fehler beim Aktualisieren der Instanz
+
+
+
MultiMC-Verknüpfung
-
+
Verknüpfungsnamen eingeben.
-
+
Sinnlos
-
+
Eine Dummy-Verknüpfung wurde erstellt. Sie wird jedoch absolut nichts bewirken
-
+
+
+ Minecraft-Version ändern
+
+
+
+
+ Sind Sie sicher?
+
+
+
+
+ Dies will sämtliche Bibliotheks/Versions-Anpassung die Sie vorgenommen haben entfernen. Dies schließt Sachen wie Forge mit ein.
+
+
+
+
+ Instanzeinstellungen
+
+
+
Instanz umbenennen
+
+
+
+ Wähle eine Java-Version
+
+
+
+
+ Ungültige version ausgewählt
+
+
+
+
+ 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.
+
MinecraftProcess
-
+
Message displayed on instance exit
- Minecraft wurde mit exitcode %1 beendet.
+ Minecraft wurde mit Status %1 beendet.
-
+
+
+ Message displayed on instance crashed
+ Minecraft ist mit dem Status %1 abgesturtzt
+
+
+
Message displayed after the instance exits due to kill request
- Minecraft wurde durch den nutzer gekillt.
+ Minecraft wurde durch den Nutzer gekillt.
-
+
Error message displayed if instace can't start
Konnte Minecraft nicht starten!
@@ -980,15 +1750,15 @@ p, li { white-space: pre-wrap; }
MultiMC
- Zeigt diese Hilfe und beended das Programm.
+ Zeigt diese Hilfe und beendet das Programm.
- Zeigt die programmversion an und beendet das Programm.
+ Zeigt die Programmversion an und beendet das Programm.
- Benutze das angegebene Verzeichnis als Arbeitsverzeichnis anstelle des speicherorts. (Benutze '.' um das aktuele Verzeichnis zu verwenden)
+ Benutze das angegebene Verzeichnis als Arbeitsverzeichnis anstelle des Speicherorts. (Benutze '.' um das aktuele Verzeichnis zu verwenden)
@@ -1030,362 +1800,632 @@ p, li { white-space: pre-wrap; }
NewInstanceDialog
-
+
Neue Instanz
-
+
Name
-
+
Version:
-
+
...
+
+
+
+ Ändere die Minecraft-Version...
+
+
+
+ NewsEntry
+
+
+
+
+ Unbennant
+
+
+
+
+
+ Kein Eintrag.
+
+
+
+
+
+ Unbekannter Autor
+
+
+
+ OneSixFTBInstanceForge
+
+
+
+ Forge wird heruntergeladen...
+
+
+
+
+ Forge wird installiert...
+
+
+
+
+ Fehlschlag beim laden der Versions-Konfiguration
+
+
+
+
+ Fehler beim Installieren von Forge
+
OneSixModEditDialog
-
Am i really responsible for this?
- Edit Mods
+ Edit Mods
Bibliothek
-
+
Mods
-
-
-
+
+
+
&Hinzufügen
-
+
+
+ Verwalte Mods
+
+
+
Version
-
+
Hauptklasse:
-
+
Die aktuelle benutzerdefinierte Version mit Minecraft Forge ersetzen
-
+
Forge Installieren
-
+
+
+ Installiere LiteLoader
+
+
+
Eine modifizierbare Kopie der Version erstellen
-
+
Benutzerdefiniert
-
+
Benutzerdefinierte Einstellungen zurücksetzen
-
+
Zurücksetzen
-
+
-
+
-
-
-
+
+
+
&Entfernen
-
-
+
+
+ Öffne custom.json
+
+
+
+
&Ordner öffnen
-
+
Resourcenpacks
-
-
+
+
Zurücksetzen?
-
+
Möchtest du wirklich die Version dieser Instanz zurücksetzen?
-
+
+
+ Fehler
+
+
+
+
+ Fehler beim Öffnen der custom.json Datei, überprüfen Sie Ihre Einstellungen
+
+
+
+
+ Wähle Forge-Version
+
+
+
Dies wird alle Änderungen, die du vorgenommen hast zurücksetzen. Bist du damit einverstanden?
+
+
+
+
+ LiteLoader
+
+
+
+
+ Es gibt momentan keine Informationen zur Installation von LiteLoader für diese Version von Minecraft
+
+
+
+
+ Aus unbekannten Gründen ist die Installation von LiteLoader fehlgeschlagen. Schauen sie sich Ihre MultiMC Logdateien an, um weitere Details zu erhalten.
+
+
+
+ OneSixUpdate
+
+
+
+
+ Java-Installation wird getestet...
+
+
+
+
+ Versionsdateien von Mojang werden herruntergeladen...
+
+
+
+
+ Datenindex wird aktualisiert...
+
+
+
+
+ Daten werden von Mojang geholt...
+
+
+
+
+ Bibliotheken werden von Mojang geholt...
+
+
+
+
+ Der Start wird vorbereitet...
+
ProgressDialog
-
+
Bitte warten...
-
+
Aufgabenstatus...
+
+
+
+ Überspringen
+
+
+
+ QObject
+
+
+
+ JVM argument verwarnung
+
+
+
+
+ Sie haben versucht manuel eine JVM Speicher option anzugeben ("-XX:PermSize", "-Xmx" oder "-Xms") - 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.
+
+
+
+
+ Wie schade!
+
+
+
+
+ Der Autor des mods hat keine link zu einer webseite angegeben.
+
+
+
+ RefreshTask
+
+
+
+ Auffrischung des Login-Tokens...
+
+
+
+
+ Auffrischung des Login-Tokens: Verarbeite Antwort...
+
SettingsDialog
-
+
Einstellungen
-
+
- Generell
+ Allgemein
-
+
Sortiermodus
-
+
Nach letzem Start
-
+
Nach Namen
-
+
Updateeinstellungen
-
+
Entwicklerversionen benutzen?
-
+
Beim Start nach Updates suchen?
-
+
Ordner
-
+
Instanzen:
-
-
-
+
+
+
+
+
+
+
+
...
-
+
+
+ FTB
+
+
+
+
+ Launcher:
+
+
+
+
+ FTB-Instanzen beobachten
+
+
+
+
+ Dateien:
+
+
+
Mods:
-
+
LWJGL:
-
+
+
+ Symbole:
+
+
+
+
+ Externe Editor-Anwendungen (leer lassen, um die System-Voreinstellung zu benutzen)
+
+
+
+
+ JSON Editor:
+
+
+
Minecraft
-
+
Fenstergröße
-
+
Minecraft maximiert starten?
-
+
Fensterhöhe:
-
+
Fensterbreite:
-
+
Konsoleneinstellungen
-
+
Konsole anzeigen wenn das Spiel läuft?
-
+
Konsole automatisch schließen, nachdem das Spiel beendet wurde?
-
- Automatisch einloggen, wenn das Instanzsymbol doppelt gecklickt wurde?
+ Automatisch einloggen, wenn das Instanzsymbol doppelt geklickt wurde?
-
+
Java
-
+
Arbeitsspeicher
-
+
Min. Arbeitspeicher:
-
+
Max. Arbeitspeicher:
-
+
PermGen:
-
+
Java-Einstellungen
-
+
Java-Pfad:
-
+
+
+ Auto-Erkennung:
+
+
+
+
+ Test
+
+
+
JVM-Argumente:
-
- Durchsuchen...
+ Durchsuchen...
-
- Automatisch erkennen
+ Automatisch erkennen
-
+
Eigene Befehle
-
+
Nach-abschluss-Befehl:
-
+
Vor-Start-Befehl:
-
+
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.
-
+
+
+ FTB-Launcher-Ordner
+
+
+
+
+ FTB-Ordner
+
+
+
Instanz-Ordner
-
+
+
+ Symbolordner
+
+
+
Modordner
-
+
LWJGL-Ordner
-
+
+
+ JSON Editor
+
+
+
+
+ Ungültig
+
+
+
+
+ Die ausgesuchte Datei scheint keine Anwendung zu sein
+
+
+
Entwicklerversionen
-
+
- Entwicklerversionen enthalten experimentelle Features und können instabil sein. Möchtest du sie dennoch aktivieren?
+ Entwicklerversionen enthalten experimentelle Features und können instabil sein. Möchtest du Sie dennoch aktivieren?
-
+
+
+ Wähle Java version
+
+
+
Umm... this translation is a bit meh
- Java-Anwendung finden
+ Java-Anwendung finden
+
+
+
+
+ Java test erfolgreich abgeschlossen
+
+
+
+
+ Java test fehlgeschlagen
+
+
+
+
+ Das ausgewählte Java-Program hat nicht funktioniert. Sie sollten die Auto-Erkennung benutzen, oder den Pfad zum Java-Programm angeben.
@@ -1399,12 +2439,52 @@ p, li { white-space: pre-wrap; }
Aufgabenstatus...
+
+ UpdateDialog
+
+
+
+ Neue MultiMC Version
+
+
+
+
+ Eine Neue Version von MultiMC ist jetzt verfügbar!
+
+
+
+
+ Jetzt herunterladen
+
+
+
+
+ Herunterladen wenn MultiMC geschlossen wird
+
+
+
+
+ Noch nicht herrunterladen
+
+
+
+ ValidateTask
+
+
+
+ Validiere Zugriffstoken: Sende Anfrage...
+
+
+
+
+ Validiere Zugriffstoken: Bearbeite Antwort...
+
+
VersionSelectDialog
-
- Dialog
+ Dialog
@@ -1412,17 +2492,65 @@ p, li { white-space: pre-wrap; }
- '&Nostalgia'-Versionen anzeigen?
+ '&Nostalgie'-Versionen anzeigen?
-
+
+
+ Wähle Version
+
+
+
Instanzliste aktualisieren.
-
+
&Aktualisieren
+
+ YggdrasilTask
+
+
+
+ <b>SSL-Handshake fehlgeschlagen.</b><br/>Es kann mehrere Erklärungen geben:<br/><ul><li>Sie benutzen Windows XP und mussen <a href="http://www.microsoft.com/en-us/download/details.aspx?id=38918">Ihr root certifikat aktualisieren</a></li><li>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.</li><li>Möglicherweise irgendetwas anderes. Sehen sie in der MultiMC log Datei nach um weitere Details zu finden</li></ul>
+
+
+
+
+ Ein unbekannter Fehler ist beim Bearbeiten der Antwort des Authentifizierungs-Servers aufgetreten.
+
+
+
+
+ Fehler beim Bearbeiten der Yggdrasil-JSON-Antwort: %1 bei %2.
+
+
+
+
+ Ein unbekannter Fehler ist aufgetreten bei der Kommunikation mit den Authentifizierungs-Server: %1
+
+
+
+
+ Ein unbekannter Yggdrasil-Fehler ist aufgetreten.
+
+
+
+
+ Sende Anfrage an die Authentifizierungs-Server...
+
+
+
+
+ Bearbeite Antwort des Authentifizierungs-Servers...
+
+
+
+
+ Bearbeite. Bitte warten...
+
+