diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 19 | ||||
| -rw-r--r-- | src/mainwindow.h | 3 | ||||
| -rw-r--r-- | src/mainwindow.ui | 4 | ||||
| -rw-r--r-- | src/modinfo.cpp | 62 | ||||
| -rw-r--r-- | src/modinfo.h | 2 | ||||
| -rw-r--r-- | src/organizer_cs.ts | 498 | ||||
| -rw-r--r-- | src/organizer_de.ts | 500 | ||||
| -rw-r--r-- | src/organizer_es.ts | 500 | ||||
| -rw-r--r-- | src/organizer_fr.ts | 500 | ||||
| -rw-r--r-- | src/organizer_ru.ts | 498 | ||||
| -rw-r--r-- | src/organizer_tr.ts | 500 | ||||
| -rw-r--r-- | src/organizer_zh_CN.ts | 498 | ||||
| -rw-r--r-- | src/organizer_zh_TW.ts | 498 | ||||
| -rw-r--r-- | src/settings.cpp | 2 |
14 files changed, 2111 insertions, 1973 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index d83d4d06..12db5e2b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -295,6 +295,10 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget m_CheckBSATimer.setSingleShot(true); connect(&m_CheckBSATimer, SIGNAL(timeout()), this, SLOT(checkBSAList())); + m_SaveMetaTimer.setSingleShot(false); + connect(&m_SaveMetaTimer, SIGNAL(timeout()), this, SLOT(saveModMetas())); + m_SaveMetaTimer.start(5000); + m_DirectoryRefresher.moveToThread(&m_RefresherThread); m_RefresherThread.start(); @@ -1208,10 +1212,10 @@ IModInterface *MainWindow::createMod(GuessedValue<QString> &name) QSettings settingsFile(targetDirectory.mid(0).append("/meta.ini"), QSettings::IniFormat); settingsFile.setValue("modid", 0); - settingsFile.setValue("version", 0); - settingsFile.setValue("newestVersion", 0); + settingsFile.setValue("version", ""); + settingsFile.setValue("newestVersion", ""); settingsFile.setValue("category", 0); - settingsFile.setValue("installationFile", 0); + settingsFile.setValue("installationFile", ""); return ModInfo::createFrom(QDir(targetDirectory), &m_DirectoryStructure).data(); // } } @@ -1956,6 +1960,15 @@ void MainWindow::checkBSAList() } +void MainWindow::saveModMetas() +{ + for (unsigned int i = 0; i < ModInfo::getNumMods(); ++i) { + ModInfo::Ptr modInfo = ModInfo::getByIndex(i); + modInfo->saveMeta(); + } + } + + void MainWindow::fixCategories() { for (unsigned int i = 0; i < ModInfo::getNumMods(); ++i) { diff --git a/src/mainwindow.h b/src/mainwindow.h index 527db8b3..250f2a48 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -352,6 +352,7 @@ private: bool m_DirectoryUpdate; bool m_ArchivesInit; QTimer m_CheckBSATimer; + QTimer m_SaveMetaTimer; QTime m_StartTime; SaveGameInfoWidget *m_CurrentSaveView; @@ -495,6 +496,8 @@ private slots: void startExeAction(); void checkBSAList(); + void saveModMetas(); + void updateStyle(const QString &style); void modlistChanged(const QModelIndex &index, int role); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index f3bb425c..110c14c6 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -602,7 +602,7 @@ p, li { white-space: pre-wrap; } </size>
</property>
<attribute name="title">
- <string notr="true">Plugins</string>
+ <string>Plugins</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_4">
<property name="leftMargin">
@@ -738,7 +738,7 @@ p, li { white-space: pre-wrap; } </widget>
<widget class="QWidget" name="bsaTab">
<attribute name="title">
- <string notr="true">Archives</string>
+ <string>Archives</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_9">
<property name="leftMargin">
diff --git a/src/modinfo.cpp b/src/modinfo.cpp index 85612b32..ff44b392 100644 --- a/src/modinfo.cpp +++ b/src/modinfo.cpp @@ -373,26 +373,48 @@ void ModInfoRegular::saveMeta() { // only write meta data if the mod directory exists if (m_MetaInfoChanged && QFile::exists(absolutePath())) { - QSettings metaFile(absolutePath().append("/meta.ini"), QSettings::IniFormat); - if (metaFile.status() == QSettings::NoError) { - std::set<int> temp = m_Categories; - temp.erase(m_PrimaryCategory); - metaFile.setValue("category", QString("%1").arg(m_PrimaryCategory) + "," + SetJoin(temp, ",")); - metaFile.setValue("newestVersion", m_NewestVersion.canonicalString()); - metaFile.setValue("ignoredVersion", m_IgnoredVersion.canonicalString()); - metaFile.setValue("version", m_Version.canonicalString()); - metaFile.setValue("modid", m_NexusID); - metaFile.setValue("notes", m_Notes); - metaFile.setValue("nexusDescription", m_NexusDescription); - metaFile.setValue("lastNexusQuery", m_LastNexusQuery.toString(Qt::ISODate)); - if (m_EndorsedState != ENDORSED_UNKNOWN) { - metaFile.setValue("endorsed", m_EndorsedState); + bool success = false; + { + QSettings metaFile(absolutePath().append("/meta.ini.new"), QSettings::IniFormat); + if (metaFile.status() == QSettings::NoError) { + std::set<int> temp = m_Categories; + temp.erase(m_PrimaryCategory); + metaFile.setValue("category", QString("%1").arg(m_PrimaryCategory) + "," + SetJoin(temp, ",")); + metaFile.setValue("newestVersion", m_NewestVersion.canonicalString()); + metaFile.setValue("ignoredVersion", m_IgnoredVersion.canonicalString()); + metaFile.setValue("version", m_Version.canonicalString()); + if (m_NexusID != -1) { + metaFile.setValue("modid", m_NexusID); + } + metaFile.setValue("notes", m_Notes); + metaFile.setValue("nexusDescription", m_NexusDescription); + metaFile.setValue("lastNexusQuery", m_LastNexusQuery.toString(Qt::ISODate)); + if (m_EndorsedState != ENDORSED_UNKNOWN) { + metaFile.setValue("endorsed", m_EndorsedState); + } + metaFile.sync(); // sync needs to be called to ensure the file is created + + if (metaFile.status() == QSettings::NoError) { + success = true; + m_MetaInfoChanged = false; + } else { + reportError(tr("failed to write %1/meta.ini: error %2").arg(absolutePath()).arg(metaFile.status())); + } + } else { + reportError(tr("failed to write %1/meta.ini: error %2").arg(absolutePath()).arg(metaFile.status())); + } + } + if (success) { + if (!QFile::remove(absolutePath().append("/meta.ini"))) { + qCritical("failed to remove %s", qPrintable(absolutePath().append("/meta.ini"))); + return; + } + if (QFile::rename(absolutePath().append("/meta.ini.new"), absolutePath().append("/meta.ini"))) { + qDebug("%s written", qPrintable(absolutePath().append("/meta.ini"))); + } else { + qCritical("writing %s failed", qPrintable(absolutePath().append("/meta.ini"))); } - metaFile.sync(); // sync needs to be called to ensure the file is created - } else { - reportError(tr("failed to write %1/meta.ini: %2").arg(absolutePath()).arg(metaFile.status())); } - m_MetaInfoChanged = false; } } @@ -556,6 +578,10 @@ void ModInfoRegular::setVersion(const VersionInfo &version) m_MetaInfoChanged = true; } +void ModInfoRegular::setNewestVersion(const VersionInfo &version) { + m_NewestVersion = version; +} + void ModInfoRegular::setNexusDescription(const QString &description) { m_NexusDescription = description; diff --git a/src/modinfo.h b/src/modinfo.h index 83654c7e..b7d72584 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -592,7 +592,7 @@ public: * @todo this function should be made obsolete. All queries for mod information should go through * this class so no public function for this change is required **/ - void setNewestVersion(const MOBase::VersionInfo &version) { m_NewestVersion = version; } + void setNewestVersion(const MOBase::VersionInfo &version); /** * @brief changes/updates the nexus description text diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 08f8d70e..654ca00c 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -1639,11 +1639,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">Data</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">znovunačti data</translation> @@ -1655,8 +1665,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> @@ -1836,7 +1846,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1847,7 +1857,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> @@ -1880,37 +1890,37 @@ V současnosti má omezenou funkcionalitu</translation> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished">Existují potenciální problémy s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> @@ -1927,22 +1937,22 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete"><li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1951,93 +1961,92 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> + <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Prosím zadej jméno pro nový profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">nezdařilo se načíst pozici: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation> </message> @@ -2046,331 +2055,336 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished">Také v: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><Všechny></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished">Nezdařilo se přejmenovat "%1" na "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? (BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> @@ -2383,92 +2397,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Zvol Prioritu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2477,362 +2491,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Označ Kategorii</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">Nezdařil se zápis do souboru %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Prosím zadej jméno pro spouštění</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">soubor nenalezen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished">přihlášení zlyhalo: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished">Extrakce...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished">Editovat Kategorie...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4811,64 +4825,64 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">esp nenalezeno: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> @@ -4877,7 +4891,7 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation> </message> @@ -4887,17 +4901,17 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4910,17 +4924,17 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation>Původní mod: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>Jméno</translation> </message> @@ -4929,7 +4943,7 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">Jména vašich modů</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>Priorita</translation> </message> @@ -5512,23 +5526,23 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>Nepodařilo sa najít "%1"</translation> @@ -5538,12 +5552,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>zlyhal přístup k %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>nepodařilo se nastavit čas souboru %1</translation> </message> diff --git a/src/organizer_de.ts b/src/organizer_de.ts index 306ce0ef..16d4521f 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -1643,11 +1643,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">Data</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation> @@ -1659,8 +1669,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">Neu laden</translation> </message> @@ -1840,7 +1850,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished">Aktualisierung</translation> </message> @@ -1851,7 +1861,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished">Keine Probleme</translation> </message> @@ -1882,37 +1892,37 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished">Probleme</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished">Alles in bester Ordnung</translation> </message> @@ -1929,22 +1939,22 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete"><li>dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von <a href="%1">%1</a> herunter</li></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished">Hilfe zur Oberfläche</translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished">Wiki Dokumentation</translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished">Fehler melden</translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1953,93 +1963,88 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">Name</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Bitte geben Sie einen Namen für das neue Profil an</translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">Download in Bearbeitung</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished">Warte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> </message> @@ -2048,331 +2053,336 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished">Auch in: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">Keine Konflikte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><Bearbeiten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">Installation erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">Mod konfigurieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished">Installation abgebrochen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">Mod wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Mod Archiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">Download gestartet</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished">%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">konnte den Namen der Dateiquelle nicht ändern: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><Alle></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><Markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><Nicht markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><Update></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"><Ohne Kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">Bestätigen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished">konnte die mod nicht entfernen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished">Fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished">Installationsdatei existiert nicht mehr</translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished">BSA extrahieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? (Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\")</translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation> </message> @@ -2385,92 +2395,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Priorität wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">Mod installieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">Alle sichtbaren aktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">Alle sichtbaren deaktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished">Mods synchronisieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2479,362 +2489,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Kategorie festlegen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">Mod umbenennen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">Mod entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished">Mod neu installieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished">Auf Nexus besuchen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished">In Explorer öffnen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">Informationen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished">Ausnahme:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished">Unbekannte Ausnahme</translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">Mods reparieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished">%1 konnte nicht entfernt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished">%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished">Download fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">"%1" gespeichert</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished">Binary wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished">Ausführbare Datei</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished">Namen eingeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished">Datei ist nicht ausführbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished">Datei ersetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished">Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">Datei nicht gefunden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">Aktualisierung verfügbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished">Öffnen/Ausführen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished">Als Anwendung hinzufügen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished">Sichtbar machen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished">Verstecken</translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">In Datei speichern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished">login fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">Fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">konnte "%1" nicht extrahieren (fehlercode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished">Extrahieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4908,64 +4918,64 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation>ESP nicht gefunden: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">Bestätigen</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> @@ -4974,7 +4984,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">konnte die Ausgabedatei nicht öffnen: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Einige Ihrer Plugins haben ungültige Namen! Diese Plugins können nicht vom Spiel geladen werden. Die Datei mo_interface.log enthält eine Liste der betroffenen Plugins. Bitte benennen Sie diese um.</translation> </message> @@ -4984,17 +4994,17 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -5007,17 +5017,17 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation>Ursprung: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>Name</translation> </message> @@ -5026,7 +5036,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">Namen Ihrer Mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>Priorität</translation> </message> @@ -5617,7 +5627,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation> </message> @@ -5630,19 +5640,19 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Ungültige Priorität %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>Konnte "%1" nicht finden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><Verwalten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> @@ -5651,12 +5661,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>Auf %1 konnte nicht zugegriffen werden</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>Konnte Dateizeit nicht setzen %1</translation> </message> diff --git a/src/organizer_es.ts b/src/organizer_es.ts index 0a19f56f..1dcb62c3 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -1502,11 +1502,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">Datos</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">refresca la vista del directorio de datos</translation> @@ -1518,8 +1528,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">Recargar</translation> </message> @@ -1693,7 +1703,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1704,7 +1714,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1734,148 +1744,143 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">Fallo guardando el orden de carga: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Aun hay descargas en progreso, estas seguro que quieres salir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">Fallo al leer la partida guardada: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> @@ -1884,330 +1889,335 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Fichero Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">Descarga comenzada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished">Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><Todos></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2220,92 +2230,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Selecciona Prioridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">Desactivar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">Buscar Actualizaciones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2314,362 +2324,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Definir Categoria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">Cambiar nombre...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">Activar Mods faltantes...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished">Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">Fallo de escritura en el fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished">Fichero</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">fichero no encontrado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">Disponible actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4272,69 +4282,69 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation>ESP no encontrado: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation type="unfinished"></translation> </message> @@ -4344,17 +4354,17 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4367,17 +4377,17 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>Nombre</translation> </message> @@ -4386,7 +4396,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="obsolete">Nombres de tus Mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>Prioridad</translation> </message> @@ -4979,7 +4989,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos</translation> </message> @@ -4992,19 +5002,19 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">prioridad invalida %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>fallo al encontrar %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> @@ -5017,12 +5027,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Esto tomara un momento</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>Fallo al acceder %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>Fallo al definir la hora al fihcero %1</translation> </message> diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index c283cb71..462e1699 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -1542,11 +1542,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">DATA</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation> @@ -1558,8 +1568,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> @@ -1739,7 +1749,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1750,7 +1760,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1780,148 +1790,143 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">impossible d'enregistrer l'ordre de chargement: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">impossible de créer le profil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation> </message> @@ -1930,330 +1935,335 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">impossible de lancer notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">impossible de changer le nom d'origine: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><Tous></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><Cochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><Décochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><Rafraichir></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished">Échec de lecture %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2266,92 +2276,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Choisir priorité</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2360,362 +2370,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Assigner catégorie</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">impossible d'écrire dans le fichier %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">fichier introuvable: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4391,69 +4401,69 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation>ESP introuvable: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation type="unfinished"></translation> </message> @@ -4463,17 +4473,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4486,17 +4496,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>Nom</translation> </message> @@ -4505,7 +4515,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Les noms de vos mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>Priorité</translation> </message> @@ -5088,34 +5098,34 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>impossible de trouver "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>impossible d'accéder à %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>impossible de changer la date du fichier %1</translation> </message> diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 2a75ce82..0fc6ecea 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -1376,6 +1376,11 @@ p, li { white-space: pre-wrap; } <translation>Ярлык</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished">Плагины</translation> + </message> + <message> <location filename="mainwindow.ui" line="669"/> <source>List of available esp/esm files</source> <translation>Список доступных esp/esm файлов</translation> @@ -1399,6 +1404,11 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="762"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation>Список доступных BSA. Они не отмечены здесь, не управляются с помощью MO и игнорируют порядок установки.</translation> @@ -1451,8 +1461,8 @@ BSA, отмеченные здесь, загружаются так, чтобы </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation>Обновить</translation> </message> @@ -1632,7 +1642,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation>Обновление</translation> </message> @@ -1643,7 +1653,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation>Проблем не обнаружено</translation> </message> @@ -1676,158 +1686,157 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation>Одобрить Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation>Рабочий стол</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation>Меню Пуск</translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation>Проблемы</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation>Есть возможные проблемы с вашей установкой</translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation>Кажется всё в порядке</translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation>Справка по интерфейсу</translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation>Wiki-документация</translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation>Сообщить о проблеме</translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation>Уроки</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> <source>failed to save archives order, do you have write access to "%1"?</source> - <translation>не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> + <translation type="obsolete">не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation>не удалось сохранить порядок загрузки: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation>не удалось создать профиль: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation>Показать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation>Вы запустили Mod Organizer впервые. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню "Помощь".</translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation>Загрузки в процессе</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation>не удалось прочесть сохранение: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation>Плагин "%1" не удалось: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation>Плагин "%1" не удалось</translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation>не удалось инициализировать плагин %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation>Не удалось запустить "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation>Ожидание</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> @@ -1836,83 +1845,83 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation>Требуется запущенный Steam, для корректного запуска игры. Должен ли MO попытаться запустить Steam сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation>Также в: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation>Конфликтов нет</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation><Правка...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>Этот bsa подключен через ini, так что он может быть необходим!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation>Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation>Подключение сетевого прокси</translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation>Установка завершена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation>Настройка мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation>мод "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation>Установка отменена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation>Мод не был установлен полностью.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> @@ -1921,203 +1930,203 @@ Right now this has very limited functionality</source> <translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation>Выберете мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation>Архив мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation>Начать обучение?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation>Вы собираетесь открыть обучение. По техническим причинам будет невозможно досрочно закончить обучение. Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation>Загрузка начата</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation>не удалось обновить список модов: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation>не удалось вызвать notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation><Подключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation><Отключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation><Обновлен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation><Без категории></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation><Конфликтует></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation>не удалось переименовать мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation>Перезаписать?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation>не удалось удалить мод "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Удалить следующие моды?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation>не удалось удалить мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation>Неудача</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation>Установочный файл больше не существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation>Моды, установленные с использованием старых версий MO не могут быть перестановленны таким образом.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation>Извлечь BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation>Этот мод включает как минимум один BSA. Вы хотите распаковать их? (Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation>не удалось прочесть %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID для этого мода неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation>Создать мод...</translation> </message> @@ -2128,119 +2137,119 @@ Please enter a name: </source> Пожалуйста, введите имя: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation>Мод с таким именем уже существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation>Действительно подключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation>Действительно отключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation>Выберете, что экспортировать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation>Всё</translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation>Все установленные моды, включенные в список</translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation>Активные моды</translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Включены все активные (подключенные) моды вашего текущего профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation>Видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation>Включены все моды, видимые в списке модов</translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation>экспорт не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation>Установить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation>Включить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation>Отключить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation>Проверить все на обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation>Экспорт в csv...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation>Синхронизировать с модами...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation>Восстановить из резервной копии</translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation>Удалить резервную копию...</translation> </message> @@ -2249,372 +2258,377 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Задать категорию</translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation>Переименовать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation>Удалить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation>Переустановить мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation>Отменить одобрение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation>Статус одобрения неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation>Игнорировать отсутствующие данные</translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation>Перейти на Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation>Открыть в проводнике</translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation>Информация...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation>Исключение: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation>Неизвестное исключение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation><Все></translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation><Несколько></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation>Исправить моды...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished">Удалить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation>Загрузка не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation>ошибка записи в файл %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation>%1 записан</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation>Выбрать исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation>Исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation>Введите имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation>Введите название для программы</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation>Не является исполняемым</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation>Это неверный исполняемый файл.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Уже существует скрытая версия этого файла. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation>Операция с файлом не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation>Открыть/Выполнить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation>Добавить как исполняемый</translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation>Записать в файл...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation>Запрос на Nexus не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation>успешный вход</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation>войти не удалось: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation>войти не удалось: %1. Вам нужно войти на Nexus, чтобы обновить MO.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation>не удалось извлечь %1 (код ошибки %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation>Распаковка...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation>Изменить категории...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation>Включить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation>Отключить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation>Разблокировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation>Заблокировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> @@ -3539,74 +3553,74 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation>Индекс мода</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished">Флаги</translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation>неизвестно</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation>Имена ваших модов</translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation>Индекс мода определяющий id форм объектов, происходящих из этих модов.</translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation>esp не найден: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation> </message> @@ -3615,7 +3629,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">не удалось открыть выходной файл: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation> </message> @@ -3625,27 +3639,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation>Источник: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation>не удалось восстановить порядок загрузки для %1</translation> </message> @@ -4226,23 +4240,23 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><Управлять...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>не удалось обработать профиль %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>не удалось найти "%1"</translation> @@ -4252,12 +4266,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>не удалось получить доступ к %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>не удалось изменить дату модификации для %1</translation> </message> diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index 58d30d00..d091ad76 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -1584,11 +1584,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished"></translation> @@ -1600,8 +1610,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -1775,7 +1785,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1786,7 +1796,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1816,926 +1826,926 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished">"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished">%1: %2 okunamadı</translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -3625,69 +3635,69 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation type="unfinished"></translation> </message> @@ -3697,37 +3707,37 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation type="unfinished"></translation> </message> @@ -4235,34 +4245,34 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation type="unfinished"></translation> </message> diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 4e24267f..a5fb1bcc 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -1630,11 +1630,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">Data</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">刷新 Data 目录总览</translation> @@ -1646,8 +1656,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message> @@ -1827,7 +1837,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> @@ -1838,7 +1848,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> @@ -1871,37 +1881,37 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1918,22 +1928,22 @@ Right now this has very limited functionality</source> <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished">报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1942,93 +1952,92 @@ Right now this has very limited functionality</source> <translation type="obsolete">无法保存加载顺序</translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> + <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">仍有正在进行中的下载,您确定要退出吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">当您登录 Steam 时请点击确定。</translation> </message> @@ -2037,331 +2046,336 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished">启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished">安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">选择 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished">解压 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">此 Mod 中至少包含一个 BSA。您确定要解压吗? (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N网 ID 未知</translation> </message> @@ -2374,92 +2388,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">选择优先级</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">安装 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">检查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2468,362 +2482,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">设置类别</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">重命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安装 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished">在N网上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished">在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">修复 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished">下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished">输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished">请为程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished">文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">文件未找到: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished">打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished">添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished">取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished">隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished">移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished">登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished">无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished">解压...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished">编辑类别...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished">全部启用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -4765,64 +4779,64 @@ Right now this has very limited functionality</source> <translation type="obsolete">ESP 文件没有找到: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">确认</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> @@ -4831,7 +4845,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">无法打开输出文件: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation> </message> @@ -4841,17 +4855,17 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4864,17 +4878,17 @@ Right now this has very limited functionality</source> <translation type="obsolete">最高值</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>这个插件不能被禁用 (由游戏执行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation>隶属于: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>名称</translation> </message> @@ -4883,7 +4897,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">Mod 名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>优先级</translation> </message> @@ -5466,23 +5480,23 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> @@ -5492,12 +5506,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>无法访问 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>无法设置文件时间 %1</translation> </message> diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index 1fc6b17b..0ae46a41 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -1630,11 +1630,21 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished">Data</translation> </message> <message> + <location filename="mainwindow.ui" line="605"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="731"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> + <location filename="mainwindow.ui" line="741"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="mainwindow.ui" line="848"/> <source>refresh data-directory overview</source> <translation type="unfinished">重新整理 Data 目錄總覽</translation> @@ -1646,8 +1656,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3786"/> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="4604"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> @@ -1827,7 +1837,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4545"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> @@ -1838,7 +1848,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="508"/> + <location filename="mainwindow.cpp" line="509"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> @@ -1871,37 +1881,37 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4633"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="222"/> + <location filename="mainwindow.cpp" line="223"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="224"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="225"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="504"/> + <location filename="mainwindow.cpp" line="505"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="506"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.cpp" line="510"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1918,22 +1928,22 @@ Right now this has very limited functionality</source> <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> </message> <message> - <location filename="mainwindow.cpp" line="567"/> + <location filename="mainwindow.cpp" line="568"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="571"/> + <location filename="mainwindow.cpp" line="572"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="575"/> + <location filename="mainwindow.cpp" line="576"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="579"/> + <location filename="mainwindow.cpp" line="580"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1942,93 +1952,92 @@ Right now this has very limited functionality</source> <translation type="obsolete">無法儲存加載順序</translation> </message> <message> - <location filename="mainwindow.cpp" line="708"/> + <location filename="mainwindow.cpp" line="705"/> <source>failed to save load order: %1</source> <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="638"/> <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> + <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="620"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="717"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="718"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="734"/> + <location filename="mainwindow.cpp" line="726"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="777"/> + <location filename="mainwindow.cpp" line="769"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="770"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="809"/> + <location filename="mainwindow.cpp" line="801"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="810"/> + <location filename="mainwindow.cpp" line="802"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">仍有正在進行中的下載,您確定要退出嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="856"/> + <location filename="mainwindow.cpp" line="848"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="980"/> + <location filename="mainwindow.cpp" line="972"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1093"/> + <location filename="mainwindow.cpp" line="1085"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1094"/> + <location filename="mainwindow.cpp" line="1086"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1270"/> <source>Failed to start "%1"</source> <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1280"/> + <location filename="mainwindow.cpp" line="1272"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> @@ -2037,331 +2046,336 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1306"/> + <location filename="mainwindow.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1307"/> + <location filename="mainwindow.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1534"/> + <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1700"/> + <location filename="mainwindow.cpp" line="1692"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1937"/> + <location filename="mainwindow.cpp" line="1929"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1944"/> + <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> <translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1999"/> + <location filename="mainwindow.cpp" line="1991"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2130"/> - <location filename="mainwindow.cpp" line="4253"/> + <location filename="mainwindow.cpp" line="2122"/> + <location filename="mainwindow.cpp" line="4248"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2141"/> - <location filename="mainwindow.cpp" line="4266"/> + <location filename="mainwindow.cpp" line="2133"/> + <location filename="mainwindow.cpp" line="4261"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2142"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="2134"/> + <location filename="mainwindow.cpp" line="4262"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="2140"/> + <location filename="mainwindow.cpp" line="4268"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2151"/> - <location filename="mainwindow.cpp" line="4279"/> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="4274"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2300"/> + <location filename="mainwindow.cpp" line="2292"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2303"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2306"/> - <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="2298"/> + <location filename="mainwindow.cpp" line="2319"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2315"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2349"/> + <location filename="mainwindow.cpp" line="2341"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2342"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2503"/> + <location filename="mainwindow.cpp" line="2495"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2504"/> + <location filename="mainwindow.cpp" line="2496"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2659"/> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="4171"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2682"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2711"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="2752"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2836"/> + <location filename="mainwindow.cpp" line="2830"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3003"/> + <location filename="mainwindow.cpp" line="2860"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2997"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3350"/> - <location filename="mainwindow.cpp" line="3797"/> + <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3360"/> + <location filename="mainwindow.cpp" line="3355"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3613"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="3614"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3639"/> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="3634"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3635"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3888"/> + <location filename="mainwindow.cpp" line="3883"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2915"/> + <location filename="mainwindow.cpp" line="2909"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="982"/> + <location filename="mainwindow.cpp" line="974"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1055"/> + <location filename="mainwindow.cpp" line="1047"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2307"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2916"/> + <location filename="mainwindow.cpp" line="2910"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2911"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2918"/> + <location filename="mainwindow.cpp" line="2912"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2919"/> + <location filename="mainwindow.cpp" line="2913"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2920"/> + <location filename="mainwindow.cpp" line="2914"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2953"/> + <location filename="mainwindow.cpp" line="2947"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2960"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2961"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2970"/> + <location filename="mainwindow.cpp" line="2964"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2974"/> - <location filename="mainwindow.cpp" line="4451"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="2968"/> + <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4470"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3029"/> - <location filename="mainwindow.cpp" line="3692"/> - <location filename="mainwindow.cpp" line="3700"/> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3024"/> + <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="3030"/> + <location filename="mainwindow.cpp" line="3025"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3041"/> + <location filename="mainwindow.cpp" line="3036"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> - <location filename="mainwindow.cpp" line="3079"/> + <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3074"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="3076"/> + <location filename="mainwindow.cpp" line="3071"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3080"/> + <location filename="mainwindow.cpp" line="3075"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3122"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3117"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3254"/> - <location filename="mainwindow.cpp" line="4887"/> + <location filename="mainwindow.cpp" line="3249"/> + <location filename="mainwindow.cpp" line="4882"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> <translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> - <location filename="mainwindow.cpp" line="4844"/> - <location filename="mainwindow.cpp" line="4895"/> + <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4890"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> - <location filename="mainwindow.cpp" line="4906"/> + <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="4901"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> @@ -2374,92 +2388,92 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">選擇優先級</translation> </message> <message> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="3687"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3700"/> + <location filename="mainwindow.cpp" line="3695"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3708"/> + <location filename="mainwindow.cpp" line="3703"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3705"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3711"/> + <location filename="mainwindow.cpp" line="3706"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3707"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3750"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3774"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3784"/> + <location filename="mainwindow.cpp" line="3779"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3783"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3791"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3801"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> @@ -2468,362 +2482,362 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">設定類別</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3821"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3826"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3839"/> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3853"/> + <location filename="mainwindow.cpp" line="3848"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3856"/> + <location filename="mainwindow.cpp" line="3851"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> + <location filename="mainwindow.cpp" line="3852"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3860"/> + <location filename="mainwindow.cpp" line="3855"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3866"/> - <location filename="mainwindow.cpp" line="5091"/> + <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="5086"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3868"/> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="5088"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3890"/> + <location filename="mainwindow.cpp" line="3885"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3907"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="4013"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4014"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> - <location filename="mainwindow.cpp" line="4074"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4069"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> - <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4084"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4112"/> + <location filename="mainwindow.cpp" line="4107"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4179"/> + <location filename="mainwindow.cpp" line="4174"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="4323"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4329"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4394"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4400"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4406"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4456"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4436"/> + <location filename="mainwindow.cpp" line="4431"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4439"/> - <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4434"/> + <location filename="mainwindow.cpp" line="4459"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4461"/> + <location filename="mainwindow.cpp" line="4456"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4494"/> + <location filename="mainwindow.cpp" line="4489"/> <source>file not found: %1</source> <translation type="unfinished">檔案未找到: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4507"/> + <location filename="mainwindow.cpp" line="4502"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4521"/> + <location filename="mainwindow.cpp" line="4516"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4552"/> + <location filename="mainwindow.cpp" line="4547"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4590"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4589"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4602"/> + <location filename="mainwindow.cpp" line="4597"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> + <location filename="mainwindow.cpp" line="4603"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4639"/> + <location filename="mainwindow.cpp" line="4634"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5052"/> + <location filename="mainwindow.cpp" line="5047"/> <source>Remove</source> <translation type="unfinished">移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5077"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5085"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5154"/> + <location filename="mainwindow.cpp" line="5149"/> <source>BOSS working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5157"/> <source>failed to run boss: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4775"/> + <location filename="mainwindow.cpp" line="4770"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1292"/> + <location filename="mainwindow.cpp" line="1284"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1797"/> + <location filename="mainwindow.cpp" line="1789"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3351"/> + <location filename="mainwindow.cpp" line="3346"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3803"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4782"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4777"/> + <location filename="mainwindow.cpp" line="4794"/> <source>login successful</source> <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4803"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4809"/> <source>login failed: %1</source> <translation type="unfinished">無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4818"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4856"/> + <location filename="mainwindow.cpp" line="4851"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4951"/> + <location filename="mainwindow.cpp" line="4946"/> <source>Extract...</source> <translation type="unfinished">解壓...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5007"/> + <location filename="mainwindow.cpp" line="5002"/> <source>Edit Categories...</source> <translation type="unfinished">編輯類別...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5062"/> + <location filename="mainwindow.cpp" line="5057"/> <source>Enable all</source> <translation type="unfinished">全部啟用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5063"/> + <location filename="mainwindow.cpp" line="5058"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -4765,64 +4779,64 @@ Right now this has very limited functionality</source> <translation type="obsolete">ESP 檔案沒有找到: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="111"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="112"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="114"/> - <location filename="pluginlist.cpp" line="126"/> + <location filename="pluginlist.cpp" line="113"/> + <location filename="pluginlist.cpp" line="125"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="121"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="123"/> + <location filename="pluginlist.cpp" line="122"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="124"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="166"/> + <location filename="pluginlist.cpp" line="165"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="233"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="252"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="pluginlist.cpp" line="241"/> + <location filename="pluginlist.cpp" line="240"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="253"/> + <location filename="pluginlist.cpp" line="252"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="381"/> + <location filename="pluginlist.cpp" line="380"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> @@ -4831,7 +4845,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">無法開啟輸出檔案: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="419"/> + <location filename="pluginlist.cpp" line="418"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation> </message> @@ -4841,17 +4855,17 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="937"/> + <location filename="pluginlist.cpp" line="987"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="943"/> + <location filename="pluginlist.cpp" line="993"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1084"/> + <location filename="pluginlist.cpp" line="1134"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4864,17 +4878,17 @@ Right now this has very limited functionality</source> <translation type="obsolete">最高值</translation> </message> <message> - <location filename="pluginlist.cpp" line="933"/> + <location filename="pluginlist.cpp" line="983"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>這個插件不能被禁用 (由遊戲執行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="935"/> + <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> <translation>隸屬於: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="109"/> <source>Name</source> <translation>名稱</translation> </message> @@ -4883,7 +4897,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">Mod 名稱</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="110"/> <source>Priority</source> <translation>優先級</translation> </message> @@ -5466,23 +5480,23 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="790"/> + <location filename="mainwindow.cpp" line="782"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1618"/> - <location filename="mainwindow.cpp" line="4221"/> + <location filename="mainwindow.cpp" line="1610"/> + <location filename="mainwindow.cpp" line="4216"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1636"/> + <location filename="mainwindow.cpp" line="1628"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="335"/> <location filename="profile.cpp" line="233"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> @@ -5492,12 +5506,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation> </message> <message> - <location filename="pluginlist.cpp" line="492"/> + <location filename="pluginlist.cpp" line="491"/> <source>failed to access %1</source> <translation>無法訪問 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="506"/> + <location filename="pluginlist.cpp" line="505"/> <source>failed to set file time %1</source> <translation>無法設定檔案時間 %1</translation> </message> diff --git a/src/settings.cpp b/src/settings.cpp index 895094f7..dd3891d4 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -223,7 +223,7 @@ QString Settings::getModDirectory() const QString Settings::getNMMVersion() const { - static const QString MIN_NMM_VERSION = "0.46.0"; + static const QString MIN_NMM_VERSION = "0.47.0"; QString result = m_Settings.value("Settings/nmm_version", MIN_NMM_VERSION).toString(); if (VersionInfo(result) < VersionInfo(MIN_NMM_VERSION)) { result = MIN_NMM_VERSION; |
