diff options
-rw-r--r-- | MultiMC.cpp | 2 | ||||
-rw-r--r-- | gui/ConsoleWindow.cpp | 7 | ||||
-rw-r--r-- | gui/dialogs/VersionSelectDialog.cpp | 4 | ||||
-rw-r--r-- | logic/LegacyInstance.cpp | 5 | ||||
-rw-r--r-- | logic/LegacyInstance.h | 1 | ||||
-rw-r--r-- | logic/LegacyUpdate.cpp | 169 | ||||
-rw-r--r-- | logic/LegacyUpdate.h | 13 | ||||
-rw-r--r-- | logic/net/URLConstants.cpp | 2 | ||||
-rw-r--r-- | logic/net/URLConstants.h | 2 | ||||
-rw-r--r-- | translations/mmc_de.ts | 197 | ||||
-rw-r--r-- | translations/mmc_fr.ts | 3808 |
11 files changed, 4180 insertions, 30 deletions
diff --git a/MultiMC.cpp b/MultiMC.cpp index ddc1fca7..a0ff8b66 100644 --- a/MultiMC.cpp +++ b/MultiMC.cpp @@ -412,6 +412,7 @@ void MultiMC::initGlobalSettings() // Console m_settings->registerSetting("ShowConsole", true); + m_settings->registerSetting("RaiseConsole", true); m_settings->registerSetting("AutoCloseConsole", true); m_settings->registerSetting("LogPrePostOutput", true); @@ -470,6 +471,7 @@ void MultiMC::initHttpMetaCache() m_metacache->addBase("versions", QDir("versions").absolutePath()); m_metacache->addBase("libraries", QDir("libraries").absolutePath()); m_metacache->addBase("minecraftforge", QDir("mods/minecraftforge").absolutePath()); + m_metacache->addBase("fmllibs", QDir("mods/minecraftforge/libs").absolutePath()); m_metacache->addBase("liteloader", QDir("mods/liteloader").absolutePath()); m_metacache->addBase("skins", QDir("accounts/skins").absolutePath()); m_metacache->addBase("root", QDir(root()).absolutePath()); diff --git a/gui/ConsoleWindow.cpp b/gui/ConsoleWindow.cpp index 621f035f..18a617e0 100644 --- a/gui/ConsoleWindow.cpp +++ b/gui/ConsoleWindow.cpp @@ -265,6 +265,13 @@ void ConsoleWindow::onEnded(BaseInstance *instance, int code, QProcess::ExitStat */ if (!isVisible()) show(); + + // Raise Window + if (MMC->settings()->get("RaiseConsole").toBool()) + { + raise(); + activateWindow(); + } } void ConsoleWindow::onLaunchFailed(BaseInstance *instance) diff --git a/gui/dialogs/VersionSelectDialog.cpp b/gui/dialogs/VersionSelectDialog.cpp index 3277fd2f..f4d314b6 100644 --- a/gui/dialogs/VersionSelectDialog.cpp +++ b/gui/dialogs/VersionSelectDialog.cpp @@ -100,7 +100,9 @@ void VersionSelectDialog::on_refreshButton_clicked() void VersionSelectDialog::setFilter(int column, QString filter) { m_proxyModel->setFilterKeyColumn(column); - m_proxyModel->setFilterFixedString(filter); + // m_proxyModel->setFilterFixedString(filter); + m_proxyModel->setFilterRegExp(QRegExp(QString("^%1$").arg(filter.replace(".", "\\.")), + Qt::CaseInsensitive, QRegExp::RegExp)); /* QStringList filteredTypes; if (!ui->filterSnapshotsCheckbox->isChecked()) diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index 4f2dfd9b..d06b8827 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -159,6 +159,11 @@ QString LegacyInstance::binDir() const return PathCombine(minecraftRoot(), "bin"); } +QString LegacyInstance::libDir() const +{ + return PathCombine(minecraftRoot(), "lib"); +} + QString LegacyInstance::savesDir() const { return PathCombine(minecraftRoot(), "saves"); diff --git a/logic/LegacyInstance.h b/logic/LegacyInstance.h index 636addeb..badaf7e3 100644 --- a/logic/LegacyInstance.h +++ b/logic/LegacyInstance.h @@ -41,6 +41,7 @@ public: std::shared_ptr<ModList> texturePackList(); ////// Directories ////// + QString libDir() const; QString savesDir() const; QString texturePacksDir() const; QString jarModsDir() const; diff --git a/logic/LegacyUpdate.cpp b/logic/LegacyUpdate.cpp index 5d82a76b..15c99234 100644 --- a/logic/LegacyUpdate.cpp +++ b/logic/LegacyUpdate.cpp @@ -26,9 +26,56 @@ #include <JlCompress.h> #include "logger/QsLog.h" #include "logic/net/URLConstants.h" +#include <QStringList> LegacyUpdate::LegacyUpdate(BaseInstance *inst, QObject *parent) : Task(parent), m_inst(inst) { + // 1.3 - 1.3.2 + auto libs13 = QList<FMLlib>{ + {"argo-2.25.jar", "bb672829fde76cb163004752b86b0484bd0a7f4b", false}, + {"guava-12.0.1.jar", "b8e78b9af7bf45900e14c6f958486b6ca682195f", false}, + {"asm-all-4.0.jar", "98308890597acb64047f7e896638e0d98753ae82", false}}; + + fmlLibsMapping["1.3.2"] = libs13; + + auto libs14 = QList<FMLlib>{ + {"argo-2.25.jar", "bb672829fde76cb163004752b86b0484bd0a7f4b", false}, + {"guava-12.0.1.jar", "b8e78b9af7bf45900e14c6f958486b6ca682195f", false}, + {"asm-all-4.0.jar", "98308890597acb64047f7e896638e0d98753ae82", false}, + {"bcprov-jdk15on-147.jar", "b6f5d9926b0afbde9f4dbe3db88c5247be7794bb", false}}; + + fmlLibsMapping["1.4"] = libs14; + fmlLibsMapping["1.4.1"] = libs14; + fmlLibsMapping["1.4.2"] = libs14; + fmlLibsMapping["1.4.3"] = libs14; + fmlLibsMapping["1.4.4"] = libs14; + fmlLibsMapping["1.4.5"] = libs14; + fmlLibsMapping["1.4.6"] = libs14; + fmlLibsMapping["1.4.7"] = libs14; + + fmlLibsMapping["1.5"] = QList<FMLlib>{ + {"argo-small-3.2.jar", "58912ea2858d168c50781f956fa5b59f0f7c6b51", false}, + {"guava-14.0-rc3.jar", "931ae21fa8014c3ce686aaa621eae565fefb1a6a", false}, + {"asm-all-4.1.jar", "054986e962b88d8660ae4566475658469595ef58", false}, + {"bcprov-jdk15on-148.jar", "960dea7c9181ba0b17e8bab0c06a43f0a5f04e65", true}, + {"deobfuscation_data_1.5.zip", "5f7c142d53776f16304c0bbe10542014abad6af8", false}, + {"scala-library.jar", "458d046151ad179c85429ed7420ffb1eaf6ddf85", true}}; + + fmlLibsMapping["1.5.1"] = QList<FMLlib>{ + {"argo-small-3.2.jar", "58912ea2858d168c50781f956fa5b59f0f7c6b51", false}, + {"guava-14.0-rc3.jar", "931ae21fa8014c3ce686aaa621eae565fefb1a6a", false}, + {"asm-all-4.1.jar", "054986e962b88d8660ae4566475658469595ef58", false}, + {"bcprov-jdk15on-148.jar", "960dea7c9181ba0b17e8bab0c06a43f0a5f04e65", true}, + {"deobfuscation_data_1.5.1.zip", "22e221a0d89516c1f721d6cab056a7e37471d0a6", false}, + {"scala-library.jar", "458d046151ad179c85429ed7420ffb1eaf6ddf85", true}}; + + fmlLibsMapping["1.5.2"] = QList<FMLlib>{ + {"argo-small-3.2.jar", "58912ea2858d168c50781f956fa5b59f0f7c6b51", false}, + {"guava-14.0-rc3.jar", "931ae21fa8014c3ce686aaa621eae565fefb1a6a", false}, + {"asm-all-4.1.jar", "054986e962b88d8660ae4566475658469595ef58", false}, + {"bcprov-jdk15on-148.jar", "960dea7c9181ba0b17e8bab0c06a43f0a5f04e65", true}, + {"deobfuscation_data_1.5.2.zip", "446e55cd986582c70fcf12cb27bc00114c5adfd9", false}, + {"scala-library.jar", "458d046151ad179c85429ed7420ffb1eaf6ddf85", true}}; } void LegacyUpdate::executeTask() @@ -50,10 +97,130 @@ void LegacyUpdate::executeTask() else { */ - lwjglStart(); + fmllibsStart(); //} } +void LegacyUpdate::fmllibsStart() +{ + // Get the mod list + LegacyInstance *inst = (LegacyInstance *)m_inst; + auto modList = inst->jarModList(); + + bool forge_present = false; + + QString version = inst->intendedVersionId(); + if (!fmlLibsMapping.contains(version)) + { + lwjglStart(); + return; + } + + auto &libList = fmlLibsMapping[version]; + + // determine if we need some libs for FML or forge + setStatus(tr("Checking for FML libraries...")); + for (unsigned i = 0; i < modList->size(); i++) + { + auto &mod = modList->operator[](i); + + // do not use disabled mods. + if (!mod.enabled()) + continue; + + if (mod.type() != Mod::MOD_ZIPFILE) + continue; + + if (mod.mmc_id().contains("forge", Qt::CaseInsensitive)) + { + forge_present = true; + break; + } + if (mod.mmc_id().contains("fml", Qt::CaseInsensitive)) + { + forge_present = true; + break; + } + } + // we don't... + if (!forge_present) + { + lwjglStart(); + return; + } + + // now check the lib folder inside the instance for files. + for (auto &lib : libList) + { + QFileInfo libInfo(PathCombine(inst->libDir(), lib.name)); + if (libInfo.exists()) + continue; + fmlLibsToProcess.append(lib); + } + + // if everything is in place, there's nothing to do here... + if (fmlLibsToProcess.isEmpty()) + { + lwjglStart(); + return; + } + + // download missing libs to our place + setStatus(tr("Dowloading FML libraries...")); + auto dljob = new NetJob("FML libraries"); + auto metacache = MMC->metacache(); + for (auto &lib : fmlLibsToProcess) + { + auto entry = metacache->resolveEntry("fmllibs", lib.name); + QString urlString = lib.ours ? URLConstants::FMLLIBS_OUR_BASE_URL + lib.name + : URLConstants::FMLLIBS_FORGE_BASE_URL + lib.name; + dljob->addNetAction(CacheDownload::make(QUrl(urlString), entry)); + } + + connect(dljob, SIGNAL(succeeded()), SLOT(fmllibsFinished())); + connect(dljob, SIGNAL(failed()), SLOT(fmllibsFailed())); + connect(dljob, SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64))); + legacyDownloadJob.reset(dljob); + legacyDownloadJob->start(); +} + +void LegacyUpdate::fmllibsFinished() +{ + legacyDownloadJob.reset(); + if(!fmlLibsToProcess.isEmpty()) + { + setStatus(tr("Copying FML libraries into the instance...")); + LegacyInstance *inst = (LegacyInstance *)m_inst; + auto metacache = MMC->metacache(); + int index = 0; + for (auto &lib : fmlLibsToProcess) + { + progress(index, fmlLibsToProcess.size()); + auto entry = metacache->resolveEntry("fmllibs", lib.name); + auto path = PathCombine(inst->libDir(), lib.name); + if(!ensureFilePathExists(path)) + { + emitFailed(tr("Failed creating FML library folder inside the instance.")); + return; + } + if (!QFile::copy(entry->getFullPath(), PathCombine(inst->libDir(), lib.name))) + { + emitFailed(tr("Failed copying Forge/FML library: %1.").arg(lib.name)); + return; + } + index++; + } + progress(index, fmlLibsToProcess.size()); + } + lwjglStart(); +} + +void LegacyUpdate::fmllibsFailed() +{ + emitFailed("Game update failed: it was impossible to fetch the required FML libraries."); + return; +} + void LegacyUpdate::lwjglStart() { LegacyInstance *inst = (LegacyInstance *)m_inst; diff --git a/logic/LegacyUpdate.h b/logic/LegacyUpdate.h index 613eb1f9..5b073cb7 100644 --- a/logic/LegacyUpdate.h +++ b/logic/LegacyUpdate.h @@ -27,6 +27,13 @@ class BaseInstance; class QuaZip; class Mod; +struct FMLlib +{ + QString name; + QString checksum; + bool ours; +}; + class LegacyUpdate : public Task { Q_OBJECT @@ -44,6 +51,10 @@ slots: void jarFinished(); void jarFailed(); + void fmllibsStart(); + void fmllibsFinished(); + void fmllibsFailed(); + void extractLwjgl(); void ModTheJar(); @@ -72,4 +83,6 @@ private: private: NetJobPtr legacyDownloadJob; BaseInstance *m_inst = nullptr; + QList<FMLlib> fmlLibsToProcess; + QMap<QString, QList<FMLlib>> fmlLibsMapping; }; diff --git a/logic/net/URLConstants.cpp b/logic/net/URLConstants.cpp index 14b28085..de919448 100644 --- a/logic/net/URLConstants.cpp +++ b/logic/net/URLConstants.cpp @@ -16,4 +16,6 @@ const QString MOJANG_STATUS_URL("http://status.mojang.com/check"); const QString MOJANG_STATUS_NEWS_URL("http://status.mojang.com/news"); const QString LITELOADER_URL("http://dl.liteloader.com/versions/versions.json"); const QString IMGUR_BASE_URL("https://api.imgur.com/3/"); +const QString FMLLIBS_OUR_BASE_URL("http://files.multimc.org/fmllibs/"); +const QString FMLLIBS_FORGE_BASE_URL("http://files.minecraftforge.net/fmllibs/"); }
\ No newline at end of file diff --git a/logic/net/URLConstants.h b/logic/net/URLConstants.h index c1064115..392d7362 100644 --- a/logic/net/URLConstants.h +++ b/logic/net/URLConstants.h @@ -34,4 +34,6 @@ extern const QString MOJANG_STATUS_URL; extern const QString MOJANG_STATUS_NEWS_URL; extern const QString LITELOADER_URL; extern const QString IMGUR_BASE_URL; +extern const QString FMLLIBS_OUR_BASE_URL; +extern const QString FMLLIBS_FORGE_BASE_URL; } diff --git a/translations/mmc_de.ts b/translations/mmc_de.ts index 2ad9f351..6ff523cf 100644 --- a/translations/mmc_de.ts +++ b/translations/mmc_de.ts @@ -816,7 +816,32 @@ p, li { white-space: pre-wrap; } <context> <name>AuthenticateTask</name> <message> - <location filename="../logic/auth/flows/AuthenticateTask.cpp" line="+197"/> + <location filename="../logic/auth/flows/AuthenticateTask.cpp" line="+87"/> + <source>Authentication server didn't send a client token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server attempted to change the client token. This isn't supported.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+12"/> + <source>Authentication server didn't send an access token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+45"/> + <source>Authentication server didn't specify a currently selected profile. The account exists, but likely isn't premium.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server specified a selected profile that wasn't in the available profiles list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+37"/> <source>Authenticating: Sending request...</source> <translation>Authentifizierung: Sende Anfrage...</translation> </message> @@ -1429,7 +1454,32 @@ p, li { white-space: pre-wrap; } <context> <name>LegacyUpdate</name> <message> - <location filename="../logic/LegacyUpdate.cpp" line="+80"/> + <location filename="../logic/LegacyUpdate.cpp" line="+122"/> + <source>Checking for FML libraries...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+47"/> + <source>Dowloading FML libraries...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+23"/> + <source>Copying FML libraries into the instance...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+11"/> + <source>Failed creating FML library folder inside the instance.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Failed copying Forge/FML library: %1.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+39"/> <source>Downloading new LWJGL...</source> <translation>LWJGL wird heruntergeladen...</translation> </message> @@ -1609,7 +1659,7 @@ p, li { white-space: pre-wrap; } <translation>Haupt-Werkzeugleiste</translation> </message> <message> - <location line="+41"/> + <location line="+42"/> <source>Instance Toolbar</source> <translation>Instanz-Werkzeugleiste</translation> </message> @@ -1626,12 +1676,12 @@ p, li { white-space: pre-wrap; } <message> <location line="+3"/> <location line="+3"/> - <location line="+342"/> + <location line="+358"/> <source>Add a new instance.</source> <translation>Neue Instanz erstellen.</translation> </message> <message> - <location line="-332"/> + <location line="-348"/> <source>View Instance Folder</source> <translation>Instanzordner öffnen</translation> </message> @@ -1676,12 +1726,12 @@ p, li { white-space: pre-wrap; } </message> <message> <location line="+10"/> - <location line="+136"/> + <location line="+152"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location line="-133"/> + <location line="-149"/> <location line="+3"/> <source>Change settings.</source> <translation>Einstellungen ändern.</translation> @@ -1706,7 +1756,7 @@ p, li { white-space: pre-wrap; } <translation type="vanished">Den MultiMC-Entwicklerblog öffnen, um Neuigkeiten über MultiMC zu erhalten.</translation> </message> <message> - <location line="+10"/> + <location line="+26"/> <source>More News</source> <translation>Mehr Nachrichten</translation> </message> @@ -1912,13 +1962,24 @@ p, li { white-space: pre-wrap; } <translation>Kopiere Instanz</translation> </message> <message> + <location line="-243"/> + <source>Support us on Patreon!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+3"/> <location line="+3"/> + <source>Open the MultiMC Patreon page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+240"/> <source>Copy the selected instance.</source> <translation>Kopiere die ausgewählte Instanz.</translation> </message> <message> <location line="+8"/> - <location filename="../gui/MainWindow.cpp" line="+241"/> + <location filename="../gui/MainWindow.cpp" line="+248"/> <source>Manage Accounts</source> <translation>Verwalte Konten</translation> </message> @@ -1959,18 +2020,33 @@ You are using the latest version.</source> Du verwendest bereits die neueste Version.</translation> </message> <message> - <location line="+41"/> + <location line="+45"/> <source>Rename</source> <translation type="unfinished"></translation> </message> <message> - <location line="+20"/> - <location line="+929"/> + <location line="+3"/> + <source>Copy instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+14"/> + <source>MultiMC</source> + <translation type="unfinished">MultiMC</translation> + </message> + <message> + <location line="+3"/> + <source>Create instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+23"/> + <location line="+934"/> <source>Launch</source> <translation type="unfinished"></translation> </message> <message> - <location line="-927"/> + <location line="-932"/> <source>Profilers</source> <translation type="unfinished"></translation> </message> @@ -2030,14 +2106,14 @@ Du verwendest bereits die neueste Version.</translation> <location line="+37"/> <location line="+7"/> <location line="+7"/> - <location line="+424"/> + <location line="+429"/> <location line="+30"/> <location line="+80"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location line="-613"/> + <location line="-618"/> <location line="+71"/> <source>Failed to create the instance directory.</source> <translation type="unfinished"></translation> @@ -2050,14 +2126,14 @@ Du verwendest bereits die neueste Version.</translation> </message> <message> <location line="-49"/> - <location line="+585"/> + <location line="+590"/> <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 herunterladen und keine Instanzen aktualisieren, solange du kein Konto erstellt hast. Bitte füge dein Mojang- oder Minecraft-Konto hinzu.</translation> </message> <message> - <location line="-473"/> + <location line="-478"/> <source>Group name</source> <translation>Gruppenname</translation> </message> @@ -2067,7 +2143,7 @@ Bitte füge dein Mojang- oder Minecraft-Konto hinzu.</translation> <translation>Neuen Gruppennamen eingeben.</translation> </message> <message> - <location line="+92"/> + <location line="+97"/> <source>CAREFUL</source> <translation>ACHTUNG</translation> </message> @@ -2747,7 +2823,15 @@ Die folgende Instanz löschen:</translation> <translation type="unfinished"></translation> </message> <message> - <location line="+76"/> + <location line="+66"/> + <source>Some libraries marked as 'local' are missing their jar files: +%1 + +You'll have to correct this problem manually. If this is an externally tracked instance, make sure to run it at least once outside of MultiMC.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+28"/> <source>Failed to download the following files: %1 @@ -2898,7 +2982,27 @@ Diese Mitteilung wird so lange angezeigt, bis du die Option entfernt hast.</tran <context> <name>RefreshTask</name> <message> - <location filename="../logic/auth/flows/RefreshTask.cpp" line="+146"/> + <location filename="../logic/auth/flows/RefreshTask.cpp" line="+76"/> + <source>Authentication server didn't send a client token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server attempted to change the client token. This isn't supported.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+10"/> + <source>Authentication server didn't send an access token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+10"/> + <source>Authentication server didn't specify the same prefile as expected.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+39"/> <source>Refreshing login token...</source> <translation>Erneuerung des Login-Tokens...</translation> </message> @@ -3566,7 +3670,7 @@ Diese Mitteilung wird so lange angezeigt, bis du die Option entfernt hast.</tran <context> <name>ValidateTask</name> <message> - <location filename="../logic/auth/flows/ValidateTask.cpp" line="+58"/> + <location filename="../logic/auth/flows/ValidateTask.cpp" line="+57"/> <source>Validating access token: Sending request...</source> <translation>Validiere Zugriffstoken: Sende Anfrage...</translation> </message> @@ -3635,22 +3739,40 @@ Diese Mitteilung wird so lange angezeigt, bis du die Option entfernt hast.</tran <context> <name>YggdrasilTask</name> <message> - <location filename="../logic/auth/YggdrasilTask.cpp" line="+104"/> + <location filename="../logic/auth/YggdrasilTask.cpp" line="+119"/> <source><b>SSL Handshake failed.</b><br/>There might be a few causes for it:<br/><ul><li>You use Windows XP and need to <a href="http://www.microsoft.com/en-us/download/details.aspx?id=38918">update your root certificates</a></li><li>Some device on your network is interfering with SSL traffic. In that case, you have bigger worries than Minecraft not starting.</li><li>Possibly something else. Check the MultiMC log file for details</li></ul></source> <translation><b>SSL-Handshake fehlgeschlagen.</b><br/>Es kann mehrere Erklärungen geben:<br/><ul><li>Du benutzt Windows XP und musst <a href="http://www.microsoft.com/en-us/download/details.aspx?id=38918">dein Stammzertifikat aktualisieren</a></li><li>Ein Gerät in deinem Netzwerk mischt sich in den SSL-Verkehr ein. In diesem Fall hast du größere Probleme, als das, dass Minecraft nicht gestartet werden kann.</li><li>Möglicherweise etwas anderes. Prüfe die MultiMC-Logdatei für Details</li></ul></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> + <translation type="vanished">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> + <translation type="vanished">Fehler beim Bearbeiten der Yggdrasil-JSON-Antwort: %1 bei %2.</translation> + </message> + <message> + <location line="-8"/> + <source>Authentication operation timed out.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+3"/> + <source>Authentication operation cancelled.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+20"/> + <source>Authentication operation failed due to a network error: %1 (%2)</source> + <translation type="unfinished"></translation> </message> <message> <location line="+26"/> + <source>Failed to parse authentication server response JSON response: %1 at offset %2.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+29"/> <source>An unknown error occurred when trying to communicate with the authentication server: %1</source> <translation>Ein unbekannter Fehler ist bei der Kommunikation mit den Authentifizierungs-Servern aufgetreten: %1</translation> </message> @@ -3660,7 +3782,7 @@ Diese Mitteilung wird so lange angezeigt, bis du die Option entfernt hast.</tran <translation>Ein unbekannter Yggdrasil-Fehler ist aufgetreten.</translation> </message> <message> - <location line="+9"/> + <location line="+11"/> <source>Sending request to auth servers...</source> <translation>Sende Anfrage an die Authentifizierungs-Server...</translation> </message> @@ -3671,8 +3793,27 @@ Diese Mitteilung wird so lange angezeigt, bis du die Option entfernt hast.</tran </message> <message> <location line="+2"/> + <source>Authentication task succeeded.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>Failed to contact the authentication server.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>Failed to authenticate.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>...</source> + <translation type="unfinished">...</translation> + </message> + <message> <source>Processing. Please wait...</source> - <translation>Bearbeite. Bitte warten...</translation> + <translation type="vanished">Bearbeite. Bitte warten...</translation> </message> </context> </TS> diff --git a/translations/mmc_fr.ts b/translations/mmc_fr.ts new file mode 100644 index 00000000..dbdcdbac --- /dev/null +++ b/translations/mmc_fr.ts @@ -0,0 +1,3808 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="fr_FR" sourcelanguage="en"> +<context> + <name>AboutDialog</name> + <message> + <source>Dialog</source> + <translation type="vanished">Dialogue</translation> + </message> + <message> + <source>MultiMC</source> + <translation type="vanished">MultiMC</translation> + </message> + <message> + <location filename="../gui/dialogs/AboutDialog.ui" line="+111"/> + <source>About</source> + <translation>À propos</translation> + </message> + <message> + <source>MultiMC is a custom launcher that makes managing Minecraft easier by allowing you to have multiple installations of Minecraft at once.</source> + <translation type="vanished">MultiMC est un lanceur personalisé qui permet de configurer minecraft plus facilement en permettant l'installation de plusieures instances de minecraft en une.</translation> + </message> + <message> + <location line="-91"/> + <source>About MultiMC</source> + <translation>À propos de MultiMC</translation> + </message> + <message> + <location line="+69"/> + <source>MultiMC 5</source> + <translation>MultiMC 5</translation> + </message> + <message> + <location line="+28"/> + <source>Version:</source> + <translation>Version:</translation> + </message> + <message> + <location line="+10"/> + <source>Version Type:</source> + <translation>Type de version:</translation> + </message> + <message> + <location line="+10"/> + <source>Platform:</source> + <translation>Plateforme:</translation> + </message> + <message> + <location line="+10"/> + <source>Build Number:</source> + <translation>Build numéro:</translation> + </message> + <message> + <location line="+10"/> + <source>Channel:</source> + <translation>Canal:</translation> + </message> + <message> + <location line="+13"/> + <source><html><head/><body><p>MultiMC is a custom launcher that makes managing Minecraft easier by allowing you to have multiple instances of Minecraft at once.</p></body></html></source> + <translation><html><head/><body><p>MultiMC est un lanceur personalisé qui permet de configurer minecraft plus facilement en permettant l'installation de plusieures instances de minecraft en une.</p></body></html></translation> + </message> + <message> + <location line="+19"/> + <source>© 2013 MultiMC Contributors</source> + <translation>© 2013 MultiMC Contributeurs</translation> + </message> + <message> + <location line="+15"/> + <source><html><head/><body><p><a href="http://github.com/MultiMC/MultiMC5"><span style=" text-decoration: underline; color:#0000ff;">http://github.com/MultiMC/MultiMC5</span></a></p></body></html></source> + <translation></translation> + </message> + <message> + <location line="+41"/> + <source><!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:'Bitstream Vera Sans'; font-size:11pt; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:10pt;">Andrew Okin &lt;</span><a href="mailto:forkk@forkk.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">forkk@forkk.net</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Petr Mrázek &lt;</span><a href="mailto:peterix@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">peterix@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Sky &lt;</span><a href="https://www.twitter.com/drayshak"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@drayshak</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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:'MS Shell Dlg 2'; 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;">With thanks 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-family:'MS Shell Dlg 2'; font-size:10pt;">Orochimarufan &lt;</span><a href="mailto:orochimarufan.x3@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">orochimarufan.x3@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">TakSuyu &lt;</span><a href="mailto:taksuyu@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">taksuyu@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Kilobyte &lt;</span><a href="mailto:stiepen22@gmx.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">stiepen22@gmx.de</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Jan (02JanDal) &lt;</span><a href="mailto:02jandal@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">02jandal@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Robotbrain &lt;</span><a href="https://twitter.com/skylordelros"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@skylordelros</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Rootbear75 &lt;</span><a href="https://twitter.com/rootbear75"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@rootbear75</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt; (build server)</span></p></body></html></source> + <translation><!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:'Bitstream Vera Sans'; font-size:11pt; 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:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:10pt;">Andrew Okin &lt;</span><a href="mailto:forkk@forkk.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">forkk@forkk.net</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Petr Mrázek &lt;</span><a href="mailto:peterix@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">peterix@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Sky &lt;</span><a href="https://www.twitter.com/drayshak"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@drayshak</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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:'MS Shell Dlg 2'; 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;">Remerciements à:</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-family:'MS Shell Dlg 2'; font-size:10pt;">Orochimarufan &lt;</span><a href="mailto:orochimarufan.x3@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">orochimarufan.x3@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">TakSuyu &lt;</span><a href="mailto:taksuyu@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">taksuyu@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Kilobyte &lt;</span><a href="mailto:stiepen22@gmx.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">stiepen22@gmx.de</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Jan (02JanDal) &lt;</span><a href="mailto:02jandal@gmail.com"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">02jandal@gmail.com</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Robotbrain &lt;</span><a href="https://twitter.com/skylordelros"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@skylordelros</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt;</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-family:'MS Shell Dlg 2'; font-size:10pt;">Rootbear75 &lt;</span><a href="https://twitter.com/rootbear75"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; text-decoration: underline; color:#0000ff;">@rootbear75</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt;">&gt; (Créateur du serveur)</span></p></body></html></translation> + </message> + <message> + <location line="+64"/> + <source><!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:11pt; 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 &quot;License&quot;);</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;"> 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;">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 &quot;AS IS&quot; 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 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 &quot;AS IS&quot; 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 &lt;ereslibre@kde.org&gt;</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 &lt;tapsell@kde.org&gt;</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;">+ &quot;CLASSPATH&quot; 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 &quot;Oracle designates this particular file as subject to the &quot;Classpath&quot;</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.&quot;</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 &lt;lasse.collin@tukaani.org&gt;</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 &lt;http://7-zip.org/&gt;</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> +<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;">Java IconLoader class</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;"><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;">Copyright (c) 2011, Chris Molini</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</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;">modification, 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:8pt;"> * Redistributions of source code must retain the above copyright</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;"> notice, this 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</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;"> notice, this list of conditions and the following disclaimer in the</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;"> documentation and/or other 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;"> * Neither the name of the &lt;organization&gt; nor the</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;"> names of its contributors may 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 &quot;AS IS&quot; 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</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;">DISCLAIMED. IN NO EVENT SHALL &lt;COPYRIGHT HOLDER&gt; BE LIABLE FOR ANY</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;">DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</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;">(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</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;">LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 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;">ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</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;">(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 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;">SOFTWARE, EVEN IF ADVISED 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 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></body></html></source> + <translation type="unfinished"><!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:11pt; 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 Contributeurs</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;">Sous licence Apache, Version 2.0 (la &quot;Licence&quot;);</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;">Vous ne pouvez pas utiliser ce fichier , sauf en conformité avec la licence.</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;">Vous pouvez obtenir une copie de la licence à</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;"> 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;">Sauf si requis par la loi en vigueur ou accord écrit, le logiciel</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;">distribué sous la licence est distribué &quot;TEL QUEL&quot;,</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;">SANS GARANTIES OU CONDITIONS DE QUELQUE NATURE QUE CE SOIT , expresse ou implicite.</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;">Consultez la Licence pour les autorisations d'administration de langue spécifique</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;">et limites prévues par la licence .</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 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;">Tous droits réservés.</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 et l'utilisation sous forme source et binaire, avec ou sans 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;">sont autorisées sous réserve que les conditions suivantes sont remplies:</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;">* Les redistributions du code source doivent conserver l'avis de copyright ci-dessus, cette</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;">liste de conditions et la renonciation suivante.</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;">* Les redistributions sous forme binaire doivent reproduire l'avis de copyright ci-dessus, cette</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;">liste de conditions et la renonciation suivante dans la documentation et / ou d'autres</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;"> matériaux fournis avec la 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;">* Le nom des collaborateurs ne peuvent pas être utilisés pour approuver ou promouvoir des produits</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;"> dérivés de ce logiciel sans autorisation écrite particulière et préalable.</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;">CE LOGICIEL EST FOURNI PAR LES TITULAIRES ET CONTRIBUTEURS &quot;TEL QUEL&quot; ET</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;">TOUTE GARANTIE, EXPLICITE OU IMPLICITE, Y COMPRIS, MAIS SANS S'Y LIMITER, LES GARANTIES</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;">GARANTIES DE QUALITÉ MARCHANDE ET D'ADAPTATION À UN USAGE PARTICULIER.</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;">EN AUCUN CAS, LE TITULAIRE OU COLLABORATEURS DU DROIT D'AUTEUR NE SERONT TENUS RESPONSABLES DES DOMMAGES DIRECTS,</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;">DOMMAGES INDIRECTS SPÉCIAUX, EXEMPLAIRES OU INDIRECTS (Y COMPRIS,</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;">MAIS SANS S'Y LIMITER, L'ACQUISITION DE BIENS OU DE SERVICES DE SUBSTITUTION; PERTE D'UTILISATION,</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;">DONNEES OU DE PROFITS; OU INTERRUPTION D'ACTIVITE) SOIT LA CAUSE ET LA THÉORIE DE</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;">RESPONSABILITÉ, PAR CONTRAT, RESPONSABILITÉ STRICTE OU D'UN DÉLIT ( Y COMPRIS LA NÉGLIGENCE</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;">OU AUTRE) PROVENANT DE TOUTE FORME DE L'UTILISATION DE CE LOGICIEL, MEME SI</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;">DE LA POSSIBILITÉ DE TELS DOMMAGES.</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 &lt;ereslibre@kde.org&gt;</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 &lt;tapsell@kde.org&gt;</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;">+ &quot;CLASSPATH&quot; 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 &quot;Oracle designates this particular file as subject to the &quot;Classpath&quot;</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.&quot;</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 &lt;lasse.collin@tukaani.org&gt;</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 &lt;http://7-zip.org/&gt;</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> +<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;">Java IconLoader class</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;"><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;">Copyright (c) 2011, Chris Molini</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</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;">modification, 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:8pt;"> * Redistributions of source code must retain the above copyright</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;"> notice, this 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</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;"> notice, this list of conditions and the following disclaimer in the</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;"> documentation and/or other 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;"> * Neither the name of the &lt;organization&gt; nor the</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;"> names of its contributors may 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 &quot;AS IS&quot; 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</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;">DISCLAIMED. IN NO EVENT SHALL &lt;COPYRIGHT HOLDER&gt; BE LIABLE FOR ANY</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;">DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</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;">(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</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;">LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 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;">ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</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;">(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 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;">SOFTWARE, EVEN IF ADVISED 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 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></body></html></translation> + </message> + <message> + <location line="+175"/> + <source><!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:'Bitstream Vera Sans'; font-size:11pt; 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;">We keep MultiMC open source because we think it's important to be able to see the source code for a project like this, and we do so using the Apache license.</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;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Part of the reason for using the Apache license is we don't want people using the &quot;MultiMC&quot; name when redistributing the project. This means people must take the time to go through the source code and remove all references to &quot;MultiMC&quot;, including but not limited to the project icon and the title of windows, (no *MultiMC-fork* in the title).</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;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Apache license covers reasonable use for the name - a mention of the project's origins in the About dialog and the license is acceptable. However, it should be abundantly clear that the project is a fork <span style=" font-weight:600;">without</span> implying that you have our blessing.</p></body></html></source> + <translation><!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:'Bitstream Vera Sans'; font-size:11pt; 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;">Nous gardons MultiMC open source parce que nous pensons qu'il est important d'être en mesure de voir le code source d'un projet comme celui-ci, et nous le faisons en utilisant la licence Apache.</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;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Une partie de la raison de l'utilisation de la licence Apache est que nous ne voulons pas que les gens utilise le nom &quot;MultiMC&quot; lors de la redistribution du projet. Cela signifie que les gens doivent prendre le temps de parcourir le code source et de supprimer toutes les références à &quot;MultiMC&quot;, y compris mais non limité à l'icône du projet et le titre des fenêtres (pas de * MultiMC-fork * dans le titre).</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;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La licence Apache couvre l'utilisation raisonnable pour le nom - Une mention de l'origine du projet dans la boîte de dialogue "À propos" et la licence est acceptable. Cependant, il devrait être clair que le projet est un fork <span style=" font-weight:600;">sans que cela</span> implique que vous avez notre bénédiction.</p></body></html></translation> + </message> + <message> + <source><!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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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;">With thanks 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:10pt;">Orochimarufan &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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) &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt; (build server)</span></p></body></html></source> + <translation type="vanished"><!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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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;">Remerciements à:</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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt;</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) &lt;</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;">&gt;</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 &lt;</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;">&gt;</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 &lt;</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;">&gt; (Créateur du serveur)</span></p></body></html></translation> + </message> + <message> + <location line="-214"/> + <source>No Language file loaded.</source> + <extracomment>Hey, Translator, feel free to put credit to you here</extracomment> + <translation>Traduction FR par un mystérieu inconnu au coeur gros comme une montagne :p .</translation> + </message> + <message> + <source><!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 &quot;License&quot;);</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;"> 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;">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 &quot;AS IS&quot; 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 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 &quot;AS IS&quot; 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 &lt;ereslibre@kde.org&gt;</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 &lt;tapsell@kde.org&gt;</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;">+ &quot;CLASSPATH&quot; 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 &quot;Oracle designates this particular file as subject to the &quot;Classpath&quot;</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.&quot;</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 &lt;lasse.collin@tukaani.org&gt;</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 &lt;http://7-zip.org/&gt;</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></source> + <translation type="obsolete"><!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 &quot;License&quot;);</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;"> 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;">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 &quot;AS IS&quot; 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 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 &quot;AS IS&quot; 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 &lt;ereslibre@kde.org&gt;</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 &lt;tapsell@kde.org&gt;</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;">+ &quot;CLASSPATH&quot; 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 &quot;Oracle designates this particular file as subject to the &quot;Classpath&quot;</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.&quot;</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 &lt;lasse.collin@tukaani.org&gt;</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 &lt;http://7-zip.org/&gt;</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></translation> + </message> + <message> + <location line="+208"/> + <source>Forking/Redistribution</source> + <translation></translation> + </message> + <message> + <source><!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;">We keep MultiMC open source because we think it's important to be able to see the source code for a project like this, and we do so using the Apache 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-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;">Part of the reason for using the Apache license is we don't want people using the &quot;MultiMC&quot; name when redistributing the project. This means people must take the time to go through the source code and remove all references to &quot;MultiMC&quot;, including but not limited to the project icon and the title of windows, (no *MultiMC-fork* in the title).</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;">The Apache license covers reasonable use for the name - a mention of the project's origins in the About dialog and the license is acceptable. However, it should be abundantly clear that the project is a fork </span><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt; font-weight:600;">without</span><span style=" font-family:'Bitstream Vera Sans'; font-size:11pt;"> implying that you have our blessing.</span></p></body></html></source> + <translation type="vanished"><!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;">Nous gardons MultiMC open source parce que nous pensons qu'il est important d'être en mesure de voir le code source d'un projet comme celui-ci, et nous le faisons en utilisant la licence Apache.</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;">Une partie de la raison de l'utilisation de la licence Apache est que nous ne voulons pas que les gens utilise le nom &quot;MultiMC&quot; lors de la redistribution du projet. Cela signifie que les gens doivent prendre le temps de parcourir le code source et de supprimer toutes les références à &quot;MultiMC&quot;, y compris mais non limité à l'icône du projet et le titre des fenêtres (pas de * MultiMC-fork * dans le titre).</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;">La licence Apache couvre l'utilisation raisonnable pour le nom - Une mention de l'origine du projet dans la boîte de dialogue "À propos" et la licence est acceptable. Cependant, il devrait être clair que le projet est un fork <span style=" font-weight:600;">sans que cela</span> implique que vous avez notre bénédiction.</span></p></body></html></translation> + </message> + <message> + <location line="-242"/> + <source>Credits</source> + <translation>Crédits</translation> + </message> + <message> + <location line="+53"/> + <source>License</source> + <translation>Licence</translation> + </message> + <message> + <location line="+222"/> + <source>About Qt</source> + <translation>À propos de Qt</translation> + </message> + <message> + <location line="+20"/> + <source>Close</source> + <translation>Fermer</translation> + </message> + <message> + <location filename="../gui/dialogs/AboutDialog.cpp" line="+33"/> + <source>Version</source> + <translation>Version</translation> + </message> + <message> + <location line="+1"/> + <source>Version Type</source> + <translation>Type de version</translation> + </message> + <message> + <location line="+1"/> + <source>Platform</source> + <translation>Plateforme</translation> + </message> + <message> + <location line="+3"/> + <source>Build Number</source> + <translation>Build numéro</translation> + </message> + <message> + <location line="+5"/> + <source>Channel</source> + <translation>Canal</translation> + </message> +</context> +<context> + <name>AccountListDialog</name> + <message> + <location filename="../gui/dialogs/AccountListDialog.ui" line="+14"/> + <source>Manage Accounts</source> + <translation>Gestion des comptes</translation> + </message> + <message> + <location line="+6"/> + <source><html><head/><body><p>Welcome! If you're new here, you can click the &quot;Add&quot; button to add your Mojang or Minecraft account.</p></body></html></source> + <translation><html><head/><body><p>Bienvenu! Si vous êtes nouveau, Vous pouvez cliquer sur le bouton &quot;Ajouter&quot; pour ajouter votre compte Mojang ou Minecraft.</p></body></html></translation> + </message> + <message> + <location line="+17"/> + <source>&Add</source> + <translation>&Ajouter</translation> + </message> + <message> + <location line="+7"/> + <source>&Remove</source> + <translation>&Supprimer</translation> + </message> + <message> + <location line="+20"/> + <source><html><head/><body><p>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).</p></body></html></source> + <translation><html><head/><body><p>Réglez le compte actuellement sélectionné comme le compte actif. Le compte actif est le compte qui est utilisé pour se connecter (sauf si elle est remplacée pour une instance spécifique).</p></body></html></translation> + </message> + <message> + <location line="+3"/> + <source>&Set Default</source> + <translation>&Définir compte par défaut</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't have its own default set.</source> + <translation>Ne pas fixer de compte par défaut. Cela fera que MultiMC vous invitera à sélectionner un compte à chaque fois que vous lancez une instance qui ne possède pas son propre compte par défaut.</translation> + </message> + <message> + <location line="+3"/> + <source>&No Default</source> + <translation>&Pas de compte par défaut</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>Veuillez entrer le nom d'utilisateur et le mot de passe de votre compte Mojang ou Minecraft pour ajouter celui-ci.</translation> + </message> + <message> + <location line="+84"/> + <source>Login error.</source> + <translation>Erreur de connexion.</translation> + </message> +</context> +<context> + <name>AccountSelectDialog</name> + <message> + <location filename="../gui/dialogs/AccountSelectDialog.ui" line="+14"/> + <source>Select an Account</source> + <translation>Sélectionnez un compte</translation> + </message> + <message> + <location line="+6"/> + <source>Select an account.</source> + <translation>Sélectionnez un compte.</translation> + </message> + <message> + <location line="+12"/> + <source>Use as default?</source> + <translation>Utiliser par défaut?</translation> + </message> + <message> + <location line="+7"/> + <source>Use as default for this instance only?</source> + <translation>Utiliser par défaut pour cette instance seulement?</translation> + </message> +</context> +<context> + <name>AssetsMigrateTask</name> + <message> + <location filename="../logic/assets/AssetsMigrateTask.cpp" line="+19"/> + <source>Migrating legacy assets...</source> + <translation>Migration des anciens assets...</translation> + </message> +</context> +<context> + <name>AuthenticateTask</name> + <message> + <location filename="../logic/auth/flows/AuthenticateTask.cpp" line="+87"/> + <source>Authentication server didn't send a client token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server attempted to change the client token. This isn't supported.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+12"/> + <source>Authentication server didn't send an access token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+45"/> + <source>Authentication server didn't specify a currently selected profile. The account exists, but likely isn't premium.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server specified a selected profile that wasn't in the available profiles list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+37"/> + <source>Authenticating: Sending request...</source> + <translation>Authentification: Envoi de la requête...</translation> + </message> + <message> + <location line="+2"/> + <source>Authenticating: Processing response...</source> + <translation>Authentification: Traitement de la réponse...</translation> + </message> +</context> +<context> + <name>BaseExternalTool</name> + <message> + <location filename="../logic/tools/BaseExternalTool.cpp" line="+48"/> + <source>MCEdit</source> + <translation></translation> + </message> + <message> + <location line="+0"/> + <source>Choose which world to open:</source> + <translation>Choisissez quel monde à ouvrir:</translation> + </message> +</context> +<context> + <name>BaseProfiler</name> + <message> + <location filename="../logic/tools/BaseProfiler.cpp" line="+29"/> + <source>Profiler aborted</source> + <translation>Profiler avorté</translation> + </message> +</context> +<context> + <name>ConsoleWindow</name> + <message> + <location filename="../gui/ConsoleWindow.ui" line="+14"/> + <source>MultiMC Console</source> + <translation>Console MultiMC</translation> + </message> + <message> + <location line="+34"/> + <source>Upload Log</source> + <translation>Envoyer les logs</translation> + </message> + <message> + <location line="+7"/> + <source>Manage Screenshots</source> + <translation>Gérer les captures d'écrans</translation> + </message> + <message> + <location line="+20"/> + <source>&Kill Minecraft</source> + <translation>&Tuer le processus</translation> + </message> + <message> + <location line="+7"/> + <source>&Close</source> + <translation>&Fermer</translation> + </message> + <message> + <source>Kill Minecraft</source> + <translation type="vanished">Tuer le processus</translation> + </message> + <message> + <location filename="../gui/ConsoleWindow.cpp" line="+58"/> + <source>Console window for </source> + <translation>Console windows pour </translation> + </message> + <message> + <location line="+120"/> + <source>Close</source> + <translation>Fermer</translation> + </message> + <message> + <location line="+2"/> + <source>Hide</source> + <translation>Masquer</translation> + </message> + <message> + <location line="+55"/> + <source>Kill Minecraft?</source> + <translation>Tuer le processus?</translation> + </message> + <message> + <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>Cela peut provoquer la corruption de l'instance et doit être utilisé uniquement si Minecraft est gelé pour de bonne raison</translation> + </message> +</context> +<context> + <name>CopyInstanceDialog</name> + <message> + <location filename="../gui/dialogs/CopyInstanceDialog.ui" line="+17"/> + <source>Copy Instance</source> + <translation>Copier l'instance</translation> + </message> + <message> + <location line="+57"/> + <source>Name</source> + <translation>Nom</translation> + </message> +</context> +<context> + <name>DownloadUpdateTask</name> + <message> + <location filename="../logic/updater/DownloadUpdateTask.cpp" line="+83"/> + <source>Finding information about the current version...</source> + <translation>Recherche d'informations sur la version actuelle...</translation> + </message> + <message> + <location line="+21"/> + <source>Loading version information...</source> + <translation>Chargement des informations de la version...</translation> + </message> + <message> + <location line="+50"/> + <source>Failed to download version info files.</source> + <translation>Impossible de télécharger les fichiers d'information de la version.</translation> + </message> + <message> + <location line="+5"/> + <source>Reading file list for new version...</source> + <translation>lectures de la liste de fichier pour la nouvelle version...</translation> + </message> + <message> + <location line="+15"/> + <source>Reading file list for current version...</source> + <translation>lectures de la liste de fichier pour la version actuelle...</translation> + </message> + <message> + <location line="+90"/> + <source>Failed to process update lists...</source> + <translation>Impossible de traiter la liste de mise à jour...</translation> + </message> + <message> + <location line="+12"/> + <source>Downloading %1 update files.</source> + <translation>Téléchargement de %1 fichiers de mise à jour.</translation> + </message> + <message> + <location line="+14"/> + <source>Processing file lists - figuring out how to install the update...</source> + <translation>Traitement des listes de fichier - déterminer comment installer la mise à jour ...</translation> + </message> + <message> + <location line="+216"/> + <source>Failed to write update script file.</source> + <translation>Impossible d'écrire le fichier de script de mise à jour.</translation> + </message> + <message> + <location line="+31"/> + <source>Failed to download update files.</source> + <translation>Impossible de télécharger les fichiers de mise à jour.</translation> + </message> +</context> +<context> + <name>EditAccountDialog</name> + <message> + <location filename="../gui/dialogs/EditAccountDialog.ui" line="+14"/> + <source>Edit Account</source> + <translation>Éditer le compte</translation> + </message> + <message> + <location line="+6"/> + <source>Message label placeholder.</source> + <translation>Espace réservé pour le méssage du label.</translation> + </message> + <message> + <location line="+13"/> + <source>Email / Username</source> + <translation>E-Mail / Nom d'utilisateur</translation> + </message> + <message> + <location line="+10"/> + <source>Password</source> + <translation>Mots de passe</translation> + </message> +</context> +<context> + <name>EditNotesDialog</name> + <message> + <location filename="../gui/dialogs/EditNotesDialog.ui" line="+14"/> + <source>Edit Notes</source> + <translation>Editer les notes</translation> + </message> + <message> + <location filename="../gui/dialogs/EditNotesDialog.cpp" line="+30"/> + <source>Edit notes of %1</source> + <translation>Editer les notes de %1</translation> + </message> +</context> +<context> + <name>ForgeInstallTask</name> + <message> + <location filename="../logic/ForgeInstaller.cpp" line="+249"/> + <source>Installing forge...</source> + <translation>Installation de Forge...</translation> + </message> + <message> + <location line="+5"/> + <source>Unknown error occured</source> + <translation>Une erreur inconnue s'est produite</translation> + </message> + <message> + <location line="+10"/> + <source>Failure to download forge</source> + <translation>Le téléchargement de Forge a échoué</translation> + </message> + <message> + <location line="+6"/> + <location line="+14"/> + <source>Failure to install forge</source> + <translation>L'installation de Forge a échoué</translation> + </message> + <message> + <location line="+29"/> + <source>Failed to load the version description file for reasons unknown.</source> + <translation>Impossible de charger le fichier de description de la version pour des raisons inconnue.</translation> + </message> +</context> +<context> + <name>ForgeListLoadTask</name> + <message> + <location filename="../logic/lists/ForgeVersionList.cpp" line="+161"/> + <source>Fetching Forge version lists...</source> + <translation>Liste de comparaison des versions de Forge...</translation> + </message> +</context> +<context> + <name>IconPickerDialog</name> + <message> + <location filename="../gui/dialogs/IconPickerDialog.ui" line="+14"/> + <source>Pick icon</source> + <translation>Choisir l'icone</translation> + </message> + <message> + <location filename="../gui/dialogs/IconPickerDialog.cpp" line="+64"/> + <source>Add Icon</source> + <translation>Ajouter l'icone</translation> + </message> + <message> + <location line="+2"/> + <source>Remove Icon</source> + <translation>Supprimer l'icone</translation> + </message> + <message> + <location line="+37"/> + <source>Select Icons</source> + <extracomment>The title of the select icons open file dialog</extracomment> + <translation>Sélectionnez l'icone</translation> + </message> + <message> + <location line="+3"/> + <source>Icons</source> + <extracomment>The type of icon files</extracomment> + <translation>Icone</translation> + </message> +</context> +<context> + <name>InstanceSettings</name> + <message> + <location filename="../gui/dialogs/InstanceSettings.ui" line="+14"/> + <source>Instance Settings</source> + <translation>Options de l'instance</translation> + </message> + <message> + <location line="+13"/> + <source>Minecraft</source> + <translation></translation> + </message> + <message> + <location line="+9"/> + <source>Window Size</source> + <translation>Taille de la fenêtre</translation> + </message> + <message> + <location line="+12"/> + <source>Start Minecraft maximized?</source> + <translation>Démarrer minecraft en plein écran?</translation> + </message> + <message> + <location line="+9"/> + <source>Window height:</source> + <translation>Hauteur:</translation> + </message> + <message> + <location line="+7"/> + <source>Window width:</source> + <translation>Largeur:</translation> + </message> + <message> + <location line="+44"/> + <source>Console Settings</source> + <translation>Options de la console</translation> + </message> + <message> + <location line="+12"/> + <source>Show console while the game is running?</source> + <translation>Voir la console quand le jeu est lancé ?</translation> + </message> + <message> + <location line="+7"/> + <source>Automatically close console when the game quits?</source> + <translation>Fermer automatiquement la console quand le jeu est fermé?</translation> + </message> + <message> + <location line="+45"/> + <source>The maximum amount of memory Minecraft is allowed to use.</source> + <translation>La quantité maximale de mémoire que Minecraft est autorisé à utiliser.</translation> + </message> + <message> + <location line="+3"/> + <location line="+36"/> + <location line="+22"/> + <source> MB</source> + <translation></translation> + </message> + <message> + <location line="-25"/> + <source>The amount of memory Minecraft is started with.</source> + <translation>La quantité de mémoire avec laquelle minecraft démarre.</translation> + </message> + <message> + <location line="+22"/> + <source>The amount of memory available to store loaded Java classes.</source> + <translation>La quantité de mémoire disponible pour stocker et charger les classes Java.</translation> + </message> + <message> + <location line="+74"/> + <source>Browse...</source> + <translation>Parcourir...</translation> + </message> + <message> + <location line="+7"/> + <source>Auto-detect...</source> + <translation>Auto-détection...</translation> + </message> + <message> + <source>Account Settings</source> + <translation type="vanished">Options de compte</translation> + </message> + <message> + <source>Login automatically when an instance icon is double clicked?</source> + <translation type="vanished">Se connecter automatiquement quand un double clic est effectué sur une icone d'instance?</translation> + </message> + <message> + <location line="-160"/> + <source>Java</source> + <translation></translation> + </message> + <message> + <location line="+9"/> + <source>Memory</source> + <translation>Mémoire</translation> + </message> + <message> + <location line="+34"/> + <source>Minimum memory allocation:</source> + <translation>Min. mémoire alloué:</translation> + </message> + <message> + <location line="+7"/> + <source>Maximum memory allocation:</source> + <translation>Max. mémoire alloué:</translation> + </message> + <message> + <location line="+51"/> + <source>PermGen:</source> + <translation></translation> + </message> + <message> + <location line="+13"/> + <source>Java Settings</source> + <translation>Options Java</translation> + </message> + <message> + <location line="+12"/> + <source>Test</source> + <translation>Test</translation> + </message> + <message> + <location line="+7"/> + <source>Java path:</source> + <translation>Dossier de Java:</translation> + </message> + <message> + <location line="+7"/> + <source>JVM arguments:</source> + <translation>Arguments JVM:</translation> + </message> + <message> + <source>Auto-detect</source> + <translation type="vanished">Auto-détection</translation> + </message> + <message> + <location line="+33"/> + <source>Custom Commands</source> + <translation>Commandes personnalisées</translation> + </message> + <message> + <location line="+15"/> + <source>Post-exit command:</source> + <translation>Commande post-arrêt:</translation> + </message> + <message> + <location line="+7"/> + <source>Pre-launch command:</source> + <translation>Commande prè-lancement:</translation> + </message> + <message> + <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's working directory with INST_ID, INST_DIR, and INST_NAME as environment variables.</source> + <translation>La commande de Pré-lancement s'exécute avant l'instance et la commande post-sortie s'exécute après sa sortie. Les deux seront exploités dans le répertoire de travail de MultiMC avec INST_ID, INST_DIR, et INST_NAME comme variables d'environnement.</translation> + </message> + <message> + <location filename="../gui/dialogs/InstanceSettings.cpp" line="+195"/> + <source>Select a Java version</source> + <translation>Sélectionner la version de Java</translation> + </message> + <message> + <location line="+13"/> + <source>Find Java executable</source> + <translation>Trouver l'exécutable de Java</translation> + </message> + <message> + <location line="+26"/> + <source>Java test success</source> + <translation>Test de Java avec succès</translation> + </message> + <message> + <location line="+5"/> + <source>Java test failure</source> + <translation>Test de Java echec</translation> + </message> + <message> + <location line="+1"/> + <source>The specified java binary didn't work. You should use the auto-detect feature, or set the path to the java executable.</source> + <translation>Le binaire java spécifiée n'a pas fonctionné. Vous devez utiliser la fonction d'auto-détection, ou définir le chemin vers l'exécutable java.</translation> + </message> +</context> +<context> + <name>JProfiler</name> + <message> + <location filename="../logic/tools/JProfiler.cpp" line="+24"/> + <source>Listening on port: %1</source> + <translation>Écoute sur le port: %1</translation> + </message> + <message> + <location line="+7"/> + <source>Profiler aborted</source> + <translation>Profiler avorté</translation> + </message> +</context> +<context> + <name>JVisualVM</name> + <message> + <location filename="../logic/tools/JVisualVM.cpp" line="+21"/> + <source>JVisualVM started</source> + <translation>JVisualVM démarré</translation> + </message> + <message> + <location line="+7"/> + <source>Profiler aborted</source> + <translation>Profiler avorté</translation> + </message> +</context> +<context> + <name>JavaListLoadTask</name> + <message> + <location filename="../logic/lists/JavaVersionList.cpp" line="+175"/> + <source>Detecting Java installations...</source> + <translation>Détection de l'installation de Java...</translation> + </message> +</context> +<context> + <name>LLListLoadTask</name> + <message> + <location filename="../logic/lists/LiteLoaderVersionList.cpp" line="+103"/> + <source>Loading LiteLoader version list...</source> + <translation>Chargement de la liste des versions de LiteLoader...</translation> + </message> + <message> + <location line="+67"/> + <source>This is a lightweight loader for mods that don't change game mechanics.</source> + <translation>Il s'agit d'un chargeur léger pour les mods qui ne changent pas les mécaniques du jeu.</translation> + </message> +</context> +<context> + <name>LWJGLSelectDialog</name> + <message> + <location filename="../gui/dialogs/LwjglSelectDialog.ui" line="+14"/> + <source>Manage Lwjgl Versions</source> + <translation>Gérer les version de LWJGL</translation> + </message> + <message> + <location line="+6"/> + <source>Status label...</source> + <translation>Statut du label...</translation> + </message> + <message> + <location line="+12"/> + <source>&Refresh</source> + <translation>&Actualiser</translation> + </message> + <message> + <location filename="../gui/dialogs/LwjglSelectDialog.cpp" line="+61"/> + <source>Loading LWJGL version list...</source> + <translation>Chargement de la liste des versions de LWJGL...</translation> + </message> +</context> +<context> + <name>LegacyModEditDialog</name> + <message> + <location filename="../gui/dialogs/LegacyModEditDialog.ui" line="+14"/> + <source>Edit Mods</source> + <translation>Editer Mods</translation> + </message> + <message> + <location line="+10"/> + <source>Jar Mods</source> + <translation>Jar Mods</translation> + </message> + <message> + <location line="+20"/> + <location line="+77"/> + <location line="+69"/> + <location line="+70"/> + <source>&Add</source> + <translation>&Ajouter</translation> + </message> + <message> + <location line="-209"/> + <location line="+77"/> + <location line="+69"/> + <location line="+70"/> + <source>&Remove</source> + <translation>&Supprimer</translation> + </message> + <message> + <location line="-209"/> + <source>MCForge</source> + <translation></translation> + </message> + <message> + <location line="+20"/> + <source>Move &Up</source> + <translation>Vers le &Haut</translation> + </message> + <message> + <location line="+7"/> + <source>Move &Down</source> + <translation>Vers le &Bas</translation> + </message> + <message> + <location line="+19"/> + <source>Core Mods</source> + <translation>Core mods</translation> + </message> + <message> + <location line="+44"/> + <location line="+69"/> + <location line="+70"/> + <source>&View Folder</source> + <translation>&Voir le dossier</translation> + </message> + <message> + <location line="-117"/> + <source>Loader Mods</source> + <translation>Mods Normaux</translation> + </message> + <message> + <location line="+72"/> + <source>Texture Packs</source> + <translation>Pack de ressource</translation> + </message> + <message> + <location filename="../gui/dialogs/OneSixModEditDialog.cpp" line="+325"/> + <location filename="../gui/dialogs/LegacyModEditDialog.cpp" line="+258"/> + <source>Select Loader Mods</source> + <extracomment>Title of regular mod selection dialog</extracomment> + <translation>Sélectionner les Mods Normaux</translation> + </message> + <message> + <location line="+27"/> + <source>Select Resource Packs</source> + <translation>Sélectionner le Pack de ressource</translation> + </message> + <message> + <location filename="../gui/dialogs/LegacyModEditDialog.cpp" line="-58"/> + <source>Select Core Mods</source> + <extracomment>Title of core mod selection dialog</extracomment> + <translation>Sélectionner le Core Mods</translation> + </message> + <message> + <location line="+10"/> + <source>Select Forge version</source> + <translation>Sélectionner la version de Forge</translation> + </message> + <message> + <location line="+37"/> + <source>Select Jar Mods</source> + <extracomment>Title of jar mod selection dialog</extracomment> + <translation>Sélectionner le Mods Jar</translation> + </message> + <message> + <location line="+22"/> + <source>Select Texture Packs</source> + <extracomment>Title of texture pack selection dialog</extracomment> + <translation>Sélectionner le pack de texture</translation> + </message> +</context> +<context> + <name>LegacyUpdate</name> + <message> + <location filename="../logic/LegacyUpdate.cpp" line="+122"/> + <source>Checking for FML libraries...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+47"/> + <source>Dowloading FML libraries...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+23"/> + <source>Copying FML libraries into the instance...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+11"/> + <source>Failed creating FML library folder inside the instance.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Failed copying Forge/FML library: %1.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+39"/> + <source>Downloading new LWJGL...</source> + <translation>Téléchargement d'un nouveau LWJGL...</translation> + </message> + <message> + <location line="+68"/> + <source>Installing new LWJGL...</source> + <translation>Installation d'un nouveau LWJGL...</translation> + </message> + <message> + <location line="+76"/> + <source>Installing new LWJGL - extracting </source> + <translation>Installation d'un nouveau LWJGL - extraction</translation> + </message> + <message> + <location line="+30"/> + <source>Checking for jar updates...</source> + <translation>Vérification des mises à jours du jar...</translation> + </message> + <message> + <location line="+10"/> + <source>Downloading new minecraft.jar ...</source> + <translation>Téléchargement du nouveau minecraft.jar...</translation> + </message> + <message> + <location line="+33"/> + <source>Installing mods: Adding </source> + <translation>Installation des mods: Ajout </translation> + </message> + <message> + <location line="+86"/> + <source>Installing mods: Backing up minecraft.jar ...</source> + <translation>Installation des mods: Sauvegarde du minecraft.jar ...</translation> + </message> + <message> + <location line="+25"/> + <source>Installing mods: Opening minecraft.jar ...</source> + <translation>Installation des mods: ouverture de minecraft.jar ...</translation> + </message> + <message> + <location line="+14"/> + <source>Installing mods: Adding mod files...</source> + <translation>Installation des mods: Ajout des fichiers du mod...</translation> + </message> +</context> +<context> + <name>LiteLoaderInstallTask</name> + <message> + <location filename="../logic/LiteLoaderInstaller.cpp" line="+115"/> + <source>For reasons unknown, the LiteLoader installation failed. Check your MultiMC log files for details.</source> + <translation>Pour des raisons inconnue, l'installation de LiteLoader a échoué. Vérifiez vos fichiers logs de MultiMC pour plus de détails.</translation> + </message> + <message> + <location line="+17"/> + <source>Failed to load the version description file for reasons unknown.</source> + <translation>Impossible de charger le fichier de description de la version pour des raisons inconnue.</translation> + </message> +</context> +<context> + <name>LoginDialog</name> + <message> + <source>Login</source> + <translation type="vanished">Connexion</translation> + </message> + <message> + <source>Username:</source> + <translation type="vanished">Nom d'utilisateur:</translation> + </message> + <message> + <source>Password:</source> + <translation type="vanished">Mot de passe:</translation> + </message> + <message> + <source>Password</source> + <translation type="vanished">Mot de passe</translation> + </message> + <message> + <source>Forget</source> + <translation type="vanished">Oublier</translation> + </message> + <message> + <source>&Remember Username?</source> + <translation type="vanished">&Se souvenir du nom d'utilisateur?</translation> + </message> + <message> + <source>R&emember Password?</source> + <translation type="vanished">&Se souvenir du mot de passe?</translation> + </message> + <message> + <source>Offline Once</source> + <extracomment>Use offline mode one time</extracomment> + <translation type="vanished">Hors ligne 1 fois</translation> + </message> + <message> + <source>Name</source> + <extracomment>The username during login (placeholder)</extracomment> + <translation type="vanished">Nom</translation> + </message> +</context> +<context> + <name>LoginTask</name> + <message> + <source>Logging in...</source> + <translation type="vanished">Connexion en cour...</translation> + </message> + <message> + <source>Invalid username or password.</source> + <translation type="vanished">Nom d'utilisateur ou mots de passe incorrect.</translation> + </message> + <message> + <source>Launcher outdated, please update.</source> + <translation type="vanished">Le lanceur n'est pas à jour, mettez le à jour s'il vous plaît.</translation> + </message> + <message> + <source>Login failed: %1</source> + <translation type="vanished">Échec de la connexion: %1</translation> + </message> + <message> + <source>The login servers are currently unavailable. Check http://help.mojang.com/ for more info.</source> + <translation type="vanished">Le serveur de connexion est actuellement indisponible. Visitez http://help.mojang.com/ pour plus d'information.</translation> + </message> + <message> + <source>Login failed: Unknown HTTP error %1 occurred.</source> + <translation type="vanished">Échec de la connexion: Une erreur inconnue HTTP %1 est survenue.</translation> + </message> + <message> + <source>Login canceled.</source> + <translation type="vanished">Connexion annulé.</translation> + </message> +</context> +<context> + <name>MCModInfoFrame</name> + <message> + <location filename="../gui/widgets/MCModInfoFrame.ui" line="+26"/> + <source>Frame</source> + <translation>Cadre</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>Sélectionnez un mod pour voir son titre et ses auteurs...</translation> + </message> + <message> + <location line="+19"/> + <location filename="../gui/widgets/MCModInfoFrame.cpp" line="+1"/> + <source>Select a mod to view description...</source> + <translation>Sélectionnez un mod pour voir sa description...</translation> + </message> + <message> + <location filename="../gui/widgets/MCModInfoFrame.cpp" line="-11"/> + <source>No description provided in mcmod.info</source> + <translation>Aucune description disponible dans mcmod.info</translation> + </message> +</context> +<context> + <name>MCVListLoadTask</name> + <message> + <location filename="../logic/lists/MinecraftVersionList.cpp" line="+146"/> + <source>Loading instance version list...</source> + <translation>Chargement de la liste des versions des instances...</translation> + </message> +</context> +<context> + <name>MainWindow</name> + <message> + <location filename="../gui/MainWindow.ui" line="+14"/> + <source>MultiMC 5</source> + <translation>MultiMC 5</translation> + </message> + <message> + <location line="+30"/> + <source>Main Toolbar</source> + <translation>Barre d'outils principale</translation> + </message> + <message> + <location line="+42"/> + <source>Instance Toolbar</source> + <translation>Barre d'outils des instances</translation> + </message> + <message> + <location line="+43"/> + <source>News Toolbar</source> + <translation>Nouvelles barre d'outils</translation> + </message> + <message> + <location line="+35"/> + <source>Add Instance</source> + <translation>Ajouter une instance</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <location line="+358"/> + <source>Add a new instance.</source> + <translation>Ajouter une nouvelle instance.</translation> + </message> + <message> + <location line="-348"/> + <source>View Instance Folder</source> + <translation>Voir le dossier des instances</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the instance folder in a file browser.</source> + <translation>Ouvrir le dossier de l'instance dans un navigateur de fichiers.</translation> + </message> + <message> + <location line="+10"/> + <source>Refresh</source> + <translation>Actualiser</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Reload the instance list.</source> + <translation>Actualiser la liste des instances.</translation> + </message> + <message> + <location line="+10"/> + <source>View Central Mods Folder</source> + <translation>Voir le dossier central des Mods</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the central mods folder in a file browser.</source> + <translation>Ouvrir le dossier central des mods dans un navigateur de fichiers.</translation> + </message> + <message> + <location line="+10"/> + <source>Check for Updates</source> + <translation>Vérifier les mises à jour</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Check for new updates for MultiMC</source> + <translation>Vérifier les mises à jour pour MultiMC</translation> + </message> + <message> + <location line="+10"/> + <location line="+152"/> + <source>Settings</source> + <translation>Options</translation> + </message> + <message> + <location line="-149"/> + <location line="+3"/> + <source>Change settings.</source> + <translation>Modifier les options.</translation> + </message> + <message> + <location line="+13"/> + <source>Report a Bug</source> + <translation>Reporter un bug</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the bug tracker to report a bug with MultiMC.</source> + <translation>Ouvrir le traqueur de bug pour reporter un bug avec MultiMC.</translation> + </message> + <message> + <source>Open the MultiMC dev blog to read news about MultiMC.</source> + <translation type="vanished">Ouvrir le dev blogue MultiMC pour lire les nouvelles sur MultiMC.</translation> + </message> + <message> + <location line="+26"/> + <source>More News</source> + <translation>Plus de nouvelles</translation> + </message> + <message> + <location line="+3"/> + <source>More news...</source> + <translation>Plus de nouvelles...</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the MultiMC development blog to read more news about MultiMC.</source> + <translation>Ouvrez le blog de développement MultiMC pour lire plus de nouvelles sur MultiMC.</translation> + </message> + <message> + <location line="+10"/> + <location line="+6"/> + <source>About MultiMC</source> + <translation>À propos de MultiMC</translation> + </message> + <message> + <location line="-3"/> + <source>View information about MultiMC.</source> + <translation>Voir les information à propos de MultiMC.</translation> + </message> + <message> + <location line="+11"/> + <source>Play</source> + <translation>Jouer</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <location line="+213"/> + <source>Launch the selected instance.</source> + <translation>Lancer l'instance sélectionné.</translation> + </message> + <message> + <location line="-208"/> + <source>Instance Name</source> + <translation>Nom de l'instance</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Rename the selected instance.</source> + <translation>Renommer l'instance sélectionnée.</translation> + </message> + <message> + <location line="+5"/> + <source>Change Group</source> + <translation>Changer le groupe</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Change the selected instance's group.</source> + <translation>Changer le groupe de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+12"/> + <source>Change Icon</source> + <translation>Changer l'icone</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Change the selected instance's icon.</source> + <translation>Changer l'icone de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+8"/> + <source>Edit Notes</source> + <translation>Éditer les notes</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Edit the notes for the selected instance.</source> + <translation>Éditer les notes de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+11"/> + <location line="+3"/> + <source>Change settings for the selected instance.</source> + <translation>Changer les options de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+8"/> + <source>Make Shortcut</source> + <translation>Créer un raccourci</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Make a shortcut on the desktop for the selected instance.</source> + <translation>Créer un raccourci sur le bureau de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+8"/> + <source>Manage Saves</source> + <translation>Gérer les sauvegardes</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Manage saves for the selected instance.</source> + <translation>Gérer les sauvegardes de l'instance sélectionnée.</translation> + </message> + <message> + <location line="+5"/> + <source>Edit Mods</source> + <translation>Éditer les mods</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Edit the mods for the selected instance.</source> + <translation>Éditer les mods pour l'instance séletionnée.</translation> + </message> + <message> + <location line="+5"/> + <source>Change Version</source> + <translation>Changer la version</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Change the selected instance's Minecraft version.</source> + <translation>Changer la version pour l'instance sélectionnée.</translation> + </message> + <message> + <location line="+8"/> + <source>Change LWJGL</source> + <translation>Changer le LWJGL</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Change the version of LWJGL for the selected instance to use.</source> + <translation>Changer la version de LWJGL pour l'instance sélectionnée à utiliser.</translation> + </message> + <message> + <location line="+5"/> + <source>Instance Folder</source> + <translation>Dossier de l'instance</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the selected instance's root folder in a file browser.</source> + <translation>Ouvrir le dossier racine de l'instance sélectionnée dans un navigateur de fichiers.</translation> + </message> + <message> + <location line="+5"/> + <source>Delete</source> + <translation>Supprimer</translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Delete the selected instance.</source> + <translation>Supprimer l'instance sélectionnée.</translation> + </message> + <message> + <location line="+5"/> + <source>Config Folder</source> + <translation>Dossier de configuration</translation> + </message> + <message> + <location line="+3"/> + <source>Open the instance's config folder</source> + <translation>Ouvrir le dossier de configuration de l'instance</translation> + </message> + <message> + <location line="+13"/> + <source>Meow</source> + <translation>Miaou</translation> + </message> + <message> + <location line="+3"/> + <source><html><head/><body><p align="center">It's a fluffy kitty :3</p></body></html></source> + <translation><html><head/><body><p align="center">C'est un minou moelleux :3</p></body></html></translation> + </message> + <message> + <location line="+32"/> + <source>Launch the selected instance in offline mode.</source> + <translation>Lancer l'instance sélectionnée en mode hors ligne.</translation> + </message> + <message> + <location line="+8"/> + <source>Manage Screenshots</source> + <translation>Gérer les captures d'écrans</translation> + </message> + <message> + <location line="+3"/> + <source><html><head/><body><p>View and upload screenshots for this instance</p></body></html></source> + <translation><html><head/><body><p>Voir et envoyer les captures d'écrans pour cette instance</p></body></html></translation> + </message> + <message> + <location line="-33"/> + <source>Copy Instance</source> + <translation>Copier une instance</translation> + </message> + <message> + <location line="-243"/> + <source>Support us on Patreon!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+3"/> + <location line="+3"/> + <source>Open the MultiMC Patreon page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+240"/> + <source>Copy the selected instance.</source> + <translation>Copier l'instance sélectionnée.</translation> + </message> + <message> + <location line="+8"/> + <location filename="../gui/MainWindow.cpp" line="+248"/> + <source>Manage Accounts</source> + <translation>Gérer les comptes</translation> + </message> + <message> + <location line="+3"/> + <source>Manage your Mojang or Minecraft accounts.</source> + <translation>Gérer vos comptes Mojang ou Minecraft.</translation> + </message> + <message> + <location filename="../gui/MainWindow.cpp" line="-31"/> + <source>No instance selected</source> + <translation>Aucune instance sélectionnée</translation> + </message> + <message> + <location line="+1"/> + <source>No status available</source> + <translation>Pas de statut disponible</translation> + </message> + <message> + <location line="+38"/> + <source>Accounts</source> + <translation>Comptes</translation> + </message> + <message> + <location line="+74"/> + <source>No update found.</source> + <translation>Aucune mise à jour trouvée.</translation> + </message> + <message> + <location line="+1"/> + <source>No MultiMC update was found! +You are using the latest version.</source> + <translation>Aucune mise à jour MultiMC a été trouvé! +Vous utilisez la dernière version.</translation> + </message> + <message> + <location line="+45"/> + <source>Rename</source> + <translation>renommer</translation> + </message> + <message> + <location line="+3"/> + <source>Copy instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+14"/> + <source>MultiMC</source> + <translation type="unfinished">MultiMC</translation> + </message> + <message> + <location line="+3"/> + <source>Create instance</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+23"/> + <location line="+934"/> + <source>Launch</source> + <translation>Lancer</translation> + </message> + <message> + <location line="-932"/> + <source>Profilers</source> + <translation></translation> + </message> + <message> + <location line="+8"/> + <source>Profiler not setup correctly. Go into settings, "External Tools".</source> + <translation>Le Profiler n'est pas configuré correctement. Allez dans Paramètres, "Outils externes".</translation> + </message> + <message> + <location line="+7"/> + <source>Tools</source> + <translation>Outils</translation> + </message> + <message> + <location line="+8"/> + <source>Tool not setup correctly. Go into settings, "External Tools".</source> + <translation>L'outil n'est pas configuré correctement. Allez dans Paramètres, "Outils externes".</translation> + </message> + <message> + <location line="+28"/> + <source>No accounts added!</source> + <translation>Pas de comptes ajoutés!</translation> + </message> + <message> + <location line="+37"/> + <source>No Default Account</source> + <translation>Pas de compte par défaut</translation> + </message> + <message> + <location line="+94"/> + <source>Loading news...</source> + <translation>Chargement des nouvelles ...</translation> + </message> + <message> + <location line="+13"/> + <source>No news available.</source> + <translation>Pas de nouvelles disponibles.</translation> + </message> + <message> + <location line="+190"/> + <location line="+71"/> + <source>Failed to create instance %1: </source> + <translation>Impossible de créer une instance %1: </translation> + </message> + <message> + <location line="-60"/> + <location line="+71"/> + <source>An instance with the given directory name already exists.</source> + <translation>Une instance avec le nom de répertoire donné existe déjà.</translation> + </message> + <message> + <location line="-70"/> + <location line="+7"/> + <location line="+7"/> + <location line="+12"/> + <location line="+8"/> + <location line="+37"/> + <location line="+7"/> + <location line="+7"/> + <location line="+429"/> + <location line="+30"/> + <location line="+80"/> + <source>Error</source> + <translation>Erreur</translation> + </message> + <message> + <location line="-618"/> + <location line="+71"/> + <source>Failed to create the instance directory.</source> + <translation>Impossible de créer le répertoire de l'instance.</translation> + </message> + <message> + <location line="-64"/> + <location line="+71"/> + <source>Unknown instance loader error %1</source> + <translation>Erreur de chargement d'une instance inconnu %1</translation> + </message> + <message> + <location line="-49"/> + <location line="+590"/> + <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 ne peut pas télécharger ou mettre à jour l'instance Minecraft, sauf si vous avez au moins un compte ajouté. +S'il vous plaît ajouter votre compte Mojang ou Minecraft.</translation> + </message> + <message> + <location line="-478"/> + <source>Group name</source> + <translation>Nom du groupe</translation> + </message> + <message> + <location line="+0"/> + <source>Enter a new group name.</source> + <translation>Entrez le nom du nouveau groupe.</translation> + </message> + <message> + <location line="+97"/> + <source>CAREFUL</source> + <translation>ATTENTION</translation> + </message> + <message> + <location line="+0"/> + <source>This is permanent! Are you sure? +About to delete: </source> + <translation>Ceci est permanent! Etes-vous sûr? +À propos de supprimer:</translation> + </message> + <message> + <location line="+17"/> + <source>Instance name</source> + <translation>Nom de l'instance</translation> + </message> + <message> + <location line="+0"/> + <source>Enter a new instance name.</source> + <translation>Entrez le nom de la nouvelle instance.</translation> + </message> + <message> + <location line="+99"/> + <source>No Accounts</source> + <translation>Pas de compte</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>Pour jouer à Minecraft, vous devez avoir au moins un compte Mojang ou Minecraft connecté à MultiMC. Voulez vous ouvrir le gestionnaire de compte pour ajouter un compte maintenant?</translation> + </message> + <message> + <location line="+14"/> + <source>Which account would you like to use?</source> + <translation>Quel compte voulez-vous utiliser?</translation> + </message> + <message> + <location line="+22"/> + <source>Your account is currently not logged in. Please enter your password to log in again.</source> + <translation>Votre compte n'est actuellement pas connecté. S'il vous plaît, entrez votre mot de passe pour vous connecter à nouveau.</translation> + </message> + <message> + <location line="+47"/> + <source>Player name</source> + <translation>Nom du joueur</translation> + </message> + <message> + <location line="+1"/> + <source>Choose your offline mode player name.</source> + <translation>Choisissez votre nom de joueur en mode hors ligne.</translation> + </message> + <message> + <location line="+69"/> + <source>Couldn't start profiler: %1</source> + <translation>Impossible de démarrer le profiler: %1</translation> + </message> + <message> + <location line="+9"/> + <source>Waiting for profiler...</source> + <translation>En attente du profiler...</translation> + </message> + <message> + <location line="+7"/> + <source>The launch of Minecraft itself is delayed until you press the button. This is the right time to setup the profiler, as the profiler server is running now. + +%1</source> + <translation>Le lancement de Minecraft lui-même est retardée jusqu'à ce que vous appuyez sur le bouton. C'est le bon moment pour installer le profiler, comme le serveur de profiler est en marche maintenant. + +%1</translation> + </message> + <message> + <location line="+3"/> + <source>Waiting</source> + <translation>Attente</translation> + </message> + <message> + <location line="+10"/> + <source>Couldn't start the profiler: %1</source> + <translation>Impossible de démarrer le profiler: %1</translation> + </message> + <message> + <location line="+294"/> + <source>Failed to load screenshots!</source> + <translation>Impossible de charger les captures d'écran!</translation> + </message> + <message> + <location line="+7"/> + <source>Done uploading!</source> + <translation>Envoi terminé!</translation> + </message> + <message> + <location filename="../gui/MainWindow.ui" line="+5"/> + <location filename="../gui/MainWindow.cpp" line="-433"/> + <source>Play Offline</source> + <translation>Jouer Hors ligne</translation> + </message> + <message> + <location filename="../gui/MainWindow.cpp" line="+150"/> + <source>Error updating instance</source> + <translation>Erreur de mise à jour de l'instance</translation> + </message> + <message> + <location line="+30"/> + <source>MultiMC Shortcut</source> + <translation>Raccourci MultiMC</translation> + </message> + <message> + <location line="+0"/> + <source>Enter a Shortcut Name.</source> + <translation>Entrez le nom du raccourci.</translation> + </message> + <message> + <location line="+8"/> + <source>Not useful</source> + <translation>Inutile</translation> + </message> + <message> + <location line="+1"/> + <source>A Dummy Shortcut was created. it will not do anything productive</source> + <translation>Un raccourci mannequin a été créé, il ne sera d'aucune utilité</translation> + </message> + <message> + <location line="+16"/> + <source>Change Minecraft version</source> + <translation>Changer la version de minecraft</translation> + </message> + <message> + <location line="+18"/> + <source>Are you sure?</source> + <translation>Êtes vous sûr?</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>Cela permettra d'éliminer toute bibliothèque / Version personnalisation que vous avez fait précédemment. Cela inclut des choses comme les installations de Forge et similaire.</translation> + </message> + <message> + <location line="+41"/> + <source>Instance settings</source> + <translation>Options de l'instance</translation> + </message> + <message> + <location line="+46"/> + <source>Rename Instance</source> + <translation>Renommer l'instance</translation> + </message> + <message> + <location line="+79"/> + <source>Select a Java version</source> + <translation>Sélectionner une version de Java</translation> + </message> + <message> + <location line="+10"/> + <source>Invalid version selected</source> + <translation>La version sélectionnée est invalide</translation> + </message> + <message> + <location line="+1"/> + <source>You didn't select a valid Java version, so MultiMC will select the default. You can change this in the settings dialog.</source> + <translation>Vous n'avez pas sélectionné une version Java valide, alors MultiMC a choisi la version par défaut. Vous pouvez le modifier dans la boîte de dialogue des réglages.</translation> + </message> +</context> +<context> + <name>MinecraftProcess</name> + <message> + <location filename="../logic/MinecraftProcess.cpp" line="+238"/> + <source>Minecraft exited with exitcode %1.</source> + <extracomment>Message displayed on instance exit</extracomment> + <translation>Minecraft s'est arrété avec le code de d'arrêt %1.</translation> + </message> + <message> + <location line="+5"/> + <source>Minecraft crashed with exitcode %1.</source> + <extracomment>Message displayed on instance crashed</extracomment> + <translation>Minecraft a crashé avec le code d'arrêt %1.</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>Le processus de minecraft a été tué par l'utilisateur.</translation> + </message> + <message> + <location line="+35"/> + <source>The command failed to start</source> + <translation>La commande n'a pas pu démarrer</translation> + </message> + <message> + <location line="+38"/> + <source>Running Post-Launch command: %1</source> + <translation>Exécution de la commande post-lancement: %1</translation> + </message> + <message> + <location line="+19"/> + <source>Post-Launch command failed with code %1. + +</source> + <translation>La commande de post-lancement a échoué avec le code %1. + +</translation> + </message> + <message> + <location line="+7"/> + <source>Post-Launch command ran successfully. + +</source> + <translation>Commande de post-lancement exécuté avec succès. + +</translation> + </message> + <message> + <location line="-68"/> + <source>Running Pre-Launch command: %1</source> + <translation>Execution de la commande de prè-lancement: %1</translation> + </message> + <message> + <location line="+21"/> + <source>Pre-Launch command failed with code %1. + +</source> + <translation>La commande de prè-lancement a échoué avec le code %1. + +</translation> + </message> + <message> + <location line="+9"/> + <source>Pre-Launch command ran successfully. + +</source> + <translation>Commande de prè-lancement exécuté avec succès. + +</translation> + </message> + <message> + <location line="+150"/> + <source>Could not launch minecraft!</source> + <extracomment>Error message displayed if instace can't start</extracomment> + <translation>Impossible de lancer minecraft!</translation> + </message> +</context> +<context> + <name>NewInstanceDialog</name> + <message> + <location filename="../gui/dialogs/NewInstanceDialog.ui" line="+17"/> + <source>New Instance</source> + <translation>Nouvelle instance</translation> + </message> + <message> + <location line="+57"/> + <source>Name</source> + <translation>Nom</translation> + </message> + <message> + <location line="+16"/> + <source>Version:</source> + <translation>Version:</translation> + </message> + <message> + <location line="+14"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="../gui/dialogs/NewInstanceDialog.cpp" line="+99"/> + <source>Change Minecraft version</source> + <translation>Changer la version de minecraft</translation> + </message> +</context> +<context> + <name>NewsEntry</name> + <message> + <location filename="../logic/news/NewsEntry.cpp" line="+24"/> + <location line="+36"/> + <source>Untitled</source> + <translation>Aucun nom</translation> + </message> + <message> + <location line="-35"/> + <location line="+36"/> + <source>No content.</source> + <translation>Aucun contenu.</translation> + </message> + <message> + <location line="-34"/> + <location line="+36"/> + <source>Unknown Author</source> + <translation>Auteur inconnu</translation> + </message> +</context> +<context> + <name>NotificationDialog</name> + <message> + <location filename="../gui/dialogs/NotificationDialog.ui" line="+14"/> + <source>Dialog</source> + <translation>Dialogue</translation> + </message> + <message> + <location line="+8"/> + <location line="+7"/> + <source>TextLabel</source> + <translation>Label du texte</translation> + </message> + <message> + <location line="+36"/> + <location filename="../gui/dialogs/NotificationDialog.cpp" line="+28"/> + <source>Don't show again</source> + <translation>Ne plus montrer</translation> + </message> + <message> + <location line="+10"/> + <location filename="../gui/dialogs/NotificationDialog.cpp" line="+1"/> + <source>Close</source> + <translation>Fermer</translation> + </message> +</context> +<context> + <name>OneSixFTBInstanceForge</name> + <message> + <source>Downloading Forge...</source> + <translation type="vanished">Téléchargement de Forge...</translation> + </message> + <message> + <source>Installing Forge...</source> + <translation type="vanished">Installation de Forge...</translation> + </message> + <message> + <source>Couldn't load the version config</source> + <translation type="vanished">Impossible de charger la version de la configuration</translation> + </message> + <message> + <source>Couldn't install Forge</source> + <translation type="vanished">Impossible d'installer Forge</translation> + </message> +</context> +<context> + <name>OneSixModEditDialog</name> + <message> + <source>Dialog</source> + <translatorcomment>Am i really responsible for this? yes you are ;p</translatorcomment> + <translation type="vanished">Éditer Mods</translation> + </message> + <message> + <location filename="../gui/dialogs/OneSixModEditDialog.ui" line="+149"/> + <source>Loader Mods</source> + <translation>Mods</translation> + </message> + <message> + <location line="+30"/> + <location line="+67"/> + <source>&Add</source> + <translation>&Ajouter</translation> + </message> + <message> + <location line="-232"/> + <source>Manage Mods</source> + <translation>Gérer les Mods</translation> + </message> + <message> + <location line="+19"/> + <source>Version</source> + <translation>Version</translation> + </message> + <message> + <source>Main Class:</source> + <translation type="vanished">Class principale:</translation> + </message> + <message> + <location line="+25"/> + <source>Replace any current custom version with Minecraft Forge</source> + <translation>Remplacer une version personnalisée actuelle avec Minecraft Forge</translation> + </message> + <message> + <location line="+3"/> + <source>Install Forge</source> + <translation>Installer Forge</translation> + </message> + <message> + <location line="+7"/> + <source>Install LiteLoader</source> + <translation>Installer LiteLoader</translation> + </message> + <message> + <location line="+14"/> + <source>Reload</source> + <translation>Recharger</translation> + </message> + <message> + <location line="+7"/> + <source>Remove</source> + <translation>Supprimer</translation> + </message> + <message> + <location line="+14"/> + <location line="+10"/> + <location line="+10"/> + <source>This isn't implemented yet.</source> + <translation>Ce n'est pas encore implémentée.</translation> + </message> + <message> + <location line="+3"/> + <source>Reset order</source> + <translation>Réinitialiser l'ordre</translation> + </message> + <message> + <location line="-20"/> + <source>Move up</source> + <translation>Déplacer vers le haut</translation> + </message> + <message> + <location line="+10"/> + <source>Move down</source> + <translation>Déplacer vers le bas</translation> + </message> + <message> + <source>Create an customized copy of the base version</source> + <translation type="vanished">Créer une copie personnalisée de la version de base</translation> + </message> + <message> + <source>Customize</source> + <translation type="vanished">Personnaliser</translation> + </message> + <message> + <source>Revert to original base version</source> + <translation type="vanished">Revenir à la version d'origine de base</translation> + </message> + <message> + <source>Revert</source> + <translation type="vanished">Revenir</translation> + </message> + <message> + <source>Add new libraries</source> + <translation type="vanished">Ajouter de nouvelles libraries</translation> + </message> + <message> + <source>Remove selected libraries</source> + <translation type="vanished">Retirer les bibliothèques sélectionnées</translation> + </message> + <message> + <location line="+70"/> + <location line="+67"/> + <source>&Remove</source> + <translation>&Supprimer</translation> + </message> + <message> + <source>Open custom.json</source> + <translation type="vanished">Ouvrir custom.json</translation> + </message> + <message> + <location line="-47"/> + <location line="+67"/> + <source>&View Folder</source> + <translation>&Voir dossier</translation> + </message> + <message> + <location line="-45"/> + <source>Resource Packs</source> + <translation>Packs de ressources</translation> + </message> + <message> + <location filename="../gui/dialogs/OneSixModEditDialog.cpp" line="-206"/> + <source>Couldn't remove file</source> + <translation>Impossible de supprimer le fichier</translation> + </message> + <message> + <location line="-17"/> + <source>Failed to load the version description file for reasons unknown.</source> + <translation>Impossible de charger le fichier de description de la version pour des raisons inconnues.</translation> + </message> + <message> + <location line="+75"/> + <location line="+11"/> + <location line="+24"/> + <location line="+11"/> + <source>Revert?</source> + <translation>Revenir?</translation> + </message> + <message> + <location line="-45"/> + <location line="+35"/> + <source>This action will remove the FTB pack version patch. Continue?</source> + <translation>Cette action va supprimer le pack FTB version patch. Continuer?</translation> + </message> + <message> + <location line="-24"/> + <location line="+35"/> + <source>This action will remove your custom.json. Continue?</source> + <translation>Cette action va supprimer votre custom.json. Continuer?</translation> + </message> + <message> + <location line="-25"/> + <source>No Forge versions are currently available for Minecraft </source> + <translation>Pas de versions Forge actuellement disponibles pour Minecraft</translation> + </message> + <message> + <location line="+33"/> + <source>Select LiteLoader version</source> + <translation>Sélectionnez la version de LiteLoader</translation> + </message> + <message> + <location line="+3"/> + <source>No LiteLoader versions are currently available for Minecraft </source> + <translation>Aucune versions de LiteLoader sont actuellement disponibles pour Minecraft</translation> + </message> + <message> + <source>Do you want to revert the version of this instance to its original configuration?</source> + <translation type="vanished">Voulez-vous remettre la version de cette instance en sa configuration d'origine?</translation> + </message> + <message> + <location line="-140"/> + <location line="+6"/> + <location line="+18"/> + <location line="+13"/> + <location line="+18"/> + <location line="+18"/> + <source>Error</source> + <translation>Erreur</translation> + </message> + <message> + <source>Unable to open custom.json, check the settings</source> + <translation type="vanished">Impossible d'ouvrir custom.json, vérifiez les paramètres</translation> + </message> + <message> + <location line="+29"/> + <source>Select Forge version</source> + <translation>Sélectionnez la version de Forge</translation> + </message> + <message> + <source>This will revert any changes you did to the version up to this point. Is that OK?</source> + <translation type="vanished">Cela remattra tout changement que vous avez fait à la version jusqu'à ce point. êtes vous d'accord?</translation> + </message> + <message> + <source>LiteLoader</source> + <translation type="vanished">LiteLoader</translation> + </message> + <message> + <source>There is no information available on how to install LiteLoader into this version of Minecraft</source> + <translation type="vanished">Il n'y a pas d'informations sur la façon d'installer LiteLoader dans cette version de Minecraft</translation> + </message> + <message> + <source>For reasons unknown, the LiteLoader installation failed. Check your MultiMC log files for details.</source> + <translation type="vanished">Pour des raisons inconnues, l'installation de LiteLoader a échoué. Vérifiez les fichiers logs de MultiMC pour plus de détails.</translation> + </message> +</context> +<context> + <name>OneSixUpdate</name> + <message> + <source>Testing the Java installation...</source> + <translation type="vanished">Test de l'installation de Java...</translation> + </message> + <message> + <location filename="../logic/OneSixUpdate.cpp" line="+51"/> + <source>Failed to create folder for minecraft binaries.</source> + <translation>Impossible de créer un dossier pour les fichiers binaires de Minecraft.</translation> + </message> + <message> + <location line="+12"/> + <source>The specified Minecraft version is invalid. Choose a different one.</source> + <translation>La version Minecraft spécifié n'est pas valide. Choisissez en une autre.</translation> + </message> + <message> + <location line="+19"/> + <source>Getting the version files from Mojang...</source> + <translation>Obtention des fichiers de version de Mojang...</translation> + </message> + <message> + <location line="+28"/> + <source>Can't open %1 for writing.</source> + <translation>Impossible d'ouvrir %1 pour l'écriture.</translation> + </message> + <message> + <location line="+7"/> + <source>Failed to write into %1. Written %2 out of %3.</source> + <translation>Impossible d'écrire dans %1. Écrit %2 sur %3.</translation> + </message> + <message> + <location line="+5"/> + <source>Can't commit changes to %1</source> + <translation>Impossible de valider les modifications de %1</translation> + </message> + <message> + <location line="+21"/> + <source>Failed to download the version description. Try again.</source> + <translation>Impossible de télécharger la description de la version. Essayez à nouveau.</translation> + </message> + <message> + <location line="+5"/> + <source>Updating assets index...</source> + <translation>Mise à jour de l'index assets...</translation> + </message> + <message> + <location line="+6"/> + <source>Asset index for %1</source> + <translation>Index d'asset pour %1</translation> + </message> + <message> + <location line="+26"/> + <source>Failed to read the assets index!</source> + <translation>Impossible de lire l'index assets!</translation> + </message> + <message> + <location line="+19"/> + <source>Getting the assets files from Mojang...</source> + <translation>Obtention des fichiers assets de Mojang...</translation> + </message> + <message> + <location line="+1"/> + <source>Assets for %1</source> + <translation>Assets pour %1</translation> + </message> + <message> + <location line="+16"/> + <source>Failed to download the assets index!</source> + <translation>Impossible de télécharger l'index assets!</translation> + </message> + <message> + <location line="+10"/> + <source>Failed to download assets!</source> + <translation>Impossible de télécharger assets!</translation> + </message> + <message> + <location line="+5"/> + <source>Getting the library files from Mojang...</source> + <translation>Obtention des fichiers library de Mojang...</translation> + </message> + <message> + <location line="+14"/> + <source>Failed to load the version description file for reasons unknown.</source> + <translation>Impossible de charger le fichier de description de la version pour des raisons inconnues.</translation> + </message> + <message> + <location line="+12"/> + <source>Libraries for instance %1</source> + <translation>Libraries pour l'instance %1</translation> + </message> + <message> + <location line="+66"/> + <source>Some libraries marked as 'local' are missing their jar files: +%1 + +You'll have to correct this problem manually. If this is an externally tracked instance, make sure to run it at least once outside of MultiMC.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+28"/> + <source>Failed to download the following files: +%1 + +Please try again.</source> + <translation>Impossible de télécharger les fichiers suivants: +%1 + +Essayez de nouveau.</translation> + </message> + <message> + <source>Preparing for launch...</source> + <translation type="vanished">Préparation pour le lancement...</translation> + </message> +</context> +<context> + <name>PasteUpload</name> + <message> + <location filename="../logic/net/PasteUpload.cpp" line="+57"/> + <source>paste.ee returned an error. Please consult the logs for more information</source> + <translation>paste.ee a renvoyé une erreur. S'il vous plaît consulter les logs pour plus d'informations</translation> + </message> +</context> +<context> + <name>ProgressDialog</name> + <message> + <location filename="../gui/dialogs/ProgressDialog.ui" line="+26"/> + <source>Please wait...</source> + <translation>Veuillez patienter...</translation> + </message> + <message> + <location line="+6"/> + <source>Task Status...</source> + <translation>Statut des tâches...</translation> + </message> + <message> + <location line="+26"/> + <source>Skip</source> + <translation>Passer</translation> + </message> +</context> +<context> + <name>QObject</name> + <message> + <location filename="../logic/NagUtils.cpp" line="+26"/> + <source>JVM arguments warning</source> + <translation>Avertissement d'arguments JVM</translation> + </message> + <message> + <location line="+1"/> + <source>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). +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>Vous avez essayé de définir manuellement une option de mémoire JVM (en utilisant "-XX: PermSize", "-Xmx" ou "-Xms») - il ya des options dédiées à ces problèmes dans les paramètres (onglet Java, dans le cadre mémoire, vers le haut) . +Vos réglages manuels seront remplacés par les options dédiées. +Ce message sera affiché jusqu'à ce que vous retirez les arguments JVM.</translation> + </message> + <message> + <location filename="../gui/dialogs/ModEditDialogCommon.cpp" line="+53"/> + <source>How sad!</source> + <translation>Quelle tristesse!</translation> + </message> + <message> + <location line="+1"/> + <source>The mod author didn't provide a website link for this mod.</source> + <translation>L'auteur du mod n'a pas fourni de lien vers le site Web pour ce mod.</translation> + </message> + <message> + <location filename="../logic/tools/JVisualVM.cpp" line="+36"/> + <location filename="../logic/tools/JProfiler.cpp" line="+32"/> + <source>Empty path</source> + <translation>Chemin vide</translation> + </message> + <message> + <location line="+6"/> + <source>Invalid path to JVisualVM</source> + <translation>Chemin invalide vers JVisualVM</translation> + </message> + <message> + <location filename="../logic/tools/JProfiler.cpp" line="+6"/> + <location filename="../logic/tools/MCEditTool.cpp" line="+68"/> + <source>Path does not exist</source> + <translation>Le chemin n'existe pas</translation> + </message> + <message> + <location line="+5"/> + <source>Invalid JProfiler install</source> + <translation>Installation de JProfiler invalide</translation> + </message> + <message> + <location filename="../logic/tools/MCEditTool.cpp" line="-6"/> + <source>Path is empty</source> + <translation>Le chemin est vide</translation> + </message> + <message> + <location line="+11"/> + <source>Path does not seem to be a MCEdit path</source> + <translation>Le chemin ne semble pas être celui de MCEdit</translation> + </message> + <message> + <location filename="../logic/lists/LiteLoaderVersionList.h" line="+37"/> + <source>Latest</source> + <translation>Dernier</translation> + </message> + <message> + <location filename="../logic/VersionFile.cpp" line="+475"/> + <location line="+27"/> + <source>Error resolving library dependencies between %1 and %2 in %3.</source> + <translation>Résolution de l'erreur des dépendances de la bibliothèque entre %1 et %2 dans %3.</translation> + </message> + <message> + <location filename="../logic/VersionFile.h" line="+26"/> + <source>The base version file of this instance was meant for a newer (%1) version of the vanilla launcher than this version of MultiMC supports (%2).</source> + <translatorcomment>a revoir!</translatorcomment> + <translation>Le fichier de la version de base de cette instance a été signifié pour la nouvelle (%1) version du lanceur vanilla que la version de MultiMC supporte (%2).</translation> + </message> + <message> + <location line="+15"/> + <source>The patch %1 is for a different version of Minecraft (%2) than that of the instance (%3).</source> + <translation>Le patch %1 est pour une version différente de Minecraft (%2) que celle de l'instance (%3).</translation> + </message> + <message> + <location filename="../logic/OneSixVersionBuilder.cpp" line="+127"/> + <source>%1 has the same order as %2</source> + <translatorcomment>a revoir</translatorcomment> + <translation>%1 a le même nom que %2</translation> + </message> + <message> + <location line="+38"/> + <source>Unable to open the version file %1: %2.</source> + <translation>Impossible d'ouvrir le fichier de la version %1: %2.</translation> + </message> + <message> + <location line="+7"/> + <source>Unable to process the version file %1: %2 at %3.</source> + <translation>Impossible de traiter la version du fichier %1: %2 à %3.</translation> + </message> +</context> +<context> + <name>RefreshTask</name> + <message> + <location filename="../logic/auth/flows/RefreshTask.cpp" line="+76"/> + <source>Authentication server didn't send a client token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+5"/> + <source>Authentication server attempted to change the client token. This isn't supported.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+10"/> + <source>Authentication server didn't send an access token.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+10"/> + <source>Authentication server didn't specify the same prefile as expected.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+39"/> + <source>Refreshing login token...</source> + <translation>Rafraîchissement du token de connexion...</translation> + </message> + <message> + <location line="+2"/> + <source>Refreshing login token: Processing response...</source> + <translation>Rafraîchissement du token de connexion: Traitement de la réponse...</translation> + </message> +</context> +<context> + <name>ScreenshotDialog</name> + <message> + <location filename="../gui/dialogs/ScreenshotDialog.ui" line="+14"/> + <source>Screenshot Manager</source> + <translation>Gestionnaire des captures d'écrans</translation> + </message> + <message> + <location line="+40"/> + <source>Upload</source> + <translation>Envoyer</translation> + </message> + <message> + <location line="+7"/> + <source>Delete</source> + <translation>Supprimer</translation> + </message> + <message> + <location line="+20"/> + <source>Close</source> + <translation>Fermer</translation> + </message> + <message> + <location filename="../gui/dialogs/ScreenshotDialog.cpp" line="+28"/> + <source><a href="https://imgur.com/a/%1">Visit album</a><br/>Delete hash: %2 (save this if you want to be able to edit/delete the album)</source> + <translation><a href="https://imgur.com/a/%1">Visitez l'album</a><br/>Supprimer le hachage: %2 (sauf si vous voulez être en mesure de modifier / supprimer l'album)</translation> + </message> + <message> + <location line="+41"/> + <source>Failed to upload screenshots!</source> + <translation>L'envoi de la capture d'écran a échoué!</translation> + </message> + <message> + <location line="+1"/> + <source>Unknown error</source> + <translation>Erreur inconnue</translation> + </message> +</context> +<context> + <name>ScreenshotList</name> + <message> + <location filename="../logic/screenshots/ScreenshotList.cpp" line="+98"/> + <location line="+10"/> + <source>Error!</source> + <translation>Erreur!</translation> + </message> + <message> + <location line="-9"/> + <source>Failed to delete screenshots!</source> + <translation>Impossible de supprimer les captures d'écran!</translation> + </message> + <message> + <location line="+10"/> + <source>Unable to refresh list: %1</source> + <translation>Impossible d'actualiser la liste: %1</translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="../gui/dialogs/SettingsDialog.ui" line="+20"/> + <source>Settings</source> + <translation>Options</translation> + </message> + <message> + <source>General</source> + <translation type="vanished">Général</translation> + </message> + <message> + <location line="+283"/> + <source>Sorting Mode</source> + <translation>mode de tri</translation> + </message> + <message> + <location line="+6"/> + <source>By last launched</source> + <translation>Par date d'utilisation</translation> + </message> + <message> + <location line="+10"/> + <source>By name</source> + <translation>Par nom</translation> + </message> + <message> + <location line="-273"/> + <source>Update Settings</source> + <translation>Options de mise à jour</translation> + </message> + <message> + <source>Use development builds?</source> + <translation type="vanished">Utilisez les versions de développement?</translation> + </message> + <message> + <location line="+6"/> + <source>Check for updates when MultiMC starts?</source> + <translation>Vérifier les mises à jour quand MultiMC est lancé?</translation> + </message> + <message> + <location line="+121"/> + <source>Folders</source> + <translation>Dossiers</translation> + </message> + <message> + <location line="+6"/> + <source>Instances:</source> + <translation>Instances:</translation> + </message> + <message> + <location line="-69"/> + <location line="+46"/> + <location line="+33"/> + <location line="+20"/> + <location line="+14"/> + <location line="+17"/> + <location line="+108"/> + <location line="+307"/> + <location line="+240"/> + <location line="+37"/> + <location line="+37"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location line="-929"/> + <source>Features</source> + <translation>Général</translation> + </message> + <message> + <location line="+19"/> + <source>Update Channel:</source> + <translation>Canal de mise à jour:</translation> + </message> + <message> + <location line="+14"/> + <source>No channel selected.</source> + <translation>Aucun canal sélectionné.</translation> + </message> + <message> + <location line="+13"/> + <source>FTB</source> + <translation>FTB</translation> + </message> + <message> + <location line="+31"/> + <source>Launcher:</source> + <translation>Lanceur:</translation> + </message> + <message> + <location line="+14"/> + <source>Track FTB instances</source> + <translation>Suivre les instances FTB</translation> + </message> + <message> + <location line="+32"/> + <source>Files:</source> + <translation>Fichiers:</translation> + </message> + <message> + <location line="+33"/> + <source>Mods:</source> + <translation>Mods:</translation> + </message> + <message> + <location line="+20"/> + <source>LWJGL:</source> + <translation>LWJGL:</translation> + </message> + <message> + <location line="+17"/> + <source>Icons:</source> + <translation>Icones:</translation> + </message> + <message> + <location line="+31"/> + <source>User Interface</source> + <translation>Interface d'utilisateur</translation> + </message> + <message> + <location line="+14"/> + <source>Language (needs restart):</source> + <translation>Langue (redémarrage requis):</translation> + </message> + <message> + <location line="+12"/> + <source>Reset hidden notifications</source> + <translation>Enlever les notifications cachés</translation> + </message> + <message> + <location line="+42"/> + <source>External Editors (leave empty for system default)</source> + <translation>Éditeurs externes (laissez vide pour les paramettre par défaut)</translation> + </message> + <message> + <location line="+9"/> + <source>JSON Editor:</source> + <translation>Éditeur JSON:</translation> + </message> + <message> + <location line="+31"/> + <source>Minecraft</source> + <translation>Minecraft</translation> + </message> + <message> + <location line="+6"/> + <source>Window Size</source> + <translation>Taille de la fenêtre</translation> + </message> + <message> + <location line="+6"/> + <source>Start Minecraft maximized?</source> + <translation>Lancer minecraft en mode plein écran?</translation> + </message> + <message> + <location line="+9"/> + <source>Window height:</source> + <translation>Hauteur:</translation> + </message> + <message> + <location line="+7"/> + <source>Window width:</source> + <translation>Largeur:</translation> + </message> + <message> + <location line="+41"/> + <source>Console Settings</source> + <translation>Options de la console</translation> + </message> + <message> + <location line="+6"/> + <source>Show console while the game is running?</source> + <translation>Voir la console quand le jeu est lancé ?</translation> + </message> + <message> + <location line="+7"/> + <source>Automatically close console when the game quits?</source> + <translation>Fermer automatiquement la console quand le jeu est fermé?</translation> + </message> + <message> + <location line="+265"/> + <source>Network settings.</source> + <translation>Options internet.</translation> + </message> + <message> + <location line="+3"/> + <source>Network</source> + <translation>Internet</translation> + </message> + <message> + <location line="+6"/> + <source>Proxy</source> + <translation></translation> + </message> + <message> + <location line="+6"/> + <source>Type</source> + <translation></translation> + </message> + <message> + <location line="+6"/> + <source>Uses your system's default proxy settings.</source> + <translation>Utiliser les options par défaut de votre système.</translation> + </message> + <message> + <location line="+3"/> + <source>Default</source> + <translation>Défaut</translation> + </message> + <message> + <location line="+10"/> + <source>None</source> + <translation>Aucun</translation> + </message> + <message> + <location line="+10"/> + <source>SOCKS5</source> + <translation></translation> + </message> + <message> + <location line="+10"/> + <source>HTTP</source> + <translation></translation> + </message> + <message> + <location line="+13"/> + <source>Address and Port</source> + <translation>Adresse et port</translation> + </message> + <message> + <location line="+6"/> + <source>127.0.0.1</source> + <translation></translation> + </message> + <message> + <location line="+26"/> + <source>Authentication</source> + <translation>Authentification</translation> + </message> + <message> + <location line="+9"/> + <source>Username:</source> + <translation>Nom d'utilisateur:</translation> + </message> + <message> + <location line="+7"/> + <source>Password:</source> + <translation>Mot de passe:</translation> + </message> + <message> + <location line="+14"/> + <source>Note: Proxy username and password are stored in plain text inside MultiMC's configuration file!</source> + <translation>Note: Le nom d'utilisateur et le mot de passe du proxy sont stockées en texte brut à l'intérieur du fichier de configuration de MultiMC!</translation> + </message> + <message> + <location line="+30"/> + <source>External Tools</source> + <translation>Outils externe</translation> + </message> + <message> + <location line="+6"/> + <source>JProfiler</source> + <translation></translation> + </message> + <message> + <location line="+20"/> + <location line="+37"/> + <location line="+37"/> + <source>Check</source> + <translation>Vérifier</translation> + </message> + <message> + <location line="-67"/> + <source><html><head/><body><p><a href="http://www.ej-technologies.com/products/jprofiler/overview.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.ej-technologies.com/products/jprofiler/overview.html</span></a></p></body></html></source> + <translation></translation> + </message> + <message> + <location line="+10"/> + <source>JVisualVM</source> + <translation></translation> + </message> + <message> + <location line="+27"/> + <source><html><head/><body><p><a href="http://visualvm.java.net/"><span style=" text-decoration: underline; color:#0000ff;">http://visualvm.java.net/</span></a></p></body></html></source> + <translation></translation> + </message> + <message> + <location line="+10"/> + <source>MCEdit</source> + <translation></translation> + </message> + <message> + <location line="+27"/> + <source><html><head/><body><p><a href="http://www.mcedit.net/"><span style=" text-decoration: underline; color:#0000ff;">http://www.mcedit.net/</span></a></p></body></html></source> + <translation></translation> + </message> + <message> + <source>Login automatically when an instance icon is double clicked?</source> + <translation type="vanished">Se connecter automatiquement quand un double clic est effectué sur une icone d'instance?</translation> + </message> + <message> + <location line="-507"/> + <source>Java</source> + <translation>Java</translation> + </message> + <message> + <location line="+6"/> + <source>Memory</source> + <translation>Mémoire</translation> + </message> + <message> + <location line="+6"/> + <source>The maximum amount of memory Minecraft is allowed to use.</source> + <translation>La quantité maximale de mémoire que Minecraft est autorisé à utiliser.</translation> + </message> + <message> + <location line="+3"/> + <location line="+36"/> + <location line="+29"/> + <source> MB</source> + <translation></translation> + </message> + <message> + <location line="-46"/> + <source>Minimum memory allocation:</source> + <translation>Min. mémoire alloué:</translation> + </message> + <message> + <location line="+7"/> + <source>Maximum memory allocation:</source> + <translation>Max. mémoire alloué:</translation> + </message> + <message> + <location line="+7"/> + <source>The amount of memory Minecraft is started with.</source> + <translation>La quantité de mémoire avec laquelle minecraft démarre.</translation> + </message> + <message> + <location line="+22"/> + <source>PermGen:</source> + <translation>PermGen:</translation> + </message> + <message> + <location line="+7"/> + <source>The amount of memory available to store loaded Java classes.</source> + <translation>La quantité de mémoire disponible pour stocker et charger les classes Java.</translation> + </message> + <message> + <location line="+25"/> + <source>Java Settings</source> + <translation>Options Java</translation> + </message> + <message> + <location line="+12"/> + <source>Java path:</source> + <translation>Dossier de Java:</translation> + </message> + <message> + <location line="+13"/> + <source>Auto-detect...</source> + <translation>Auto-détection...</translation> + </message> + <message> + <location line="+13"/> + <source>Test</source> + <translation>Test</translation> + </message> + <message> + <location line="+13"/> + <source>JVM arguments:</source> + <translation>Arguments JVM:</translation> + </message> + <message> + <source>Browse...</source> + <translation type="vanished">Parcourir...</translation> + </message> + <message> + <source>Auto-detect</source> + <translation type="vanished">Auto-détection</translation> + </message> + <message> + <location line="+39"/> + <source>Custom Commands</source> + <translation>Commandes personnalisées</translation> + </message> + <message> + <location line="+6"/> + <source>Post-exit command:</source> + <translation>Commande post-arrêt:</translation> + </message> + <message> + <location line="+7"/> + <source>Pre-launch command:</source> + <translation>Commande prè-lancement:</translation> + </message> + <message> + <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's working directory with INST_ID, INST_DIR, and INST_NAME as environment variables.</source> + <translation>La commande de Pré-lancement s'exécute avant l'instance et la commande post-sortie s'exécute après sa sortie. Les deux seront exploités dans le répertoire de travail de MultiMC avec INST_ID, INST_DIR, et INST_NAME comme variables d'environnement.</translation> + </message> + <message> + <location filename="../gui/dialogs/SettingsDialog.cpp" line="+102"/> + <source>FTB Launcher Directory</source> + <translation>Répertoire du lanceur FTB</translation> + </message> + <message> + <location line="+14"/> + <source>FTB Directory</source> + <translation>Répertoire de FTB</translation> + </message> + <message> + <location line="+12"/> + <source>Instance Directory</source> + <translation>Répertoire des instances</translation> + </message> + <message> + <location line="+12"/> + <source>Icons Directory</source> + <translation>Répertoire des icones</translation> + </message> + <message> + <location line="+13"/> + <source>Mods Directory</source> + <translation>Répertoire des mods</translation> + </message> + <message> + <location line="+13"/> + <source>LWJGL Directory</source> + <translation>Répertoire de LWJGL</translation> + </message> + <message> + <location line="+14"/> + <source>JSON Editor</source> + <translation>Éditeur JSON</translation> + </message> + <message> + <location line="+22"/> + <source>Invalid</source> + <translation>Invalide</translation> + </message> + <message> + <location line="+1"/> + <source>The file chosen does not seem to be an executable</source> + <translation>Le fichier choisi ne semble pas être un exécutable</translation> + </message> + <message> + <location line="+206"/> + <source>English</source> + <translation></translation> + </message> + <message> + <location line="+144"/> + <source>JProfiler Directory</source> + <translation>Répertoire de JProfiler</translation> + </message> + <message> + <location line="+8"/> + <location line="+16"/> + <location line="+23"/> + <location line="+16"/> + <location line="+28"/> + <location line="+17"/> + <source>Error</source> + <translation>Erreur</translation> + </message> + <message> + <location line="-99"/> + <location line="+16"/> + <source>Error while checking JProfiler install: +%1</source> + <translation>Erreur lors de la vérification de l'installation de JProfiler: +%1</translation> + </message> + <message> + <location line="+4"/> + <location line="+39"/> + <location line="+45"/> + <source>OK</source> + <translation></translation> + </message> + <message> + <location line="-84"/> + <source>JProfiler setup seems to be OK</source> + <translation>La configuration JProfiler semble être OK</translation> + </message> + <message> + <location line="+10"/> + <source>JVisualVM Executable</source> + <translation>Exécutable de JVisualVM</translation> + </message> + <message> + <location line="+9"/> + <location line="+16"/> + <source>Error while checking JVisualVM install: +%1</source> + <translation>Erreur lors de la vérification de l'installation de JVisualVM: +%1</translation> + </message> + <message> + <location line="+4"/> + <source>JVisualVM setup seems to be OK</source> + <translation>La configuration JVisualVM semble être OK</translation> + </message> + <message> + <location line="+12"/> + <source>MCEdit Application</source> + <translation>Application MCEdit</translation> + </message> + <message> + <location line="+2"/> + <source>MCEdit Directory</source> + <translation>Répertoire de MCEdit</translation> + </message> + <message> + <location line="+10"/> + <location line="+17"/> + <source>Error while checking MCEdit install: +%1</source> + <translation>Erreur lors de la vérification de l'installation de MCEdit: +%1</translation> + </message> + <message> + <location line="+4"/> + <source>MCEdit setup seems to be OK</source> + <translation>La configuration MCEdit semble être OK</translation> + </message> + <message> + <source>Development builds</source> + <translation type="vanished">Builds en dévellopements</translation> + </message> + <message> + <source>Development builds contain experimental features and may be unstable. Are you sure you want to enable them?</source> + <translation type="vanished">Les builds en dévellopements peuvent contenir des fonctionnalités expérimentales et peuvent êtres instables. Etes-vous sûr que vous voulez les permettres?</translation> + </message> + <message> + <location line="-170"/> + <source>Select a Java version</source> + <translation>Sélectionner la version de Java</translation> + </message> + <message> + <location line="+13"/> + <source>Find Java executable</source> + <translatorcomment>Umm... this translation is a bit meh</translatorcomment> + <translation>Trouver l'exécutable de Java</translation> + </message> + <message> + <location line="+27"/> + <source>Java test success</source> + <translation>Test de Java avec succès</translation> + </message> + <message> + <location line="+5"/> + <source>Java test failure</source> + <translation>Test de Java echec</translation> + </message> + <message> + <location line="+1"/> + <source>The specified java binary didn't work. You should use the auto-detect feature, or set the path to the java executable.</source> + <translation>Le binaire java spécifiée n'a pas fonctionné. Vous devez utiliser la fonction d'auto-détection, ou définir le chemin vers l'exécutable java.</translation> + </message> +</context> +<context> + <name>UpdateDialog</name> + <message> + <location filename="../gui/dialogs/UpdateDialog.ui" line="+14"/> + <source>MultiMC Update</source> + <translation>Mise à jour MultiMC</translation> + </message> + <message> + <location line="+10"/> + <source>A new MultiMC update is available!</source> + <translation>Une nouvelle version de MultiMC est disponible!</translation> + </message> + <message> + <location line="+16"/> + <source>Update now</source> + <translation>Mettre à jour</translation> + </message> + <message> + <location line="+7"/> + <source>Update after MultiMC closes</source> + <translation>Mettre à jour après la fermeture de MultiMC</translation> + </message> + <message> + <location line="+13"/> + <source>Don't update yet</source> + <translation>Ne pas mettre à jour</translation> + </message> +</context> +<context> + <name>ValidateTask</name> + <message> + <location filename="../logic/auth/flows/ValidateTask.cpp" line="+57"/> + <source>Validating access token: Sending request...</source> + <translation>Validation du token d'accès: Envoi de la requête...</translation> + </message> + <message> + <location line="+2"/> + <source>Validating access token: Processing response...</source> + <translation>Validation du token d'accès: Traitement de la réponse...</translation> + </message> +</context> +<context> + <name>VersionFinal</name> + <message> + <location filename="../logic/VersionFinal.cpp" line="+205"/> + <source>Name</source> + <translation>Nom</translation> + </message> + <message> + <location line="+2"/> + <source>Version</source> + <translation>Version</translation> + </message> + <message> + <location line="+99"/> + <source>Couldn't save the new order</source> + <translation>Impossible d'enregistrer le nouvel ordre</translation> + </message> +</context> +<context> + <name>VersionListView</name> + <message> + <location filename="../gui/widgets/VersionListView.cpp" line="+27"/> + <source>No versions are currently available.</source> + <translation>Aucune version n'est actuellement disponible.</translation> + </message> +</context> +<context> + <name>VersionSelectDialog</name> + <message> + <source>Dialog</source> + <translation type="vanished">Dialogue</translation> + </message> + <message> + <location filename="../gui/dialogs/VersionSelectDialog.ui" line="+14"/> + <source>Choose Version</source> + <translation>Choisissez une version</translation> + </message> + <message> + <location line="+33"/> + <source>Reloads the version list.</source> + <translation>Recharger la liste des versions.</translation> + </message> + <message> + <location line="+3"/> + <source>&Refresh</source> + <translation>&Actualiser</translation> + </message> +</context> +<context> + <name>YggdrasilTask</name> + <message> + <location filename="../logic/auth/YggdrasilTask.cpp" line="+119"/> + <source><b>SSL Handshake failed.</b><br/>There might be a few causes for it:<br/><ul><li>You use Windows XP and need to <a href="http://www.microsoft.com/en-us/download/details.aspx?id=38918">update your root certificates</a></li><li>Some device on your network is interfering with SSL traffic. In that case, you have bigger worries than Minecraft not starting.</li><li>Possibly something else. Check the MultiMC log file for details</li></ul></source> + <translation><b>La négociation SSL a échoué.</b><br/>Il pourrait y avoir quelques causes pour cela:<br/><ul><li>Vous utilisez Windows XP et vous devez <a href="http://www.microsoft.com/fr-fr/download/details.aspx?id=38918">mettre à jour vos certificats ROOT</a></li><li>Certains appareils sur votre réseau interfère avec le trafic SSL. Dans ce cas, vous avez de plus grands soucis car Minecraftne démarrera pas.</li><li>Peut-être quelque chose d'autre. Consultez le fichier log de MultiMC pour plus de détails</li></ul></translation> + </message> + <message> + <source>An unknown error occurred when processing the response from the authentication server.</source> + <translation type="vanished">Une erreur inconnue s'est produite lors du traitement de la réponse du serveur d'authentification.</translation> + </message> + <message> + <source>Failed to parse Yggdrasil JSON response: %1 at offset %2.</source> + <translatorcomment>a voir</translatorcomment> + <translation type="vanished">Impossible d'analyser la réponse Yggdrasil JSON: %1 à compensé %2.</translation> + </message> + <message> + <location line="-8"/> + <source>Authentication operation timed out.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+3"/> + <source>Authentication operation cancelled.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+20"/> + <source>Authentication operation failed due to a network error: %1 (%2)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+26"/> + <source>Failed to parse authentication server response JSON response: %1 at offset %2.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+29"/> + <source>An unknown error occurred when trying to communicate with the authentication server: %1</source> + <translation>Une erreur inconnue s'est produite lors de la tentative de communication avec le serveur d'authentification: %1</translation> + </message> + <message> + <location line="+20"/> + <source>An unknown Yggdrasil error occurred.</source> + <translation>Une erreur Yggdrasil inconnue s'est produite..</translation> + </message> + <message> + <location line="+11"/> + <source>Sending request to auth servers...</source> + <translation>Envoie de la requête aux serveur d'authentification...</translation> + </message> + <message> + <location line="+2"/> + <source>Processing response from servers...</source> + <translation>Traitement de la réponse du serveur...</translation> + </message> + <message> + <location line="+2"/> + <source>Authentication task succeeded.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>Failed to contact the authentication server.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>Failed to authenticate.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location line="+2"/> + <source>...</source> + <translation type="unfinished">...</translation> + </message> + <message> + <source>Processing. Please wait...</source> + <translation type="vanished">Traitement. Veuillez patienter...</translation> + </message> +</context> +</TS> |