diff options
| -rw-r--r-- | src/ModOrganizer.pro | 9 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 22 | ||||
| -rw-r--r-- | src/organizer.pro | 6 | ||||
| -rw-r--r-- | src/organizer_cs.ts | 826 | ||||
| -rw-r--r-- | src/organizer_de.ts | 824 | ||||
| -rw-r--r-- | src/organizer_en_US.ts | 5343 | ||||
| -rw-r--r-- | src/organizer_es.ts | 822 | ||||
| -rw-r--r-- | src/organizer_fr.ts | 824 | ||||
| -rw-r--r-- | src/organizer_ru.ts | 824 | ||||
| -rw-r--r-- | src/organizer_tr.ts | 822 | ||||
| -rw-r--r-- | src/organizer_zh_CN.ts | 822 | ||||
| -rw-r--r-- | src/organizer_zh_TW.ts | 822 | ||||
| -rw-r--r-- | src/savegame.cpp | 14 | ||||
| -rw-r--r-- | src/shared/fallout3info.cpp | 5 | ||||
| -rw-r--r-- | src/shared/fallout3info.h | 1 | ||||
| -rw-r--r-- | src/shared/falloutnvinfo.cpp | 5 | ||||
| -rw-r--r-- | src/shared/falloutnvinfo.h | 1 | ||||
| -rw-r--r-- | src/shared/gameinfo.h | 3 | ||||
| -rw-r--r-- | src/shared/oblivioninfo.cpp | 6 | ||||
| -rw-r--r-- | src/shared/oblivioninfo.h | 1 | ||||
| -rw-r--r-- | src/shared/skyriminfo.cpp | 5 | ||||
| -rw-r--r-- | src/shared/skyriminfo.h | 2 |
22 files changed, 8748 insertions, 3261 deletions
diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro index 0d75e883..9907d086 100644 --- a/src/ModOrganizer.pro +++ b/src/ModOrganizer.pro @@ -12,13 +12,12 @@ SUBDIRS = bsatk \ proxydll \
nxmhandler \
BossDummy \
-# pythonRunner \
- esptk# \
-# loot_cli
+ pythonRunner \
+ esptk
-#plugins.depends = pythonRunner
+plugins.depends = pythonRunner
hookdll.depends = shared
-organizer.depends = shared uibase plugins# loot_cli
+organizer.depends = shared uibase plugins
CONFIG(debug, debug|release) {
DESTDIR = $$PWD/../outputd
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index f684fd82..263ddb4e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3232,7 +3232,6 @@ void MainWindow::displayModInformation(ModInfo::Ptr modInfo, unsigned int index, connect(dialog, SIGNAL(finished(int)), this, SLOT(overwriteClosed(int))); } else { modInfo->saveMeta(); -qDebug("%s - %d", qPrintable(modInfo->name()), modInfo->hasFlag(ModInfo::FLAG_FOREIGN)); ModInfoDialog dialog(modInfo, m_DirectoryStructure, modInfo->hasFlag(ModInfo::FLAG_FOREIGN), this); connect(&dialog, SIGNAL(nexusLinkActivated(QString)), this, SLOT(nexusLinkActivated(QString))); connect(&dialog, SIGNAL(downloadRequest(QString)), this, SLOT(downloadRequestedNXM(QString))); @@ -3935,23 +3934,18 @@ void MainWindow::deleteSavegame_clicked() QModelIndexList selectedIndexes = ui->savegameList->selectionModel()->selectedIndexes(); QString savesMsgLabel; - QRegExp saveSuffix(".ess$"); QStringList deleteFiles; foreach (const QModelIndex &idx, selectedIndexes) { QString name = idx.data().toString(); SaveGame *save = new SaveGame(this, idx.data(Qt::UserRole).toString()); - savesMsgLabel += "<li>" + name.replace(saveSuffix, "") + "</li>"; + savesMsgLabel += "<li>" + QFileInfo(name).completeBaseName() + "</li>"; deleteFiles << save->saveFiles(); } - bool multipleRows = (selectedIndexes.count() > 1); - - if (QMessageBox::question(this, tr("Confirm"), tr("Are you sure you want to remove the following %1save%2?<br><ul>%3</ul><br>Removed saves will be sent to the Recycle Bin.") - .arg((multipleRows) ? QString::number(selectedIndexes.count()) + " " : "") - .arg((multipleRows) ? "s" : "") + if (QMessageBox::question(this, tr("Confirm"), tr("Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.", "", selectedIndexes.count()) .arg(savesMsgLabel), QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) { shellDelete(deleteFiles, true); // recycle bin delete. @@ -4060,14 +4054,12 @@ void MainWindow::on_savegameList_customContextMenuRequested(const QPoint &pos) if (!selection->hasSelection()) return; - bool multipleSelected = (selection->selectedIndexes().count() > 1); - QMenu menu; - if (!multipleSelected) + if (!(selection->selectedIndexes().count() > 1)) menu.addAction(tr("Fix Mods..."), this, SLOT(fixMods_clicked())); - QString deleteMenuLabel = tr("Delete save%1").arg((multipleSelected) ? "s" : ""); + QString deleteMenuLabel = tr("Delete %n save(s)", "", selection->selectedIndexes().count()); menu.addAction(deleteMenuLabel, this, SLOT(deleteSavegame_clicked())); @@ -4257,13 +4249,13 @@ void MainWindow::downloadRequested(QNetworkReply *reply, int modID, const QStrin void MainWindow::installTranslator(const QString &name) { - if (m_CurrentLanguage == "en_US") { +/* if (m_CurrentLanguage == "en_US") { return; - } + }*/ QTranslator *translator = new QTranslator(this); QString fileName = name + "_" + m_CurrentLanguage; if (!translator->load(fileName, qApp->applicationDirPath() + "/translations")) { - if (m_CurrentLanguage != "en-US") { + if (m_CurrentLanguage != "en_US") { qWarning("localization file %s not found", qPrintable(fileName)); } // we don't actually expect localization files for english } diff --git a/src/organizer.pro b/src/organizer.pro index de7a3a35..ab87f2b3 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -261,9 +261,9 @@ CONFIG(debug, debug|release) { LIBS += -L$$OUT_PWD/../bsatk/release
LIBS += -L$$OUT_PWD/../uibase/release
LIBS += -L$$OUT_PWD/../boss_modified/release
- QMAKE_CXXFLAGS += /Zi /GL
+ QMAKE_CXXFLAGS += /Zi# /GL
# QMAKE_CXXFLAGS -= -O2
- QMAKE_LFLAGS += /DEBUG /LTCG /OPT:REF /OPT:ICF
+ QMAKE_LFLAGS += /DEBUG# /LTCG /OPT:REF /OPT:ICF
PRE_TARGETDEPS += $$OUT_PWD/../shared/release/mo_shared.lib \
$$OUT_PWD/../bsatk/release/bsatk.lib
}
@@ -285,7 +285,7 @@ TRANSLATIONS = organizer_de.ts \ organizer_zh_CN.ts \
organizer_cs.ts \
organizer_tr.ts \
- organizer_en.ts \
+ organizer_en_US.ts \
organizer_ko.ts \
organizer_ru.ts
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 73c225f0..83f3c767 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -1401,7 +1401,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1528,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="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> @@ -1577,12 +1577,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud kliknete &quot;Fixni Mody...&quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation type="unfinished">Stáhnuté</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation> </message> @@ -1633,145 +1633,145 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation type="unfinished">Panel nástrojú</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation type="unfinished">Instaluj mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation type="unfinished">Instaluj &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Instaluj nový mod z archívu</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation type="unfinished">Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation type="unfinished">&Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation type="unfinished">Nastav profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation type="unfinished">Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation type="unfinished">&Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation type="unfinished">&Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Prohledat mody na nexusu</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Verze Mod Organizer u je aktuální</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1782,84 +1782,84 @@ Right now this has very limited functionality</source> V současnosti má omezenou funkcionalitu</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation type="unfinished">Pomoc</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <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="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1868,88 +1868,88 @@ V současnosti má omezenou funkcionalitu</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="766"/> + <location filename="mainwindow.cpp" line="773"/> <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="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <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="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <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="917"/> + <location filename="mainwindow.cpp" line="924"/> <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="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <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> @@ -1958,32 +1958,32 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation type="unfinished">Také v: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <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> @@ -1992,222 +1992,231 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">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="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <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="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <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="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <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="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <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="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation type="unfinished">nepodařilo se otevřít %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <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="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <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="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <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="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> @@ -2218,657 +2227,662 @@ V současnosti má omezenou funkcionalitu</translation> (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="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <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="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <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="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <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="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation type="unfinished"><Všechny></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> - <message> - <location filename="mainwindow.cpp" line="4007"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation type="unfinished">Nepodařilo se odstranit %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation type="unfinished">Nepodařilo se vytvořit %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <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="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <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="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <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="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <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="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <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="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <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="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <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="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation type="unfinished">Extrakce...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation type="unfinished">Editovat Kategorie...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2894,7 +2908,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -3208,227 +3222,227 @@ p, li { white-space: pre-wrap; } <translation>Zavřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&Smazat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&Přejmenovat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&Otevřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&Nová Složka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>Uložit změny?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>Soubor existuje</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>zlyhalo přesunutí souboru</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>zlyhalo vytvoření zložky "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>Info vyžádáno, prosím počkejte</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>Hlavní</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>Update</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>Volitelné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>Staré</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>Jiné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>Neznámé</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>Současná verze: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>Žádný update není k dispozici</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Navštivte na Nexusu</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>Zlyhalo vymazání %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>Nová zložka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>Zlyhalo vytvoření "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>Nahradit soubor?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>Operace se souborem zlyhala</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>Nezdařilo se přejmenovat %1 na %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3436,7 +3450,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3444,7 +3458,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> </message> @@ -3456,18 +3470,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">zlyhal zápis %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation type="unfinished">Kategorie: <br></translation> </message> @@ -3475,52 +3489,52 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation type="unfinished"></translation> </message> @@ -3529,113 +3543,113 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">nainstalovaná verze: %1, nejnovjší verze: %2</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>Kategorie: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>Určitě chcete odstranit "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>Verze</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>Priorita</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Verze modu (pokud je k dispozici)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3847,17 +3861,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Autor</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">Popis</translation> </message> @@ -3871,7 +3885,7 @@ p, li { white-space: pre-wrap; } <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> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <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> @@ -3880,17 +3894,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Původní mod: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4456,18 +4470,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <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="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> @@ -4512,14 +4526,14 @@ p, li { white-space: pre-wrap; } <translation>Chyba</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>špatný formát souboru</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>nepodařilo se otevřít %1</translation> </message> @@ -4534,17 +4548,17 @@ p, li { white-space: pre-wrap; } <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>nepodařilo se vytvořit "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4554,22 +4568,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>nepodařilo se vytvořit "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" neexistuje</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>nepodařilo se vsunout dll do "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>nepodařilo se spustit "%1"</translation> </message> @@ -4799,12 +4813,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation> </message> @@ -5451,26 +5465,26 @@ On Windows XP: <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> diff --git a/src/organizer_de.ts b/src/organizer_de.ts index d77f59b2..b67b3f47 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -1390,7 +1390,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation>Namensfilter</translation> </message> @@ -1576,8 +1576,8 @@ BSAs die du hier markierst werden hingegen anders geladen so dass die Installati </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation>Neu laden</translation> </message> @@ -1625,12 +1625,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie im Kontextmenü auf &quot;Mods reparieren...&quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation>Downloads</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> </message> @@ -1639,145 +1639,145 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Kompakt</translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation>Verborgene anzeigen</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation>Werkzeugleiste</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation>Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation>&Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation>Installiert eine Mod aus einem Archiv</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation>&Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation>Profile konfigurieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation>Programme</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation>Programm&e</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation>Ein&stellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation>Einstellungen und Workarounds verwalten</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation>Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation>Aktualisierung</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer ist auf dem neuesten Stand</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation>Keine Probleme</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1788,211 +1788,211 @@ Right now this has very limited functionality</source> Diese Funktion ist noch sehr eingeschränkt</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation>Endorsement für MO abgeben</translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation>Endorsement für Mod Organizer abgeben</translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation>Werkzeugleiste</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation>Desktop</translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation>Startmenü</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation>Probleme</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation>Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation>Alles in bester Ordnung</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation>Hilfe zur Oberfläche</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation>Wiki Dokumentation</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation>Fehler melden</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation>Tutorials</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished">Über</translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation>Reihenfolge konnt nicht gespeichert werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation>Bitte geben Sie einen Namen für das neue Profil an</translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation>Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation>Tutorial anzeigen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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>Sie starten Mod Organizer zum ersten mal. Wollen Sie ein Tutorial über die grundlegenden Funktionen sehen? Wenn Sie "nein" wählen können Sie das Tutorial aus dem "Hilfe"-Menü starten.</translation> </message> <message> - <location filename="mainwindow.cpp" line="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation>Download in Bearbeitung</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation>Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation>Plugin "%1" fehlgeschlagen: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation>Plugin "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation>Konnte das Plugin %1 nicht initialisieren: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation>Plugin fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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>Es scheint als ob das Plugin "%1" beim letzten Programmstart nicht geladen werden konnte und einen Absturz von MO verursacht hat. Wollen sie das Plugin deaktivieren? (Bitte beachten: Wenn dies das erste mal ist dass sie diese Meldung für dieses Plugin sehen macht es vielleicht Sinn ihm eine zweite Chance zu geben. Das Plugin selber hat vielleicht eine Möglichkeit solche Fehler zu korrigieren)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation>Konnte "%1" nicht starten</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation>Warte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation>Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation>Steam starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation>Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation>Auch in: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation>Keine Konflikte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation><Bearbeiten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> </message> @@ -2001,237 +2001,245 @@ Diese Funktion ist noch sehr eingeschränkt</translation> <translation type="obsolete">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="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation>Netzwerk Proxy aktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation>Installation erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation>Mod konfigurieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation>mod "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation>Installation abgebrochen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation>Die mod wurde nicht erfolgreich installiert.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation>Einige Plugins konnten nicht geladen werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation>Zu viele esps und esms aktiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation>Beschreibung fehlt</translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation>Die folgenden Plugins konnten nicht geladen werden. Der Grund könnte eine fehlende Abhängigkeit sein (z.B. python) oder eine veraltete Version der Abhängigkeiten:</translation> </message> <message> - <location filename="mainwindow.cpp" line="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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>Das Spiel unterstützt nicht mehr als 255 aktive Plugins (inklusive der offiziellen). Sie müssen einige unbenutzte Plugins deaktivieren oder mehrere Plugins kombinieren. Hier finden sie eine Anleitung: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation>Mod wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation>Mod Archiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation>Tutorial starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation>Du bist dabei ein Tutorial zu starten. Aus technischen Gründen ist es nicht möglich das Tutorial abzubrechen. Fortsetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation>Download gestartet</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation>notepad.exe konnte nicht aufgerufen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation>%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation>konnte den Namen der Dateiquelle nicht ändern: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished">Konnte die Plugin Liste nicht aktualisieren: %s</translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation><Markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation><Nicht markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation><Update></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation><Ohne Kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation><Überschneidungen></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation><Nicht Endorsed></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation>konnte die Mod nicht umbenennen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation>Überschreiben?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Dies wird die existierende Mod "%1" ersetzen. Fortsetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation>konnte die mod "%1" nicht löschen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation>konnte "%1" nicht in "%2" umbenennen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Mehrere esps aktiv, bitte überprüfen sie, dass diese nicht miteinander kollidieren.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Die folgenden Mods entfernen?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation>konnte die mod nicht entfernen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation>Fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation>Installationsdatei existiert nicht mehr</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation>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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Sie müssen bei Nexus eingeloggt sein um Endorsements zu vergeben</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation>BSA extrahieren</translation> </message> @@ -2242,634 +2250,642 @@ Diese Funktion ist noch sehr eingeschränkt</translation> (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="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation>konnte %1 nicht lesen: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID für diese Mod unbekannt</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation>Mod erstellen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation>Es werden alle Dateien von "Overwrite" in eine neue, reguläre Mod verschoben. Bitte wählen sie dafür einen Namen:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation>Eine Mod mit diesem Name existiert bereits</translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation>Fortfahren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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>Das Versionsschema bestimmt, welche version neuer als eine andere identifiziert wird. Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die installierte Version veraltet ist.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation>Entschuldigung</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation>Es ist kein Versionsschema bekannt bei welchem %1 neuer ist als %2.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation>Alle angezeigten Mods aktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation>Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation>Bitte wählen Sie was sie exportieren wollen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation>Alles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation>Alle installierten Modifikationen sind in dieser Liste enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation>Aktive Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Ausschließlich aktive Mods aus ihrem aktuellen Profil sind enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation>Sichtbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation>Alle sichtbaren Mods in der Mod Liste sind enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation>Exportieren fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation>Mod installieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation>Alle sichtbaren aktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation>Alle sichtbaren deaktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation>Alle auf Aktualisierungen überprüfen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation>Als CSV exportieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation>Mods synchronisieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation>Backup wiederherstellen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation>Backup entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation>Kategorien hinzufügen/entfernen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation>Kategorien ersetzen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation>Primäre Kategorie</translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation>Versionsschema ändern</translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation>Update nicht mehr ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation>Dieses Update ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation>Mod umbenennen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation>Mod entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation>Mod neu installieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation>Endorsement zurückziehen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation>Endorsement vergeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation>Niemals "Endorsement" vergeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation>"Endorsement"-stand unbekannt</translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation>Fehlende Daten ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation>Auf Nexus besuchen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation>In Explorer öffnen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation>Informationen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation>Ausnahme:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation>Unbekannte Ausnahme</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation><Alle></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation><Mehrere></translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation>Mods reparieren...</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4007"/> <source>Delete</source> - <translation>Löschen</translation> + <translation type="obsolete">Löschen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation>%1 konnte nicht entfernt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation>%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation>Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation>Download fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation>Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation>"%1" gespeichert</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation>Binary wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation>Ausführbare Datei</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation>Namen eingeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation>Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation>Datei ist nicht ausführbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation>Dies Datei wird nicht als ausführbare Datei erkannt.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation>Datei ersetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation>Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished">esp nicht gefunden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation>Öffnen/Ausführen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation>Als Anwendung hinzufügen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation>Sichtbar machen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation>Verstecken</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation>In Datei speichern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Willst du Mod Organizer auf %1 ein Endorsement geben?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation>Anfrage an Nexus fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation>Login erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <source>login failed: %1. Trying to download anyway</source> <translation>login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4867"/> <source>login failed: %1</source> <translation>login fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation>login fehlgeschlagen: %1. Sie müssen bei Nexus eingeloggt sein um das update herunterzuladen.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation>konnte "%1" nicht extrahieren (fehlercode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation>Extrahieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation>Kategorien ändern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation>Alle aktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation>Alle deaktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation>Sperrung der Ladereihenfolge aufheben</translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation>Ladereihenfolge sperren</translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2899,7 +2915,7 @@ Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die insta <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation>Dies ist das Backup einer Mod</translation> </message> @@ -3216,227 +3232,227 @@ p, li { white-space: pre-wrap; } <translation>Schliessen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&Umbenennen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&Verstecken</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&Wiederherstellen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&Öffnen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>Änderungen speichern?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation>Änderungen an "%1" speichern?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>Datei existiert bereits</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>Verschieben der Datei fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>Information wird abgerufen, bitte warten</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>Primär</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>Aktualisierung</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>Optional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>Alt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>Sonstiges</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>Aktuelle Version: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>Keine neue Version verfügbar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Auf Nexus öffnen</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>"%1" konnte nicht erstellt werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>Datei ersetzen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>Sichtbar machen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>Verstecken</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation>Bitte geben Sie einen Namen ein.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation>Ungültiger Name. Dies muss ein gültiger Dateiname sein</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation>Ein "Tweak" mit diesem Namen existiert bereits</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation>"Tweak" anlegen</translation> </message> @@ -3444,7 +3460,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3452,7 +3468,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation>Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> </message> @@ -3464,18 +3480,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">konnte %1/meta.ini nicht schreiben: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation>%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation>Kategorien: <br></translation> </message> @@ -3483,164 +3499,164 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Dieser Eintrag enthält Dateien die innerhalb des virtuellen Verzeichnisses erstellt wurden (z.B. durch den Construction Kit)</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation>Backup</translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation>Keine gültigen Spieldaten</translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation>Noch kein Endorsement vergeben</translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation>Dateien werden überschrieben</translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation>Überschriebene Dateien</translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation>Überschreibt & Wird überschrieben</translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation>Redundant</translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation>ungültig</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <oldsource>installed version: %1, newest version: %2</oldsource> <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation>Die neueste Version auf Nexus scheint älter zu sein als die die sie installiert haben. Dies könnte bedeuten dass die Version die sie installiert haben entfernt wurde (z.B. weigen eines Bugs) oder der Autor verwendet ein nicht-standardisiertes Versionierungssystem und ihre Version ist in Wirklichkeit doch veraltet. In beiden Fällen ist es empfehlenswert die Version von Nexus zu installieren.</translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>Kategorien: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation>Ungültiger Name</translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation>Drag&Drop fehlgeschlagen: %1</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>Sind Sie sicher dass Sie "%1" löschen wollen?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation>Markierungen</translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation>Mod Name</translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>Priorität</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation>Kategorie</translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation>Nexus ID</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation>Installation</translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation>unbekannt</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation>Name Ihrer Mods</translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Version des Mod (wenn verfügbar)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation>Kategorie der Mod.</translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation>Id der Mod von Nexus.</translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation>Symbole um Dinge hervorzuheben die evtl. Aufmerksamkeit erfordern.</translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation>Zeitpunkt an dem die Mod installiert wurde</translation> </message> @@ -3857,22 +3873,22 @@ p, li { white-space: pre-wrap; } <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> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Autor</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">Beschreibung</translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <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> @@ -3881,17 +3897,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Ursprung: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation>Fehlende Master</translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation>Aktivierte Master</translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation>Konnte die Ladereihenfolge für %1 nicht wiederherstellen</translation> </message> @@ -4457,18 +4473,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <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> <message> - <location filename="mainwindow.cpp" line="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><Verwalten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> @@ -4510,14 +4526,14 @@ p, li { white-space: pre-wrap; } <translation>Fehler</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>Falsches Dateiformat</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>%1 konnte nicht geöffnet werden</translation> </message> @@ -4532,17 +4548,17 @@ p, li { white-space: pre-wrap; } <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>"%1" konnte nicht erzeugt werden</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation>Mehr Rechte erforderlich</translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4557,22 +4573,22 @@ nicht ohne diese Rechte lauffähig ist. Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.exe erlauben wollen Systemänderungen durchzuführen)</translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>"%1" konnte nicht erzeugt werden: %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" existiert nicht</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>Konnte dll nicht in "%1" einspeisen: %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>"%1" konnte nicht ausgeführt werden</translation> </message> @@ -4802,12 +4818,12 @@ Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.e <translation>es wurde versucht, Einstellungen für das unbekanntes Plugin "%1" zu speichern</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation> </message> @@ -5481,26 +5497,26 @@ Unter Windows XP: <translation>Datei "%1" überschreiben</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation>Alle Spielstände des Charakters "%1" ins Profil kopieren?</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Ale Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Alle Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> diff --git a/src/organizer_en_US.ts b/src/organizer_en_US.ts new file mode 100644 index 00000000..46daf493 --- /dev/null +++ b/src/organizer_en_US.ts @@ -0,0 +1,5343 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0" language="en_US"> +<context> + <name>AboutDialog</name> + <message> + <location filename="aboutdialog.ui" line="14"/> + <location filename="aboutdialog.ui" line="53"/> + <source>About</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="66"/> + <source>Revision:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="104"/> + <source>Used Software</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="117"/> + <source>Credits</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="123"/> + <source>Translators</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="189"/> + <source>Others</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.ui" line="266"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="aboutdialog.cpp" line="81"/> + <source>No license</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ActivateModsDialog</name> + <message> + <location filename="activatemodsdialog.ui" line="14"/> + <source>Activate Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="activatemodsdialog.ui" line="20"/> + <source>This is a list of esps and esms that were active when the save game was created.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="activatemodsdialog.ui" line="23"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="activatemodsdialog.ui" line="37"/> + <source>Missing ESP</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="activatemodsdialog.ui" line="42"/> + <source>Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="activatemodsdialog.cpp" line="49"/> + <source>not found</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>BainComplexInstallerDialog</name> + <message> + <location filename="baincomplexinstallerdialog.ui" line="14"/> + <source>BAIN Package Installer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="22"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="34"/> + <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="44"/> + <source>Components of this package.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="47"/> + <source>Components of this package. +If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="57"/> + <location filename="baincomplexinstallerdialog.ui" line="60"/> + <source>The package.txt is often part of BAIN packages and contains details about the options available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="63"/> + <source>Package.txt</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="83"/> + <location filename="baincomplexinstallerdialog.ui" line="86"/> + <source>Opens a Dialog that allows custom modifications.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="89"/> + <source>Manual</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="96"/> + <source>Ok</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="baincomplexinstallerdialog.ui" line="103"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CategoriesDialog</name> + <message> + <location filename="categoriesdialog.ui" line="14"/> + <source>Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="66"/> + <source>ID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="69"/> + <source>Internal ID for the category.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="72"/> + <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="77"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="80"/> + <location filename="categoriesdialog.ui" line="83"/> + <source>Name of the Categorie used for display.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="88"/> + <source>Nexus IDs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="91"/> + <source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="94"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="105"/> + <source>Parent ID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.ui" line="108"/> + <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.cpp" line="239"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categoriesdialog.cpp" line="240"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CredentialsDialog</name> + <message> + <location filename="credentialsdialog.ui" line="14"/> + <source>Login</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="credentialsdialog.ui" line="20"/> + <source>This feature may not work unless you're logged in with Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="credentialsdialog.ui" line="32"/> + <source>Username</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="credentialsdialog.ui" line="46"/> + <source>Password</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="credentialsdialog.ui" line="64"/> + <source>Remember</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="credentialsdialog.ui" line="75"/> + <source>Never ask again</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DirectoryRefresher</name> + <message> + <location filename="directoryrefresher.cpp" line="146"/> + <source>failed to read bsa: %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadList</name> + <message> + <location filename="downloadlist.cpp" line="64"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlist.cpp" line="65"/> + <source>Filetime</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlist.cpp" line="66"/> + <source>Done</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlist.cpp" line="82"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlist.cpp" line="89"/> + <source>pending download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadListWidget</name> + <message> + <location filename="downloadlistwidget.ui" line="17"/> + <location filename="downloadlistwidget.ui" line="61"/> + <source>Placeholder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.ui" line="99"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> + <source>Done - Double Click to install</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> + <source>Paused - Double Click to resume</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> + <source>Installed - Double Click to re-install</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> + <source>Uninstalled - Double Click to re-install</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadListWidgetCompact</name> + <message> + <location filename="downloadlistwidgetcompact.ui" line="17"/> + <location filename="downloadlistwidgetcompact.ui" line="56"/> + <source>Placeholder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.ui" line="122"/> + <source>Done</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadListWidgetCompactDelegate</name> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> + <source>Installed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> + <source>Uninstalled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> + <source>Done</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> + <source>Are you sure?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> + <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <source>Install</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <source>Query Info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <source>Remove from View</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> + <source>Pause</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> + <source>Resume</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <source>Delete Installed...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <source>Delete All...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> + <source>Remove Installed...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> + <source>Remove All...</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadListWidgetDelegate</name> + <message> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> + <source>Are you sure?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="259"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="268"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="277"/> + <source>This will remove all finished downloads from this list (but NOT from disk).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="286"/> + <source>This will remove all installed downloads from this list (but NOT from disk).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="314"/> + <source>Install</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="316"/> + <source>Query Info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="318"/> + <source>Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="320"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="322"/> + <source>Remove from View</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="325"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="326"/> + <source>Pause</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> + <source>Resume</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="334"/> + <source>Delete Installed...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="335"/> + <source>Delete All...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="338"/> + <source>Remove Installed...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="339"/> + <source>Remove All...</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>DownloadManager</name> + <message> + <location filename="downloadmanager.cpp" line="142"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> + <source>Download again?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> + <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="417"/> + <source>failed to download %1: could not open output file: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="454"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="454"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> + <location filename="downloadmanager.cpp" line="773"/> + <location filename="downloadmanager.cpp" line="782"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> + <source>invalid index</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="489"/> + <source>failed to delete %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="495"/> + <source>failed to delete meta file for %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> + <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> + <source>invalid index %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> + <source>Please enter the nexus mod id</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> + <source>Mod ID:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1141"/> + <source>Information updated</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> + <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1145"/> + <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1286"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1329"/> + <source>Failed to request file info from nexus: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1357"/> + <source>Download failed. Server reported: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1359"/> + <source>Download failed: %1 (%2)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1458"/> + <source>failed to re-open %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>EditExecutablesDialog</name> + <message> + <location filename="editexecutablesdialog.ui" line="14"/> + <source>Modify Executables</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="20"/> + <source>List of configured executables</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="23"/> + <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="38"/> + <source>Title</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="45"/> + <location filename="editexecutablesdialog.ui" line="48"/> + <source>Name of the executable. This is only for display purposes.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="59"/> + <source>Binary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="66"/> + <location filename="editexecutablesdialog.ui" line="69"/> + <source>Binary to run</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="76"/> + <source>Browse filesystem</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="79"/> + <source>Browse filesystem for the executable to run.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="82"/> + <location filename="editexecutablesdialog.ui" line="103"/> + <source>...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="93"/> + <source>Start in</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="114"/> + <source>Arguments</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="121"/> + <location filename="editexecutablesdialog.ui" line="124"/> + <source>Arguments to pass to the application</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="135"/> + <source>Allow the Steam AppID to be used for this executable to be changed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="138"/> + <source>Allow the Steam AppID to be used for this executable to be changed. +Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. +Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="143"/> + <source>Overwrite Steam AppID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="153"/> + <source>Steam AppID to use for this executable that differs from the games AppID.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="156"/> + <source>Steam AppID to use for this executable that differs from the games AppID. +Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). +Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="169"/> + <location filename="editexecutablesdialog.ui" line="172"/> + <location filename="editexecutablesdialog.cpp" line="258"/> + <source>If checked, MO will be closed once the specified executable is run.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="175"/> + <source>Close MO when started</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="182"/> + <location filename="editexecutablesdialog.ui" line="185"/> + <source>Add an executable</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="188"/> + <location filename="editexecutablesdialog.cpp" line="196"/> + <source>Add</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="199"/> + <location filename="editexecutablesdialog.ui" line="202"/> + <source>Remove the selected executable</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="205"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.ui" line="233"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="125"/> + <source>Select a binary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="125"/> + <source>Executable (%1)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="149"/> + <source>Java (32-bit) required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="150"/> + <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="166"/> + <source>Select a directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="175"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="175"/> + <source>Really remove "%1" from executables?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="230"/> + <location filename="editexecutablesdialog.cpp" line="278"/> + <source>Save Changes?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="231"/> + <location filename="editexecutablesdialog.cpp" line="279"/> + <source>You made changes to the current executable, do you want to save them?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="255"/> + <source>MO must be kept running or this application will not work correctly.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>FindDialog</name> + <message> + <location filename="finddialog.ui" line="14"/> + <source>Find</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="finddialog.ui" line="24"/> + <source>Find what:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="finddialog.ui" line="31"/> + <location filename="finddialog.ui" line="34"/> + <source>Search term</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="finddialog.ui" line="47"/> + <location filename="finddialog.ui" line="50"/> + <source>Find next occurence from current file position.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="finddialog.ui" line="53"/> + <source>&Find Next</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="finddialog.ui" line="60"/> + <location filename="finddialog.ui" line="63"/> + <location filename="finddialog.ui" line="66"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>FomodInstallerDialog</name> + <message> + <location filename="fomodinstallerdialog.ui" line="14"/> + <source>FOMOD Installation Dialog</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="22"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="46"/> + <source>Author</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="60"/> + <source>Version</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="74"/> + <source>Website</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="81"/> + <source><a href="#">Link</a></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="160"/> + <source>Manual</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="170"/> + <source>Back</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="177"/> + <source>Next</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="fomodinstallerdialog.ui" line="184"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>InstallDialog</name> + <message> + <location filename="installdialog.ui" line="20"/> + <source>Install Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="32"/> + <source>New Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="46"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="53"/> + <source>Pick a name for the mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="56"/> + <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="65"/> + <source>Content</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="75"/> + <source>Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="78"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="121"/> + <source>Placeholder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="141"/> + <source>OK</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installdialog.ui" line="148"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>InstallationManager</name> + <message> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="98"/> + <source>Password required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="98"/> + <source>Password</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="164"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="530"/> + <source>Extracting files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="439"/> + <source>failed to create backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="448"/> + <source>Mod Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="448"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="501"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="502"/> + <source>The name you entered is invalid, please enter a different one.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="743"/> + <source>None of the available installer plugins were able to handle that archive</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="753"/> + <source>no error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="756"/> + <source>7z.dll not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="759"/> + <source>7z.dll isn't valid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="762"/> + <source>archive not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="765"/> + <source>failed to open archive</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="768"/> + <source>unsupported archive type</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="771"/> + <source>internal library error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="774"/> + <source>archive invalid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="778"/> + <source>unknown archive error</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LockedDialog</name> + <message> + <location filename="lockeddialog.ui" line="14"/> + <source>Locked</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="lockeddialog.ui" line="20"/> + <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="lockeddialog.ui" line="23"/> + <source>MO is locked while the executable is running.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="lockeddialog.ui" line="54"/> + <source>Unlock</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LogBuffer</name> + <message> + <location filename="logbuffer.cpp" line="83"/> + <source>failed to write log to %1: %2</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>MOApplication</name> + <message> + <location filename="moapplication.cpp" line="115"/> + <source>an error occured: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="moapplication.cpp" line="120"/> + <source>an error occured</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>MainWindow</name> + <message> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> + <source>Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> + <source>Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="181"/> + <source>Pick a module collection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="184"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="215"/> + <source>Open list options...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="218"/> + <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> + <source>List of available mods.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="371"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="456"/> + <source>Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="477"/> + <source>No groups</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="487"/> + <source>Nexus IDs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1220"/> + <source>Namefilter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="530"/> + <source>Pick a program to run.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="533"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="581"/> + <source>Run program</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="584"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="594"/> + <source>Run</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="635"/> + <source>Create a shortcut in your start menu or on the desktop to the specified program</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="638"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="645"/> + <source>Shortcut</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="821"/> + <source>List of available esp/esm files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="824"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="934"/> + <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="937"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> + <source>File</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="992"/> + <source>Data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1010"/> + <source>refresh data-directory overview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1013"/> + <source>Refresh the overview. This may take a moment.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> + <source>Refresh</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1032"/> + <source>This is an overview of your data directory as visible to the game (and tools). </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> + <source>Filter the above list so that only conflicts are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1063"/> + <source>Show only conflicts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1071"/> + <source>Saves</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1095"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1115"/> + <source>Downloads</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1147"/> + <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1200"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1262"/> + <source>Tool Bar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1304"/> + <source>Install Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1307"/> + <source>Install &Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1310"/> + <source>Install a new mod from an archive</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1313"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1322"/> + <source>Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1325"/> + <source>&Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1328"/> + <source>Configure Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1331"/> + <source>Ctrl+P</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1340"/> + <source>Executables</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1343"/> + <source>&Executables</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1346"/> + <source>Configure the executables that can be started through Mod Organizer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1349"/> + <source>Ctrl+E</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> + <source>Tools</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1361"/> + <source>&Tools</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1367"/> + <source>Ctrl+I</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1376"/> + <source>Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1379"/> + <source>&Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1382"/> + <source>Configure settings and workarounds</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1385"/> + <source>Ctrl+S</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1394"/> + <source>Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1397"/> + <source>Search nexus network for more mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1400"/> + <source>Ctrl+N</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1415"/> + <source>Mod Organizer is up-to-date</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> + <source>No Problems</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1430"/> + <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. + +!Work in progress! +Right now this has very limited functionality</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> + <source>Help</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1448"/> + <source>Ctrl+H</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1457"/> + <source>Endorse MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> + <source>Endorse Mod Organizer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1465"/> + <source>Copy Log to Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1468"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="247"/> + <source>Toolbar</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="248"/> + <source>Desktop</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="249"/> + <source>Start Menu</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="553"/> + <source>Problems</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="554"/> + <source>There are potential problems with your setup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="566"/> + <source>Everything seems to be in order</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="627"/> + <source>Help on UI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="631"/> + <source>Documentation Wiki</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="635"/> + <source>Report Issue</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="639"/> + <source>Tutorials</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="678"/> + <source>About</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="679"/> + <source>About Qt</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="773"/> + <source>failed to save load order: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="785"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="786"/> + <source>Please enter a name for the new profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="794"/> + <source>failed to create profile: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="837"/> + <source>Show tutorial?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="838"/> + <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="869"/> + <source>Downloads in progress</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="870"/> + <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="924"/> + <source>failed to read savegame: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1048"/> + <source>Plugin "%1" failed: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1050"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1093"/> + <source>Download?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1094"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1135"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1220"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1258"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1259"/> + <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="1318"/> + <source>Failed to start "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1320"/> + <source>Waiting</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1320"/> + <source>Please press OK once you're logged into steam.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1332"/> + <source>Executable "%1" not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1346"/> + <source>Start Steam?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1347"/> + <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="1557"/> + <source>Also in: <br></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1568"/> + <source>No conflict</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1737"/> + <source><Edit...></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1834"/> + <source>Failed to refresh list of esps: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2003"/> + <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="2065"/> + <source>Activating Network Proxy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> + <source>Failed to write settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2183"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2184"/> + <source>Invalid file format (probably a bug)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2185"/> + <source>Unknown error %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2232"/> + <source>Some plugins could not be loaded</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2235"/> + <source>Too many esps and esms enabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> + <source>Description missing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2247"/> + <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="2255"/> + <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="2281"/> + <source>Choose Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2282"/> + <source>Mod Archive</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> + <source>Installation successful</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> + <source>Configure Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> + <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="2324"/> + <location filename="mainwindow.cpp" line="4336"/> + <source>mod "%1" not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> + <source>Installation cancelled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> + <source>The mod was not installed completely.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2536"/> + <source>Start Tutorial?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2537"/> + <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="2681"/> + <location filename="mainwindow.cpp" line="4241"/> + <source>Download started</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2742"/> + <source>failed to update mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2773"/> + <source>failed to spawn notepad.exe: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2810"/> + <source>failed to open %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2885"/> + <source>failed to change origin name: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2915"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2964"/> + <source><Checked></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2965"/> + <source><Unchecked></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2966"/> + <source><Update></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2967"/> + <source><Managed by MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2968"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2969"/> + <source><No category></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2970"/> + <source><Conflicted></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2971"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3004"/> + <source>failed to rename mod: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3017"/> + <source>Overwrite?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3018"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3021"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3050"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3095"/> + <source>Remove the following mods?<br><ul>%1</ul></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3106"/> + <source>failed to remove mod: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> + <source>Failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3141"/> + <source>Installation file no longer exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3145"/> + <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="3160"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> + <source>You need to be logged in with Nexus to endorse</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3349"/> + <source>Nexus ID for this Mod is unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> + <source>Create Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3389"/> + <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="3398"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3639"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3640"/> + <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="3660"/> + <location filename="mainwindow.cpp" line="4584"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3661"/> + <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="3713"/> + <source>Really enable all visible mods?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3721"/> + <source>Really disable all visible mods?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3729"/> + <source>Choose what to export</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3731"/> + <source>Everything</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3731"/> + <source>All installed mods are included in the list</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3732"/> + <source>Active Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3732"/> + <source>Only active (checked) mods from your current profile are included</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3733"/> + <source>Visible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3733"/> + <source>All mods visible in the mod list are included</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> + <source>export failed: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3793"/> + <source>Install Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> + <source>Enable all visible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3796"/> + <source>Disable all visible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3798"/> + <source>Check all for update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3802"/> + <source>Export to csv...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3821"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3827"/> + <source>Sync to Mods...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3831"/> + <source>Restore Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3832"/> + <source>Remove Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3836"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3841"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3846"/> + <source>Primary Category</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3853"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3857"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3859"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3864"/> + <source>Rename Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3865"/> + <source>Remove Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3866"/> + <source>Reinstall Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3869"/> + <source>Un-Endorse</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> + <source>Endorse</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> + <source>Won't endorse</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3879"/> + <source>Endorsement state unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3886"/> + <source>Ignore missing data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3889"/> + <source>Visit on Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3890"/> + <source>Open in explorer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3894"/> + <source>Information...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> + <source>Exception: </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> + <source>Unknown exception</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3922"/> + <source><All></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3924"/> + <source><Multiple></source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation> + <numerusform>Are you sure you want to remove the following save?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</numerusform> + <numerusform>Are you sure you want to remove the following %n saves?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</numerusform> + </translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4060"/> + <source>Fix Mods...</source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation> + <numerusform>Delete %n save</numerusform> + <numerusform>Delete %n saves</numerusform> + </translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> + <source>failed to remove %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> + <source>failed to create %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4162"/> + <source>Can't change download directory while downloads are in progress!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4244"/> + <source>Download failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4391"/> + <source>failed to write to file %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4397"/> + <source>%1 written</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4436"/> + <source>Select binary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4436"/> + <source>Binary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4462"/> + <source>Enter Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4463"/> + <source>Please enter a name for the executable</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4474"/> + <source>Not an executable</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4474"/> + <source>This is not a recognized executable.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> + <source>Replace file?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4499"/> + <source>There already is a hidden version of this file. Replace it?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> + <source>File operation failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4524"/> + <source>There already is a visible version of this file. Replace it?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4557"/> + <source>file not found: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4570"/> + <source>failed to generate preview for %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4584"/> + <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="4615"/> + <source>Update available</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4652"/> + <source>Open/Execute</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4653"/> + <source>Add as Executable</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4657"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4663"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4665"/> + <source>Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4671"/> + <source>Write To File...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4696"/> + <source>Do you want to endorse Mod Organizer on %1 now?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4792"/> + <source>Thank you!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4792"/> + <source>Thank you for your endorsement!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4827"/> + <source>Request to Nexus failed: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> + <source>login successful</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4861"/> + <source>login failed: %1. Trying to download anyway</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4867"/> + <source>login failed: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4877"/> + <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="4898"/> + <location filename="mainwindow.cpp" line="4949"/> + <source>failed to read %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4910"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4910"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4941"/> + <source>Extract BSA</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4960"/> + <source>This archive contains invalid hashes. Some files may be broken.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5005"/> + <source>Extract...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5067"/> + <source>Edit Categories...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5068"/> + <source>Deselect filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5119"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5130"/> + <source>Enable all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5131"/> + <source>Disable all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5150"/> + <source>Unlock load order</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5153"/> + <source>Lock load order</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5285"/> + <source>depends on missing "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5305"/> + <source>No profile set</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5353"/> + <source>LOOT working</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5429"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5441"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5489"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5499"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5512"/> + <source>No Backups</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5512"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5545"/> + <source>Backup of modlist created</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>MessageDialog</name> + <message> + <location filename="messagedialog.ui" line="150"/> + <location filename="messagedialog.ui" line="180"/> + <source>Placeholder</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfo</name> + <message> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> + <source>invalid index %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfoBackup</name> + <message> + <location filename="modinfo.cpp" line="903"/> + <source>This is the backup of a mod</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfoDialog</name> + <message> + <location filename="modinfodialog.ui" line="14"/> + <source>Mod Info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="30"/> + <source>Textfiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="42"/> + <source>A list of text-files in the mod directory.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="45"/> + <source>A list of text-files in the mod directory like readmes. </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="175"/> + <source>Save</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="77"/> + <source>INI-Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> + <source>This is a list of .ini files in the mod.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="107"/> + <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> + <source>Save changes to the file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="172"/> + <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="185"/> + <source>Images</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="240"/> + <source>Images located in the mod.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> + <source>Optional ESPs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="282"/> + <source>List of esps and esms that can not be loaded by the game.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="285"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="310"/> + <source>Make the selected mod in the lower list unavailable.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="313"/> + <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="339"/> + <source>Move a file to the data directory.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="342"/> + <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="377"/> + <source>ESPs in the data directory and thus visible to the game.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="380"/> + <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="387"/> + <source>Available ESPs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="395"/> + <source>Conflicts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="403"/> + <source>The following conflicted files are provided by this mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> + <source>File</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="458"/> + <source>Overwritten Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="468"/> + <source>The following conflicted files are provided by other mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="508"/> + <source>Providing Mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="518"/> + <source>Non-Conflicted files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="538"/> + <source>Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="561"/> + <source>Primary Category</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="578"/> + <source>Nexus Info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="586"/> + <source>Mod ID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="593"/> + <source>Mod ID for this mod on Nexus.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="596"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="620"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="627"/> + <source>Version</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="657"/> + <source>Refresh</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="660"/> + <source>Refresh all information from Nexus.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="674"/> + <source>Description</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="689"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="724"/> + <source>Endorse</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="738"/> + <source>Notes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="748"/> + <source>Filetree</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="757"/> + <source>A directory view of this mod</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="760"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="787"/> + <source>Previous</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="794"/> + <source>Next</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="814"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="169"/> + <source>&Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="170"/> + <source>&Rename</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="171"/> + <source>&Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="172"/> + <source>&Unhide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="173"/> + <source>&Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="174"/> + <source>&New Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> + <source>Save changes?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="625"/> + <source>File Exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="625"/> + <source>A file with that name exists, please enter a new one</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="642"/> + <source>failed to move file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="667"/> + <source>failed to create directory "optional"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> + <source>Info requested, please wait</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="759"/> + <source>Main</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="760"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="761"/> + <source>Optional</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="762"/> + <source>Old</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="763"/> + <source>Misc</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="764"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="775"/> + <source>Current Version: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="779"/> + <source>No update available</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="820"/> + <source>(description incomplete, please visit nexus)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="835"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="914"/> + <source>Failed to delete %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="925"/> + <source>Are sure you want to delete "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="930"/> + <source>Are sure you want to delete the selected files?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> + <source>New Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1016"/> + <source>Failed to create "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> + <source>Replace file?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1120"/> + <source>There already is a hidden version of this file. Replace it?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> + <source>File operation failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> + <source>failed to rename %1 to %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1144"/> + <source>There already is a visible version of this file. Replace it?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1190"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1192"/> + <source>Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1233"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1233"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1237"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1240"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1254"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfoForeign</name> + <message> + <location filename="modinfo.cpp" line="992"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfoOverwrite</name> + <message> + <location filename="modinfo.cpp" line="948"/> + <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModInfoRegular</name> + <message> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfo.cpp" line="816"/> + <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfo.cpp" line="820"/> + <source>Categories: <br></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ModList</name> + <message> + <location filename="modlist.cpp" line="110"/> + <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="119"/> + <source>Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="120"/> + <source>No valid game data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="121"/> + <source>Not endorsed yet</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="123"/> + <source>Overwrites files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="124"/> + <source>Overwritten files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="125"/> + <source>Overwrites & Overwritten</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="126"/> + <source>Redundant</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="171"/> + <source>Non-MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="202"/> + <source>invalid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="324"/> + <source>installed version: "%1", newest version: "%2"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="326"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="334"/> + <source>Categories: <br></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="363"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="764"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="827"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="827"/> + <source>Are you sure you want to remove "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="882"/> + <source>Flags</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="883"/> + <source>Mod Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="884"/> + <source>Version</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="885"/> + <source>Priority</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="886"/> + <source>Category</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="887"/> + <source>Nexus ID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="888"/> + <source>Installation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> + <source>unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="897"/> + <source>Name of your mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="898"/> + <source>Version of the mod (if available)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="899"/> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="901"/> + <source>Category of the mod.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="902"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="903"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="904"/> + <source>Time this mod was installed</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>MotDDialog</name> + <message> + <location filename="motddialog.ui" line="14"/> + <source>Message of the Day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="motddialog.ui" line="42"/> + <source>OK</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>MyFileSystemModel</name> + <message> + <location filename="overwriteinfodialog.cpp" line="47"/> + <source>Overwrites</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="59"/> + <source>not implemented</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>NXMAccessManager</name> + <message> + <location filename="nxmaccessmanager.cpp" line="144"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="159"/> + <source>timeout</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="178"/> + <source>Unknown error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="204"/> + <source>Please check your password</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>NexusInterface</name> + <message> + <location filename="nexusinterface.cpp" line="216"/> + <source>Failed to guess mod id for "%1", please pick the correct one</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nexusinterface.cpp" line="482"/> + <source>empty response</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nexusinterface.cpp" line="511"/> + <source>invalid response</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>OverwriteInfoDialog</name> + <message> + <location filename="overwriteinfodialog.ui" line="14"/> + <source>Overwrite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.ui" line="39"/> + <source>You can use drag&drop to move files and directories to regular mods.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="90"/> + <source>&Delete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="91"/> + <source>&Rename</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="92"/> + <source>&Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="93"/> + <source>&New Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="136"/> + <source>Failed to delete "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="147"/> + <source>Are sure you want to delete "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="152"/> + <source>Are sure you want to delete the selected files?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> + <source>New Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="overwriteinfodialog.cpp" line="214"/> + <source>Failed to create "%1"</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>PluginList</name> + <message> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> + <source>Mod Index</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="106"/> + <source>Flags</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> + <source>unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="115"/> + <source>Name of your mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="116"/> + <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="118"/> + <source>The modindex determins the formids of objects originating from this mods.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="159"/> + <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="227"/> + <source>esp not found: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="234"/> + <source>Really enable all plugins?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="246"/> + <source>Really disable all plugins?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="397"/> + <source>The file containing locked plugin indices is broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="438"/> + <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> + <message> + <location filename="pluginlist.cpp" line="804"/> + <source>This plugin can't be disabled (enforced by the game)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="806"/> + <source><b>Origin</b>: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="808"/> + <source>Author</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="811"/> + <source>Description</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="814"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="821"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="975"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>PreviewDialog</name> + <message> + <location filename="previewdialog.ui" line="14"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="previewdialog.ui" line="78"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ProblemsDialog</name> + <message> + <location filename="problemsdialog.ui" line="14"/> + <source>Problems</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="problemsdialog.ui" line="49"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> + <source>Fix</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="problemsdialog.cpp" line="49"/> + <source>No guided fix</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>Profile</name> + <message> + <location filename="profile.cpp" line="59"/> + <source>invalid profile name %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="63"/> + <source>failed to create %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="184"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="195"/> + <source>failed to update tweaked ini file, wrong settings may be used: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="226"/> + <source>failed to create tweaked ini: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="435"/> + <location filename="profile.cpp" line="445"/> + <source>invalid index %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="396"/> + <source>Overwrite directory couldn't be parsed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="405"/> + <source>invalid priority %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="595"/> + <source>failed to parse ini file (%1)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="623"/> + <source>failed to parse ini file (%1): %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="647"/> + <location filename="profile.cpp" line="684"/> + <source>failed to modify "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="712"/> + <source>Delete savegames?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="713"/> + <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ProfileInputDialog</name> + <message> + <location filename="profileinputdialog.ui" line="14"/> + <source>Dialog</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profileinputdialog.ui" line="20"/> + <source>Please enter a name for the new profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profileinputdialog.ui" line="30"/> + <source>If checked, the new profile will use the default game settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profileinputdialog.ui" line="33"/> + <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profileinputdialog.ui" line="36"/> + <source>Default Game Settings</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>ProfilesDialog</name> + <message> + <location filename="profilesdialog.ui" line="14"/> + <source>Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="22"/> + <source>List of Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="25"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="38"/> + <location filename="profilesdialog.ui" line="41"/> + <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="44"/> + <source>Local Savegames</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="51"/> + <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="54"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">With Skyrim this bug seems to be fixed to a degree but whether a mod becomes active still depends on file dates. Therefore, it still makes sense to activate this.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="64"/> + <source>Automatic Archive Invalidation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="75"/> + <location filename="profilesdialog.ui" line="78"/> + <source>Create a new profile from scratch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="81"/> + <source>Create</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="91"/> + <source>Clone the selected profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="94"/> + <source>This creates a new profile with the same settings and active mods as the selected one.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="97"/> + <source>Copy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="107"/> + <location filename="profilesdialog.ui" line="110"/> + <source>Delete the selected Profile. This can not be un-done!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="113"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="123"/> + <source>Rename</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="133"/> + <location filename="profilesdialog.ui" line="136"/> + <source>Transfer save games to the selected profile.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="139"/> + <source>Transfer Saves</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.ui" line="162"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="61"/> + <source>Archive invalidation isn't required for this game.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="99"/> + <location filename="profilesdialog.cpp" line="144"/> + <source>failed to create profile: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="152"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="152"/> + <source>Please enter a name for the new profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="162"/> + <source>failed to copy profile: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="215"/> + <source>Rename Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="215"/> + <source>New Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="252"/> + <source>failed to change archive invalidation state: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="289"/> + <source>failed to determine if invalidation is active: %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>QObject</name> + <message> + <location filename="categories.cpp" line="141"/> + <source>Failed to save custom categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categories.cpp" line="218"/> + <location filename="categories.cpp" line="253"/> + <location filename="categories.cpp" line="263"/> + <location filename="categories.cpp" line="273"/> + <source>invalid index %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="categories.cpp" line="284"/> + <source>invalid category id %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="helper.cpp" line="53"/> + <source>helper failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="helper.cpp" line="69"/> + <location filename="helper.cpp" line="90"/> + <source>failed to determine account name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="installationmanager.cpp" line="64"/> + <location filename="selfupdater.cpp" line="52"/> + <source>invalid 7-zip32.dll: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="50"/> + <source>failed to open %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="104"/> + <location filename="loadmechanism.cpp" line="113"/> + <source>%1 not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="138"/> + <source>Failed to delete %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="144"/> + <source>Failed to deactivate script extender loading</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="165"/> + <source>Failed to remove %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="167"/> + <location filename="loadmechanism.cpp" line="260"/> + <source>Failed to rename %1 to %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="175"/> + <source>Failed to deactivate proxy-dll loading</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="209"/> + <location filename="loadmechanism.cpp" line="243"/> + <location filename="loadmechanism.cpp" line="263"/> + <source>Failed to copy %1 to %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="214"/> + <source>Failed to set up script extender loading</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="240"/> + <source>Failed to delete old proxy-dll %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="256"/> + <source>Failed to overwrite %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="loadmechanism.cpp" line="268"/> + <source>Failed to set up proxy-dll loading</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="121"/> + <source>Permissions required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="218"/> + <location filename="main.cpp" line="256"/> + <source>Woops</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="219"/> + <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="257"/> + <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="378"/> + <location filename="settings.cpp" line="557"/> + <source>Mod Organizer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="378"/> + <source>An instance of Mod Organizer is already running</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="400"/> + <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="403"/> + <location filename="main.cpp" line="432"/> + <source>Please select the game to manage</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="458"/> + <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="main.cpp" line="547"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="850"/> + <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="1644"/> + <location filename="mainwindow.cpp" line="4281"/> + <source><Manage...></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1662"/> + <source>failed to parse profile %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="352"/> + <source>failed to find "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="516"/> + <source>failed to access %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="530"/> + <source>failed to set file time %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="70"/> + <source>failed to create %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="report.cpp" line="33"/> + <location filename="report.cpp" line="36"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="safewritefile.cpp" line="33"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> + <source>wrong file format</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegamegamebryo.cpp" line="317"/> + <source>failed to open %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settings.cpp" line="564"/> + <source>Script Extender</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settings.cpp" line="571"/> + <source>Proxy DLL</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="133"/> + <source>failed to spawn "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="140"/> + <source>Elevation required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="141"/> + <source>This process requires elevation to run. +This is a potential security risk so I highly advice you to investigate if +"%1" +can be installed to work without elevation. + +Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="156"/> + <source>failed to spawn "%1": %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="165"/> + <source>"%1" doesn't exist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="172"/> + <source>failed to inject dll into "%1": %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="spawn.cpp" line="190"/> + <source>failed to run "%1"</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>QueryOverwriteDialog</name> + <message> + <location filename="queryoverwritedialog.ui" line="14"/> + <source>Mod Exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="45"/> + <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="63"/> + <source>Keep Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="70"/> + <source>Merge</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="77"/> + <source>Replace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="84"/> + <source>Rename</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="queryoverwritedialog.ui" line="91"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SaveGameInfoWidget</name> + <message> + <location filename="savegameinfowidget.ui" line="39"/> + <source>Save #</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegameinfowidget.ui" line="51"/> + <source>Character</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegameinfowidget.ui" line="63"/> + <source>Level</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegameinfowidget.ui" line="75"/> + <source>Location</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savegameinfowidget.ui" line="87"/> + <source>Date</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SaveGameInfoWidgetGamebryo</name> + <message> + <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> + <source>Missing ESPs</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SaveTextAsDialog</name> + <message> + <location filename="savetextasdialog.ui" line="14"/> + <source>Dialog</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.ui" line="32"/> + <source>Copy To Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.ui" line="39"/> + <source>Save As...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.ui" line="59"/> + <source>Close</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.cpp" line="36"/> + <source>Save CSV</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.cpp" line="36"/> + <source>Text Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="savetextasdialog.cpp" line="40"/> + <source>failed to open "%1" for writing</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SelectionDialog</name> + <message> + <location filename="selectiondialog.ui" line="14"/> + <source>Select</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selectiondialog.ui" line="23"/> + <source>Placeholder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selectiondialog.ui" line="77"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SelfUpdater</name> + <message> + <location filename="selfupdater.cpp" line="66"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="117"/> + <location filename="selfupdater.cpp" line="140"/> + <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="416"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="118"/> + <source>An update is available (newest version: %1), do you want to install it?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="141"/> + <source>Download in progress</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="196"/> + <source>Download failed: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="207"/> + <source>Failed to install update: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="228"/> + <source>failed to open archive "%1": %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="251"/> + <source>failed to move outdated files: %1. Please update manually.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="269"/> + <source>Update installed, Mod Organizer will now be restarted.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="297"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="352"/> + <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="417"/> + <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="426"/> + <source>no file for update found. Please update manually.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="441"/> + <source>Failed to retrieve update information: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="selfupdater.cpp" line="461"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>Settings</name> + <message> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settings.cpp" line="676"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settings.cpp" line="676"/> + <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SettingsDialog</name> + <message> + <location filename="settingsdialog.ui" line="14"/> + <source>Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="24"/> + <source>General</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="32"/> + <source>Language</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="39"/> + <source>The display language</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="42"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="57"/> + <source>Style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="64"/> + <source>graphical style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="67"/> + <source>graphical style of the MO user interface</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="78"/> + <source>Log Level</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="85"/> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="88"/> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="93"/> + <source>Debug</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="98"/> + <source>Info</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="103"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="113"/> + <source>Advanced</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="125"/> + <location filename="settingsdialog.ui" line="128"/> + <source>Directory where downloads are stored.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="148"/> + <source>Mod Directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="155"/> + <source>Directory where mods are stored.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="158"/> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="172"/> + <source>Download Directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="179"/> + <source>Cache Directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> + <source>Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="280"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="283"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="299"/> + <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="302"/> + <source>Automatically Log-In to Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="311"/> + <source>Username</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="325"/> + <source>Password</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="482"/> + <source>Author:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="496"/> + <source>Version:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="510"/> + <source>Description:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="548"/> + <source>Key</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="553"/> + <source>Value</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> + <source>Workarounds</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="584"/> + <source>Steam App ID</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="604"/> + <source>The Steam AppID for your game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="607"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="638"/> + <source>Load Mechanism</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="658"/> + <source>Select loading mechanism. See help for details.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="678"/> + <source>NMM Version</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="698"/> + <source>The Version of Nexus Mod Manager to impersonate.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="701"/> + <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. + +tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="723"/> + <source>Enforces that inactive ESPs and ESMs are never loaded.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="726"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="730"/> + <source>Hide inactive ESPs/ESMs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="737"/> + <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="740"/> + <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) +Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="744"/> + <source>Force-enable game files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> + <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. +For the other games this is not a sufficient replacement for AI!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="781"/> + <source>Back-date BSAs</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="805"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.cpp" line="95"/> + <source>Select download directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.cpp" line="103"/> + <source>Select mod directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.cpp" line="111"/> + <source>Select cache directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.cpp" line="119"/> + <source>Confirm?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.cpp" line="120"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SimpleInstallDialog</name> + <message> + <location filename="simpleinstalldialog.ui" line="14"/> + <source>Quick Install</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="simpleinstalldialog.ui" line="22"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="simpleinstalldialog.ui" line="49"/> + <location filename="simpleinstalldialog.ui" line="52"/> + <source>Opens a Dialog that allows custom modifications.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="simpleinstalldialog.ui" line="55"/> + <source>Manual</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="simpleinstalldialog.ui" line="62"/> + <source>OK</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="simpleinstalldialog.ui" line="72"/> + <source>Cancel</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SingleInstance</name> + <message> + <location filename="singleinstance.cpp" line="50"/> + <source>SHM error: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="singleinstance.cpp" line="82"/> + <source>failed to connect to running instance: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="singleinstance.cpp" line="88"/> + <source>failed to communicate with running instance: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="singleinstance.cpp" line="100"/> + <source>failed to receive data from secondary instance: %1</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>SyncOverwriteDialog</name> + <message> + <location filename="syncoverwritedialog.ui" line="14"/> + <source>Sync Overwrite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="syncoverwritedialog.ui" line="27"/> + <source>Name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="syncoverwritedialog.ui" line="32"/> + <source>Sync To</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="syncoverwritedialog.cpp" line="95"/> + <source><don't sync></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="syncoverwritedialog.cpp" line="147"/> + <source>failed to remove %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="syncoverwritedialog.cpp" line="149"/> + <source>failed to move %1 to %2</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>TransferSavesDialog</name> + <message> + <location filename="transfersavesdialog.ui" line="14"/> + <source>Transfer Savegames</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="22"/> + <source>Global Characters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="29"/> + <source>This is a list of characters in the global location.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="32"/> + <source>This is a list of characters in the global location. + +On Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves + +On Windows XP: + C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="46"/> + <source>This is a list of save games for the selected character in the global location. + +On Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves + +On Windows XP: + C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves + +</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="87"/> + <source>Move -></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="97"/> + <source>Copy -></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="123"/> + <source><- Move</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="133"/> + <source><- Copy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="156"/> + <source>Done</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.ui" line="167"/> + <source>Profile Characters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="140"/> + <source>Overwrite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="141"/> + <source>Overwrite the file "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> + <source>Copy all save games of character "%1" to the profile?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="231"/> + <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="transfersavesdialog.cpp" line="270"/> + <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> diff --git a/src/organizer_es.ts b/src/organizer_es.ts index 99071b5c..5ffce293 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -1400,7 +1400,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation>Nombre del filtro</translation> </message> @@ -1561,8 +1561,8 @@ BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation>Recargar</translation> </message> @@ -1610,12 +1610,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si haces clic en &quot;Fix Mods...&quot; en el menú contextual, MO tratará de activar todos los mods y para arreglar esos esps desaparecidos. No va a desactivar ninguna otra cosa!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation>Descargas</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> </message> @@ -1624,145 +1624,145 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Compactar</translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation>Mostrar Ocultos</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation>Barra Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation>Instalar Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation>Instalar &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation>Instalar un nuevo Mod desde un archivo</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation>Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation>&Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation>Configurar Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation>Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation>&Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation>&Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation>Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation>&Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation>Configurar opciones y soluciones</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation>Buscar en la red de Nexus mas Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation>Actualizacion</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer esta actualizado</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation>Sin problemas</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1773,94 +1773,94 @@ Right now this has very limited functionality</source> Ahora esto tiene una funcionalidad muy limitada</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation>Avalar MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation>Avalar Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation>Barra de herramientas</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation>Escritorio</translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation>Menú de Inicio</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation>Problemas</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation>Hay posibles problemas con su configuración</translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation>Todo parece estar en orden</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation>Ayuda sobre UI</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation>Documentación Wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation>Informar de un Problema</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation>Tutoriales</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation>Sobre</translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation>Sobre Qt</translation> </message> @@ -1869,119 +1869,119 @@ Ahora esto tiene una funcionalidad muy limitada</translation> <translation type="obsolete">Fallo al salvar la orden de archivos, , ¿tiene permiso de escritura en "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation>Fallo guardando el orden de carga: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation>Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation>Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation>¿Mostrar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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>Están comenzando Mod Organizer por primera vez. ¿Quieres mostrar un tutorial de sus características básicas? Si decides que no siempre podras empezar el tutorial desde la "Ayuda" del menú.</translation> </message> <message> - <location filename="mainwindow.cpp" line="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation>Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Aun hay descargas en progreso, estas seguro que quieres salir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation>Fallo al leer la partida guardada: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation>Plugin "%1" fallido: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation>Plugin "%1" fallido</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation>fallo al iniciar plugin %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation>Error de plugin</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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>Parece que el plugin "%1" Fallo al cargar el último inicio y causó que MO se bloqueara. ¿Quieres desactivarlo? (Nota: Si es la primera vez que ve este mensaje en este plugin es posible que desees intentarlo otra vez. El plugin podria ser capaz de recuperarse del problema.)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation>Fallo al iniciar plugin %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation>Esperando</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation>Por favor, pulsa OK una vez que hayas iniciado sesión en steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation>¿Iniciar Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation>Steam es requerido para iniciar correctamente el juego. ¿Debería MO tratar de iniciar ahora steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation>También en: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation>Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>Esta bsa está habilitada en el archivo ini, por lo que puede ser necesario</translation> </message> @@ -1990,232 +1990,240 @@ Ahora esto tiene una funcionalidad muy limitada</translation> <translation type="obsolete">Este archivo se seguirá cargado, ya que hay un plugin con el mismo nombre, pero sus archivos no seguirá el orden de instalación!</translation> </message> <message> - <location filename="mainwindow.cpp" line="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation>Activación de proxy de red</translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation>Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation>Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation>mod "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation>Instalación cancelada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation>El mod no fue instalado completamente.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation>Algún plugins no se pudo cargar</translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation>Demasiados esps y esms habilitado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation>Falta la descripción</translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation>Los siguientes plugins no se pudieron cargar. La razón puede ser dependencias faltantes (es decir python) o una versión obsoleta:</translation> </message> <message> - <location filename="mainwindow.cpp" line="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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>El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation>Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation>Archivo Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation>Iniciar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation>Estás a punto de iniciar un tutorial. Por razones técnicas, no es posible terminar el tutorial antes de tiempo. ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation>Descarga iniciada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation>Fallo al actualizar la lista de Mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation>Fallo al cargar el Bloc de notas: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation>Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation>fallo al cambiar el nombre original del fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation>Ejecutable "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation>Fallo al actualizar la lista de esps: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation><No categoría></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation><En conflicto></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation><No Avalado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation>fallo al renombrar el mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation>¿Sobrescribir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Esto reemplazará el vigente mod "%1". ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation>Fallo eliminando mod "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation>Fallo al renombrar "%1" a "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Múltiples esps activados, por favor verifique que no entren en conflicto.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation>Confirmar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>¿Quitar el siguiente mods?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation>fallo al eliminar mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation>Fallo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation>El archivo de instalación ya no existe</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation>Mods instalados con las viejas versiones de MO no pueden ser instalados de nuevo de este modo.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Necesita estar conectado con Nexus para avalar</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation>Extraer BSA</translation> </message> @@ -2226,639 +2234,651 @@ Ahora esto tiene una funcionalidad muy limitada</translation> (Esto elimina la BSA después de su finalización. Si no sabe de BSAS, solamente no lo seleccione)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation>fallo al leer %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation>Se desconoce la ID en Nexus para este Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation>Crear Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation>Esto moverá todos los archivos de sobrescritura en un nuevo mod, regular. Por favor, introduzca un nombre:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation>Ya existe un mod con este nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation>¿Continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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>El esquema de versiones decide qué versión es considerada más nueva una que otra. Esta función adivinará el esquema de versiones bajo el supuesto de que la versión instalada es obsoleta.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation>Lo siento</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation>Se desconoce un esquema de versiones donde %1 es más reciente que %2.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation>¿Permitir realmente todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation>¿Realmente desactivar todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation>Elija un archivo a exportar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation>Todo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation>Todos los mods instalados están incluidos en la lista</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation>Mods Activos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Mods sólo activos (Marcados) es incluido de su perfil actual</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation>Visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation>Todo mods visible en la lista de mod son incluidos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation>Falló al exportar: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation>Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation>Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation>Desactivar todo lo visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation>Comprobar todo para actualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation>Exportar a CSV...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation>Sincronizar con Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation>Restaurar copia de seguridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation>Eliminar copia de seguridad...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation>Añadir/Quitar Categorías</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation>Remplazar Categorías</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation>Categoría Primaria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation>Cambiar esquema de versiones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation>No ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation>No Ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation>Renombrar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation>Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation>Reinstalar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation>No Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation>Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation>No avalar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation>Estado de avalado desconocido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation>Ignorar data desaparecido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation>Visite Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation>Abrir en explorador</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation>Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation>Excepción:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation>Excepción desconocida</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation><Todo></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation><Multiple></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="3895"/> <source>Really delete "%1"?</source> - <translation>Realmente desea borrar "%1"?</translation> + <translation type="obsolete">Realmente desea borrar "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation>Fix Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4007"/> <source>Delete</source> - <translation>Eliminar</translation> + <translation type="obsolete">Eliminar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation>Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation>Fallo al crear %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation>No se puede cambiar el directorio de descarga, mientras que las descargas están en curso</translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation>Descarga fallida</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation>Fallo de escritura en el fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation>%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation>Selecciona el binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation>Binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation>Introducir Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation>Por favor, introduce un nombre para el ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation>No es un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation>Esto no es un ejecutable reconocido.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation>¿Reemplazar archivo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation>La operación del archivo falló</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Fallo al eliminar "%1". ¿Tal vez no tengas los permisos necesarios?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation>archivo no encontrado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation>fallo al generar vista anticipada para %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation>Lo sentimos, no se puede obtener una vista previa de nada. Esta función no admite la extracción de bsas.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation>Actualización disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation>Abrir/Ejecutar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation>Añadir un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation>Previsualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation>Desocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation>Ocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation>Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>¿Quieres avalar Mod Organizer en %1 ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation>Solicitud de Nexus ha fallado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation>login correcto</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <source>login failed: %1. Trying to download anyway</source> <translation>login fallado: %1. Intentando descarga de todos modos</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4867"/> <source>login failed: %1</source> <translation>Falló el inicio de sesión: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation>login fallido: %1. Necesitas hacer login con Nexus para actualizar MO.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation>fallo al extraer %1 (Código de error %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation>Extraer...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation>Editar Categorías...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation>Eliminar</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation>Activar todo</translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation>Desactivar todos</translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation>Desbloquear el orden de carga</translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation>Orden de carga bloqueado</translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2892,7 +2912,7 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation>Esta es la copia de seguridad de un mod</translation> </message> @@ -3213,227 +3233,227 @@ p, li { white-space: pre-wrap; } <translation>Cerrar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&Delete</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&Rename</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&Ocultar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&Mostrar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&Abrir</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&Nueva Carpeta</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>¿Guardar cambios?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation>¿Guardar cambios a %1?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>Existe el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>Error al mover el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>Error al crear el directorio "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>Informacion solicitada, por favor espere</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>Principal</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>Actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>Opcional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>Antiguo</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>Misc</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>Desconocido</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>Version actual: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>Sin actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(descripción incompleta, por favor visite nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Visite en Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>Error borrando %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>Confirma</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>Etas seguro de querer borrar los ficheros seleccionados?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>Nueva Carpeta</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>Fallo al crear "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>¿Reemplazar archivo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>La operación de archivo falló.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Fallo al eliminar "% 1". Tal vez no tienes los permisos necesarios?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>Fallo al renombrar %1 a %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>Desocultar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>Ocultar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation>Nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation>Por favor, introduzca un nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation>Nombre no válido. Debe ser un nombre de archivo válido</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation>Existe un ajuste con ese nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation>Crear Ajuste Fino</translation> </message> @@ -3441,7 +3461,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3449,7 +3469,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation>Esta pseudo-mod contiene archivos en el árbol de datos virtual que fue modificado (es decir, mediante el kit de construcción)</translation> </message> @@ -3461,18 +3481,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">fallo al escribir %1/meta.ini: % 2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation>%1 no contiene ningún esp/esm y ningún directorio activo (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation>Categorias: <br></translation> </message> @@ -3480,164 +3500,164 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Esta entrada contiene los archivos que se han creado en el interior del árbol de datos virtual (es decir, mediante el kit de construcción)</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation>Copia de seguridad</translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation>No hay datos válidos</translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation>No avalado aún</translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation>Sobrescribe archivos</translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation>¿Sobrescribir archivo?</translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation>Sobrescribe & sobrescrito</translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation>Redundante</translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation>inválido</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <oldsource>installed version: %1, newest version: %2</oldsource> <translation>version instalada: "%1", nueva version: "%2"</translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation>La nueva versión en Nexus parece ser más antigua que la que has instalado. Esto podría significar, que la versión ha sido retirada (es decir, debido a un error) o el autor utiliza un esquema de control de versiones no estándar y que la versión más reciente es en realidad la más reciente. De cualquier manera si lo deseas, puedes "actualizar".</translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>Categorias: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation>Nombre no válido.</translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation>fallo al arrastrar y soltar: %1</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>Confirma</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation>Banderas</translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation>Nombre del Mod</translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>Versión</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>Prioridad</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation>Categoría</translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation>Nexus IDs</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation>Instalación</translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation>Desconocido</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation>Nombre de tus mods</translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Version del mod (si esta disponible)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Prioridad de instalacion de tu mod. Cuanto mas alto sea pisara los mods con menos prioridad.</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation>Categoría del mod.</translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation>Id del mod tal como se utiliza en Nexus.</translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation>Emblemas para destacar las cosas que podrían requerir atención.</translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation>Tiempo que fue instalado el mod</translation> </message> @@ -3854,17 +3874,17 @@ p, li { white-space: pre-wrap; } <translation>Algunos de los plugins tienen nombres no válidos! Estos plugins no pueden ser cargados por el juego. Por favor, consulte mo_interface.log para ver una lista de plugins afectados y cambiarles el nombre.</translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Autor</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">Descripcion</translation> </message> @@ -3873,7 +3893,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">BOSS dll incompatible</translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Este plugin no se puede desactivar (impuesto por el juego)</translation> </message> @@ -3882,17 +3902,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Origen: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation>Maestros Desaparecidos</translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation>Activar Maestros</translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation>fallo al restaurar el orden de carga 1%</translation> </message> @@ -4462,18 +4482,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <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> <message> - <location filename="mainwindow.cpp" line="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> @@ -4515,14 +4535,14 @@ p, li { white-space: pre-wrap; } <translation>Error</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>formato de fichero erroneo</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>Fallo al abrir %1</translation> </message> @@ -4537,17 +4557,17 @@ p, li { white-space: pre-wrap; } <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>Fallo al crear "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation>Elevación requerida</translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4562,22 +4582,22 @@ puede ser instalado para trabajar sin elevación. ¿Comenzar elevación de todos modos? (se le preguntará si desea permitir a Mod Organizer.exe realizar cambios en el sistema)</translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>Fallo al crear "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1% no existe</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>Fallo al injectar la dll en "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>Fallo al abrir %1</translation> </message> @@ -4807,12 +4827,12 @@ puede ser instalado para trabajar sin elevación. <translation>tratando de almacenar la configuración para plugin desconocido "%1"</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>Confirmar</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>¡Cambiar el directorio mod afecta a todos los perfiles! Mods que no están presentes (o de nombres diferentes) en la nueva ubicación se desactivarán en todos los perfiles. No hay manera de deshacer esto a menos que se realice la copia de seguridad de los perfiles manualmente. ¿Proceder?</translation> </message> @@ -5486,26 +5506,26 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves <translation>Sobrescribir el fichero "%1"</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation>Confirmar</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation>Copiar todos los caracteres del juego salvado "%1" para el perfil?</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index 4671d9e8..0fc91a88 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -1403,7 +1403,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation>Filtre de nom</translation> </message> @@ -1527,8 +1527,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> @@ -1576,12 +1576,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation type="unfinished">Téléchargements</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> </message> @@ -1628,145 +1628,145 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation type="unfinished">Installer &mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation type="unfinished">Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation type="unfinished">&Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation type="unfinished">Configurer les profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation type="unfinished">Programmes</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation type="unfinished">Programm&es</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation type="unfinished">Réglages</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation type="unfinished">Réglage&s</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Configurer les réglages et solutions de rechange</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation>Mise-à-jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer est à jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1774,170 +1774,170 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <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="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <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="787"/> + <location filename="mainwindow.cpp" line="794"/> <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="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <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="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation type="unfinished">impossible de lancer "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation> </message> @@ -1946,907 +1946,923 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <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="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <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="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <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="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <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="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <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="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <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="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation type="unfinished"><Cochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation type="unfinished"><Décochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation type="unfinished"><Rafraichir></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished">Impossible de renommer %1 en %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation type="unfinished">Échec de lecture %1: %2</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <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="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <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="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation type="unfinished">Activer Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation type="unfinished"><Tous></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4007"/> <source>Delete</source> - <translation type="unfinished">Supprimer</translation> + <translation type="obsolete">Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <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="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation type="unfinished">Choisir un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation>Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2872,7 +2888,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -3186,227 +3202,227 @@ p, li { white-space: pre-wrap; } <translation>Fermer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&Renommer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&Ouvrir</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation type="unfinished">Enregistrer les changements?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>Un fichier du même nom existe</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>impossible de déplacer le fchier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>Impossible de créer le dossier "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>Info demandée, veuillez patienter</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>Principal</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>Mise-à-jour</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>Optionnel</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>Ancien</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>Divers</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>Inconnu</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>Version courante: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>Aucune mise-à-jour disponible</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Visiter sur Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>impossible d'effacer %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>Confirmer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>Impossible de créer "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation type="unfinished">Impossible de renommer %1 en %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation>Nom</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3414,7 +3430,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3422,7 +3438,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3430,18 +3446,18 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3449,52 +3465,52 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation type="unfinished"></translation> </message> @@ -3503,113 +3519,113 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Version installée: %1, dernière version: %2</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation>Nom incorrect</translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>Confirmer</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation>Nom du mod</translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>Priorité</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation type="unfinished">IDs Nexus</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation type="unfinished">Inconnu</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Version du mod (si disponible)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure.</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3821,17 +3837,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Auteur</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">Description</translation> </message> @@ -3841,22 +3857,22 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4422,18 +4438,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <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="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>impossible d'analyser le profil %1: %2</translation> </message> @@ -4478,14 +4494,14 @@ p, li { white-space: pre-wrap; } <translation>Erreur</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>mauvais format de fichier</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>impossible d'ouvrir %1</translation> </message> @@ -4500,17 +4516,17 @@ p, li { white-space: pre-wrap; } <translation>DLL par procuration</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>impossible de lancer "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4520,22 +4536,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>impossible de lancer "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" inexistant</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>impossible d'injecter le DLL dans "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>impossible de lancer "%1"</translation> </message> @@ -4765,12 +4781,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation type="unfinished"></translation> </message> @@ -5417,26 +5433,26 @@ On Windows XP: <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index f9e9b493..0dec4291 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -1390,7 +1390,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation>Фильтр по имени</translation> </message> @@ -1576,8 +1576,8 @@ BSA, отмеченные здесь, загружаются так, чтобы </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation>Обновить</translation> </message> @@ -1625,12 +1625,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Если вы выберете в контекстном меню пункт &quot;Исправить моды...&quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation>Загрузки</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>Список модов, загруженных с Nexus. Двойной клик для установки.</translation> </message> @@ -1639,145 +1639,145 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Компактно</translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation>Показывать скрытые</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation>Установить мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation>Установить &мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation>Установить новый мод из архива</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation>&Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation>Настройка профилей</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation>Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation>&Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>Настройка программ, которые могут быть запущены через Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation>&Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation>Настройка параметров и способов обхода</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation>Поиск дополнительных модов на Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer обновлен</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation>Проблем не обнаружено</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1788,211 +1788,211 @@ Right now this has very limited functionality</source> Прямо сейчас этот функционал сильно ограничен</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation>Одобрить MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation>Одобрить Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation>Рабочий стол</translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation>Меню Пуск</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation>Проблемы</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation>Есть возможные проблемы с вашей установкой</translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation>Кажется всё в порядке</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation>Справка по интерфейсу</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation>Wiki-документация</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation>Сообщить о проблеме</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation>Уроки</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation>О программе</translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation>О библиотеке Qt</translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation>не удалось сохранить порядок загрузки: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation>не удалось создать профиль: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation>Показать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation>Загрузки в процессе</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation> </message> <message> - <location filename="mainwindow.cpp" line="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation>не удалось прочесть сохранение: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation>Плагин "%1" не удалось: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation>Плагин "%1" не удалось</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation>не удалось инициализировать плагин %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation>Ошибка плагина</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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>Кажется, что при последнем запуске не удалось загрузить плагин "%1" и это привело к падению MO. Вы хотите отключить его? (Замечание: Если это первый раз, когда вы видите такое сообщение для этого плагина, вероятно вы захотите сделать ещё одну попытка. Плагин может восстановиться после проблемы)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation>Не удалось запустить "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation>Ожидание</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation>Также в: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation>Конфликтов нет</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation><Правка...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>Этот bsa подключен через ini, так что он может быть необходим!</translation> </message> @@ -2001,237 +2001,246 @@ Right now this has very limited functionality</source> <translation type="obsolete">Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation> </message> <message> - <location filename="mainwindow.cpp" line="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation>Подключение сетевого прокси</translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation>Установка завершена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation>Настройка мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation>мод "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation>Установка отменена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation>Мод не был установлен полностью.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation>Подключено слишком много esp и esm</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation>Описание отсутствует</translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> <translation>Следующие плагины не могут быть загружены. Причина возможно в отсутствующих зависимостях (таких как python) или в устаревшей версии:</translation> </message> <message> - <location filename="mainwindow.cpp" line="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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>Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation>Выберете мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation>Архив мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation>Начать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation>Загрузка начата</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation>не удалось обновить список модов: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation>не удалось вызвать notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation>Исполняемый файл "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation>Не удалось обновить список esp: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation>не удалось переместить "%1" из мода "%2" в "%3": %4</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation><Подключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation><Отключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation><Обновлен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation><Без категории></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation><Конфликтует></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation><Не одобрено></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation>не удалось переименовать мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation>Перезаписать?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation>не удалось удалить мод "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Удалить следующие моды?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation>не удалось удалить мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation>Неудача</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation>Установочный файл больше не существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation>Распаковать BSA</translation> </message> @@ -2242,634 +2251,647 @@ Right now this has very limited functionality</source> (Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation>не удалось прочесть %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID для этого мода неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation>Создать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name:</source> <translation>Это переместит все файлы из перезаписи в новый, стандартный мод. Пожалуйста введите имя:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation>Мод с таким именем уже существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation>Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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>Схема управления версиями принимает решение, какая версия считается новее другой. Функция может попробовать угадать схему управления версиями, при условии, что установленная версия является устаревшей.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation>Извините</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation>Мне неизвестна схема управления версиями, где %1 новее %2.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation>Действительно подключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation>Действительно отключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation>Выберете, что экспортировать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation>Всё</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation>Все установленные моды, включенные в список</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation>Активные моды</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Включены все активные (подключенные) моды вашего текущего профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation>Видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation>Включены все моды, видимые в списке модов</translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation>экспорт не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation>Установить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation>Включить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation>Отключить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation>Проверить все на обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation>Экспорт в csv...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation>Синхронизировать с модами...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation>Восстановить из резервной копии</translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation>Удалить резервную копию...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation>Добавить/Удалить категории</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation>Заменить категории</translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation>Изменить схему управления версиями</translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation>Снять игнорирование обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation>Игнорировать обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation>Переименовать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation>Удалить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation>Переустановить мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation>Отменить одобрение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation>Статус одобрения неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation>Игнорировать отсутствующие данные</translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation>Перейти на Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation>Открыть в проводнике</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation>Информация...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation>Исключение: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation>Неизвестное исключение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation><Все></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation><Несколько></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="3895"/> <source>Really delete "%1"?</source> - <translation>Действительно удалить "%1"?</translation> + <translation type="obsolete">Действительно удалить "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation>Исправить моды...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4007"/> <source>Delete</source> - <translation>Удалить</translation> + <translation type="obsolete">Удалить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation>Загрузка не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation>ошибка записи в файл %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation>%1 записан</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation>Выберете исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation>Исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation>Введите имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation>Введите название для программы</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation>Не является исполняемым</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation>Это неверный исполняемый файл.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Уже существует скрытая версия этого файла. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation>Операция с файлом не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation>файл не найден: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation>не удалось получить предосмотр для %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation>Невозможно получить предосмотр чего-либо. Функция на данный момент не поддерживает извлечение из bsa.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation>Открыть/Выполнить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation>Добавить как исполняемый</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation>Предосмотр</translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation>Записать в файл...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation>Запрос на Nexus не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation>успешный вход</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation>войти не удалось: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation>не удалось распаковать %1 (код ошибки %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation>Распаковать...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation>Изменить категории...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation>Удалить</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation>Включить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation>Отключить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation>Снять фиксацию порядка загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation>Зафиксировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2903,7 +2925,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation>Это резервная копия мода</translation> </message> @@ -3224,227 +3246,227 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Закрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&Удалить</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&Переименовать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&Скрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&Показать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation type="unfinished">&Открыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&Новая папка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>Сохранить изменения?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation>Сохранить изменения в "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>Файл уже существует</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>Файл с таким именем уже существует, укажите другое</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>не удалось переместить файл</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>не удалось создать папку "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>Информация запрошена, пожалуйста, подождите</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>Главное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>Опционально</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>Старые</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>Разное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>Неизвестно</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>Текущая версия: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>Нет доступных обновлений</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(описание не завершено, смотрите на nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Перейти на Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation type="unfinished">Не удалось удалить %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>Вы уверены, что хотите удалить выбранные файлы?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>Новая папка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>Не удалось создать "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Скрытая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>Не удалась операция с файлом</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>не удалось переименовать %1 в %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation>Имя</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation>Пожалуйста, введите имя</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation>Неверное имя. Необходимо допустимое имя файла.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation>Настройка с таким именем существует</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation>Создать настройку</translation> </message> @@ -3452,7 +3474,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3460,7 +3482,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation>Этот псевдо-мод содержит файлы из виртуального древа данных, которые были изменены (в Construction Kit и других программах)</translation> </message> @@ -3472,18 +3494,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">не удалось записать %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation>%1 не содержит ни esp/esm, ни папок ресурсов (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> @@ -3491,164 +3513,164 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Эта запись включает файлы, которые были созданы внутри виртуального древа (с помощью Construction Kit и др. программ)</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation>Резервная копия</translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation>Неверные игровые данные</translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation>Еще не одобрено</translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation>Заменяет файлы</translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation>Замененные файлы</translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation>Заменяет и заменяется</translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation>Избыточные</translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation>неверные</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <oldsource>installed version: %1, newest version: %2</oldsource> <translation>установлена версия: %1, новейшая версия: %2</translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation>Новейшая версия на Nexus кажется старее той, что установлена у вас. Это может означать, что ваша версия была снята (в связи с ошибкой и т.п.) или автор использует нестандартную схему версий, а новейшая версия на самом деле выше. В любом случае, вы можете "обновить".</translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation>Недопустимое имя</translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation>перетаскивание не удалось: %1</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>Вы действительно хотите удалить "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation>Флаги</translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation>Имя мода</translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation type="unfinished">Версия</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation>Категория</translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation>Nexus ID</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation>Установка</translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation>неизвестный</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation>Имя ваших модов</translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Версия мода (если доступно)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим.</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation>Категория мода.</translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation>ID мода, используемый на Nexus.</translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation>Выделяет подсветкой вещи, которые могут потребовать внимания.</translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation>Время, когда мод был установлен.</translation> </message> @@ -3865,17 +3887,17 @@ p, li { white-space: pre-wrap; } <translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Автор</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">Описание</translation> </message> @@ -3884,7 +3906,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">BOSS dll несовместим</translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation> </message> @@ -3893,17 +3915,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Источник: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation>Отсутствующие мастерфайлы</translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation>Подключенные мастерфайлы</translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation>не удалось восстановить порядок загрузки для %1</translation> </message> @@ -4473,18 +4495,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><Управлять...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>не удалось обработать профиль %1: %2</translation> </message> @@ -4526,14 +4548,14 @@ p, li { white-space: pre-wrap; } <translation>Ошибка</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>неверный формат файла</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> @@ -4548,17 +4570,17 @@ p, li { white-space: pre-wrap; } <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>не удалось вызвать "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation>Требуется повышение прав</translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4573,22 +4595,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе)</translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>не удалось вызвать "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" не существует</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>не удалось подключить dll к "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>не удалось запустить "%1"</translation> </message> @@ -4818,12 +4840,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>попытка сохранить настройку для неизвестного плагина "%1"</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Изменение каталога для модов отразится на всех ваших профилях. Нельзя будет отменить это, если только вы не сохранили резервные копии ваших профилей вручную. Продолжить?</translation> </message> @@ -5497,26 +5519,26 @@ On Windows XP: <translation>Перезаписать файл "%1"</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation>Скопировать все игры с персонажем "%1" в профиль?</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Переместить все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation>Скопировать все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений.</translation> </message> diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index 73942e96..4b3be328 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -1394,7 +1394,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1501,8 +1501,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -1544,12 +1544,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished"></translation> </message> @@ -1596,145 +1596,145 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1742,1075 +1742,1085 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <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="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <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="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <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="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <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="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <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="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation type="unfinished">%1: %2 okunamadı</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <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="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <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="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="mainwindow.cpp" line="4007"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2836,7 +2846,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -3137,227 +3147,227 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Kapat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation type="unfinished">&Aç</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3365,7 +3375,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3373,7 +3383,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3381,18 +3391,18 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3400,163 +3410,163 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3768,17 +3778,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">Yaratıcı</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished"></translation> </message> @@ -3788,22 +3798,22 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4356,18 +4366,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <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="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> @@ -4408,14 +4418,14 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> @@ -4430,17 +4440,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4450,22 +4460,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation type="unfinished"></translation> </message> @@ -4695,12 +4705,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation type="unfinished"></translation> </message> @@ -5326,26 +5336,26 @@ On Windows XP: <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 333d9ce7..291be657 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -1404,7 +1404,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation>名称过滤器</translation> </message> @@ -1531,8 +1531,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation>刷新</translation> </message> @@ -1580,12 +1580,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation>下载</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>这是从Nexus已下载的模组的列表,双击进行安装。</translation> </message> @@ -1636,145 +1636,145 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation>安装模组</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation type="unfinished">安装 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation>通过压缩包来安装一个新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation>配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation type="unfinished">&配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation type="unfinished">设置配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation>可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation type="unfinished">&可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>配置可通过 MO 来启动的程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation>设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation type="unfinished">&设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置设定和解决方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation>搜索nexus网以获取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer 现在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1785,84 +1785,84 @@ Right now this has very limited functionality</source> 当前此项所能提供的功能非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation>称赞 MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation>称赞 Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation>桌面</translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation>开始菜单</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation>您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation>报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation>教程</translation> </message> @@ -1871,88 +1871,88 @@ Right now this has very limited functionality</source> <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation>名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation>请为新配置文件输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation>显示教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation>正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>仍有正在进行中的下载,您确定要退出吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished">插件 "%1" 失败: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation type="unfinished">插件 "%1" 失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished">插件初始化失败 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation>当您登录 Steam 时请点击确定。</translation> </message> @@ -1961,32 +1961,32 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation>启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation>没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>该 BSA 已在 ini 文件中启用,因此它可能是必需的。</translation> </message> @@ -1995,222 +1995,229 @@ Right now this has very limited functionality</source> <translation type="obsolete">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation>激活网络代理</translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation>安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation>配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>此 Mod 中包含 ini 设定文件,您想现在就对它们进行配置吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation>安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation>该模组没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation>一些插件无法载入</translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <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="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation>选择模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation>开始教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation>开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation type="unfinished"><有冲突></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation>覆盖</translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished">这将会覆盖已存在的mod "%1"。是否继续?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation>重命名 "%1 "为 "%2" 时出错</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>多个esp已激活,请检查以确保不冲突。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished">是否删除下列mod?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation>你必须登录 Nexus 才能点“称赞”</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation>解压 BSA</translation> </message> @@ -2221,657 +2228,660 @@ Right now this has very limited functionality</source> (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation>此模组的Nexus ID未知</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation>创建Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <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="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation>同名模组已存在。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <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="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation>确定要启用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation>确定要禁用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation>选择要导出的内容</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation type="unfinished">全部</translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation type="unfinished">所有包含在列表的已安装mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation>激活模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation>仅包含当前配置文件中已激活(打勾)的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation type="unfinished">可见的</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished">包含列表中所有可见的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation type="unfinished">导出失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation>安装模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation>启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation>禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation>检查所有更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation>导出为 CSV...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation>还原备份</translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation type="unfinished">还原备份...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation>主分类</translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation>重命名模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation>移除模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation>重新安装模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation>取消称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation>称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation>不想称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation>称赞状态不明</translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation>忽略丢失的数据</translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation>在Nexus上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation>在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation type="unfinished">XX</translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation>修复模组...</translation> </message> - <message> - <location filename="mainwindow.cpp" line="4007"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation>下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation>下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation>程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation>输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation>请为该可执行程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation>文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation>更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation>打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation>添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation>取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation>隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished">是否现在就在 %1 点赞支持 Mod Organizer?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished">发往 Nexus 的请求失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation>登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation>无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation>解压...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation>编辑类别...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation>移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation>全部启用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation>全部禁用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation>解锁加载顺序</translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation>锁定加载顺序</translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2897,7 +2907,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation>这是模组的备份</translation> </message> @@ -3211,227 +3221,227 @@ p, li { white-space: pre-wrap; } <translation>关闭</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&删除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&重命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&打开</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>保存更改吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation type="unfinished">将更改保存到“%1%”吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>文件已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>文件名已存在,请输入其它名称</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>无法移动文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>无法创建 "optional" 目录</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>请求信息已发出,请稍后</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>主要文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>可选文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>旧档</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>杂项</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>当前版本: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>没有可用的更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(描述信息不完整,请访问N网)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">访问N网</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>确定要删除 "%1" 吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>确定要删除所选的文件吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>无法创建 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>替换文件?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>文件操作错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>无法重命名 %1 为 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation>名称</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3439,7 +3449,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3447,7 +3457,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> </message> @@ -3459,18 +3469,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">无法写入 %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation type="unfinished">种类: <br></translation> </message> @@ -3478,52 +3488,52 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此项目内检测到了虚拟 Data 树的文件发生了变化 (例如: 被 CK 修改了)</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation>备份</translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation>无效游戏数据</translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation>尚未点赞支持</translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation type="unfinished">Overwrites文件</translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation type="unfinished">覆盖的 Mod</translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation>覆盖 & 被覆盖</translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation type="unfinished">冗余</translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation>无效</translation> </message> @@ -3532,113 +3542,113 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">当前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>种类: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation>无效的名称</translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation type="unfinished">拖拽失败: %1</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>确定要移除 "%1" 吗?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation type="unfinished">标志</translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation>Mod 名称</translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>优先级</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation>分类</translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation>Nexus网 ID</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation type="unfinished">安装</translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation>未知</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation>你的mod名称</translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation>mod的分类</translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation>mod在 Nexus 网上的ID编号</translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished">需要注意被标记为高亮的</translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3850,17 +3860,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">作者</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">描述</translation> </message> @@ -3874,7 +3884,7 @@ p, li { white-space: pre-wrap; } <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>这个插件不能被禁用 (由游戏执行)</translation> </message> @@ -3883,17 +3893,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">隶属于: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation type="unfinished">恢复 %1 加载顺序失败</translation> </message> @@ -4459,18 +4469,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> @@ -4515,14 +4525,14 @@ p, li { white-space: pre-wrap; } <translation>错误</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>错误的文件格式</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>无法打开 %1</translation> </message> @@ -4537,17 +4547,17 @@ p, li { white-space: pre-wrap; } <translation>代理DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>无法生成 "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4557,22 +4567,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>无法生成 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" 不存在</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>无法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>无法运行 "%1"</translation> </message> @@ -4802,12 +4812,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation> </message> @@ -5462,26 +5472,26 @@ On Windows XP: <translation type="unfinished">覆盖文件 "%1"</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation type="unfinished">是否复制角色 "%1" 的所有游戏存档到这个配置中?</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished">是否移动角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished">是否拷贝角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index b7e4a346..9d767b3d 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -1404,7 +1404,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="495"/> <location filename="mainwindow.ui" line="876"/> - <location filename="mainwindow.ui" line="1214"/> + <location filename="mainwindow.ui" line="1220"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1531,8 +1531,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="1016"/> - <location filename="mainwindow.cpp" line="3754"/> - <location filename="mainwindow.cpp" line="4619"/> + <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="4672"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> @@ -1580,12 +1580,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="1109"/> + <location filename="mainwindow.ui" line="1115"/> <source>Downloads</source> <translation type="unfinished">下載</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> + <location filename="mainwindow.ui" line="1147"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation> </message> @@ -1636,145 +1636,145 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1194"/> + <location filename="mainwindow.ui" line="1200"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1262"/> <source>Tool Bar</source> <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install Mod</source> <translation type="unfinished">安裝 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1307"/> <source>Install &Mod</source> <translation type="unfinished">安裝 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1304"/> + <location filename="mainwindow.ui" line="1310"/> <source>Install a new mod from an archive</source> <translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1307"/> + <location filename="mainwindow.ui" line="1313"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1322"/> <source>Profiles</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1319"/> + <location filename="mainwindow.ui" line="1325"/> <source>&Profiles</source> <translation type="unfinished">&配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1322"/> + <location filename="mainwindow.ui" line="1328"/> <source>Configure Profiles</source> <translation type="unfinished">設定配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1325"/> + <location filename="mainwindow.ui" line="1331"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1334"/> + <location filename="mainwindow.ui" line="1340"/> <source>Executables</source> <translation type="unfinished">可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1337"/> + <location filename="mainwindow.ui" line="1343"/> <source>&Executables</source> <translation type="unfinished">&可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1340"/> + <location filename="mainwindow.ui" line="1346"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">配置可通過 MO 來啟動的程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1349"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1352"/> <location filename="mainwindow.ui" line="1358"/> + <location filename="mainwindow.ui" line="1364"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1355"/> + <location filename="mainwindow.ui" line="1361"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1370"/> + <location filename="mainwindow.ui" line="1376"/> <source>Settings</source> <translation type="unfinished">設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1379"/> <source>&Settings</source> <translation type="unfinished">&設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> + <location filename="mainwindow.ui" line="1382"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置設定和解決方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.ui" line="1385"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1388"/> + <location filename="mainwindow.ui" line="1394"/> <source>Nexus</source> <translation type="unfinished">N網</translation> </message> <message> - <location filename="mainwindow.ui" line="1391"/> + <location filename="mainwindow.ui" line="1397"/> <source>Search nexus network for more mods</source> <translation type="unfinished">搜尋N網以獲取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1394"/> + <location filename="mainwindow.ui" line="1400"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1406"/> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.ui" line="1412"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1409"/> + <location filename="mainwindow.ui" line="1415"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer 現在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1421"/> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.ui" line="1427"/> + <location filename="mainwindow.cpp" line="565"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> <message> - <location filename="mainwindow.ui" line="1424"/> + <location filename="mainwindow.ui" line="1430"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1785,84 +1785,84 @@ Right now this has very limited functionality</source> 當前此功能所能提供的項目非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1436"/> - <location filename="mainwindow.ui" line="1439"/> + <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1445"/> <source>Help</source> <translation type="unfinished">幫助</translation> </message> <message> - <location filename="mainwindow.ui" line="1442"/> + <location filename="mainwindow.ui" line="1448"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1451"/> + <location filename="mainwindow.ui" line="1457"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1454"/> - <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.ui" line="1460"/> + <location filename="mainwindow.cpp" line="4695"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1459"/> + <location filename="mainwindow.ui" line="1465"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1462"/> + <location filename="mainwindow.ui" line="1468"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="244"/> + <location filename="mainwindow.cpp" line="247"/> <source>Toolbar</source> <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.cpp" line="245"/> + <location filename="mainwindow.cpp" line="248"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="246"/> + <location filename="mainwindow.cpp" line="249"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="553"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="550"/> + <location filename="mainwindow.cpp" line="554"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="562"/> + <location filename="mainwindow.cpp" line="566"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="627"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="624"/> + <location filename="mainwindow.cpp" line="631"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="628"/> + <location filename="mainwindow.cpp" line="635"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="632"/> + <location filename="mainwindow.cpp" line="639"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1871,88 +1871,88 @@ Right now this has very limited functionality</source> <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="766"/> + <location filename="mainwindow.cpp" line="773"/> <source>failed to save load order: %1</source> <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="778"/> + <location filename="mainwindow.cpp" line="785"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="779"/> + <location filename="mainwindow.cpp" line="786"/> <source>Please enter a name for the new profile</source> <translation>請為新配置檔案輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="787"/> + <location filename="mainwindow.cpp" line="794"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="837"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="831"/> + <location filename="mainwindow.cpp" line="838"/> <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="862"/> + <location filename="mainwindow.cpp" line="869"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="863"/> + <location filename="mainwindow.cpp" line="870"/> <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="917"/> + <location filename="mainwindow.cpp" line="924"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1041"/> + <location filename="mainwindow.cpp" line="1048"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1043"/> + <location filename="mainwindow.cpp" line="1050"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1220"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1250"/> + <location filename="mainwindow.cpp" line="1258"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1259"/> <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="1310"/> + <location filename="mainwindow.cpp" line="1318"/> <source>Failed to start "%1"</source> <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1312"/> + <location filename="mainwindow.cpp" line="1320"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> @@ -1961,32 +1961,32 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1346"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1347"/> <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="1525"/> + <location filename="mainwindow.cpp" line="1557"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1536"/> + <location filename="mainwindow.cpp" line="1568"/> <source>No conflict</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1705"/> + <location filename="mainwindow.cpp" line="1737"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1971"/> + <location filename="mainwindow.cpp" line="2003"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> </message> @@ -1995,222 +1995,229 @@ Right now this has very limited functionality</source> <translation type="obsolete">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="2033"/> + <location filename="mainwindow.cpp" line="2065"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2274"/> - <location filename="mainwindow.cpp" line="4263"/> + <location filename="mainwindow.cpp" line="2305"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> - <location filename="mainwindow.cpp" line="4275"/> + <location filename="mainwindow.cpp" line="2316"/> + <location filename="mainwindow.cpp" line="4328"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2286"/> - <location filename="mainwindow.cpp" line="4276"/> + <location filename="mainwindow.cpp" line="2317"/> + <location filename="mainwindow.cpp" line="4329"/> <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="2293"/> - <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="2324"/> + <location filename="mainwindow.cpp" line="4336"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2296"/> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="2327"/> + <location filename="mainwindow.cpp" line="4342"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2201"/> + <location filename="mainwindow.cpp" line="2232"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2204"/> + <location filename="mainwindow.cpp" line="2235"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> - <location filename="mainwindow.cpp" line="2228"/> + <location filename="mainwindow.cpp" line="2238"/> + <location filename="mainwindow.cpp" line="2259"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2216"/> + <location filename="mainwindow.cpp" line="2247"/> <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="2224"/> + <location filename="mainwindow.cpp" line="2255"/> <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="2250"/> + <location filename="mainwindow.cpp" line="2281"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2251"/> + <location filename="mainwindow.cpp" line="2282"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2505"/> + <location filename="mainwindow.cpp" line="2536"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2506"/> + <location filename="mainwindow.cpp" line="2537"/> <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="2650"/> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="2681"/> + <location filename="mainwindow.cpp" line="4241"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2742"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2742"/> + <location filename="mainwindow.cpp" line="2773"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2810"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2854"/> + <location filename="mainwindow.cpp" line="2885"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2964"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2934"/> + <location filename="mainwindow.cpp" line="2965"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2935"/> + <location filename="mainwindow.cpp" line="2966"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2969"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="2970"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2940"/> + <location filename="mainwindow.cpp" line="2971"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2973"/> + <location filename="mainwindow.cpp" line="3004"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="3017"/> <source>Overwrite?</source> <translation type="unfinished">覆蓋</translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="3018"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3021"/> <source>failed to remove mod "%1"</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2994"/> - <location filename="mainwindow.cpp" line="4461"/> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="4538"/> <source>failed to rename "%1" to "%2"</source> <translation>重新命名 "%1 "為 "%2" 時出錯</translation> </message> <message> - <location filename="mainwindow.cpp" line="3019"/> + <location filename="mainwindow.cpp" line="3050"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3048"/> - <location filename="mainwindow.cpp" line="3667"/> - <location filename="mainwindow.cpp" line="3675"/> - <location filename="mainwindow.cpp" line="3895"/> + <location filename="mainwindow.cpp" line="3094"/> + <location filename="mainwindow.cpp" line="3713"/> + <location filename="mainwindow.cpp" line="3721"/> + <location filename="mainwindow.cpp" line="3948"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="3049"/> + <location filename="mainwindow.cpp" line="3095"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3060"/> + <location filename="mainwindow.cpp" line="3106"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> - <location filename="mainwindow.cpp" line="3098"/> + <location filename="mainwindow.cpp" line="3141"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="3095"/> + <location filename="mainwindow.cpp" line="3141"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3099"/> + <location filename="mainwindow.cpp" line="3145"/> <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="3130"/> - <location filename="mainwindow.cpp" line="3157"/> + <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3203"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="3948"/> + <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4941"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> @@ -2221,657 +2228,664 @@ Right now this has very limited functionality</source> (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4845"/> - <location filename="mainwindow.cpp" line="4896"/> + <location filename="mainwindow.cpp" line="4898"/> + <location filename="mainwindow.cpp" line="4949"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="4907"/> + <location filename="mainwindow.cpp" line="4960"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3303"/> + <location filename="mainwindow.cpp" line="3349"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> <message> - <location filename="mainwindow.cpp" line="671"/> + <location filename="mainwindow.cpp" line="678"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="672"/> + <location filename="mainwindow.cpp" line="679"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1093"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1094"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1128"/> + <location filename="mainwindow.cpp" line="1135"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1324"/> + <location filename="mainwindow.cpp" line="1332"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1834"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2148"/> - <location filename="mainwindow.cpp" line="2155"/> + <location filename="mainwindow.cpp" line="2179"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2149"/> - <location filename="mainwindow.cpp" line="2156"/> + <location filename="mainwindow.cpp" line="2180"/> + <location filename="mainwindow.cpp" line="2187"/> <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2152"/> + <location filename="mainwindow.cpp" line="2183"/> <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2153"/> + <location filename="mainwindow.cpp" line="2184"/> <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2154"/> + <location filename="mainwindow.cpp" line="2185"/> <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="2915"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2936"/> + <location filename="mainwindow.cpp" line="2967"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2968"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3114"/> + <location filename="mainwindow.cpp" line="3160"/> <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> - <location filename="mainwindow.cpp" line="3782"/> + <location filename="mainwindow.cpp" line="3388"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3389"/> <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="3352"/> + <location filename="mainwindow.cpp" line="3398"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3593"/> + <location filename="mainwindow.cpp" line="3639"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3640"/> <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="3614"/> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="3660"/> + <location filename="mainwindow.cpp" line="4584"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3661"/> <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="3667"/> + <location filename="mainwindow.cpp" line="3713"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3721"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="3729"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3685"/> + <location filename="mainwindow.cpp" line="3731"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Active Mods</source> <translation type="unfinished">激活 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3732"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3733"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3776"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3747"/> + <location filename="mainwindow.cpp" line="3793"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3752"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3821"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3827"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3832"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3836"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3841"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3800"/> + <location filename="mainwindow.cpp" line="3846"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3807"/> + <location filename="mainwindow.cpp" line="3853"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3811"/> + <location filename="mainwindow.cpp" line="3857"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3813"/> + <location filename="mainwindow.cpp" line="3859"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3818"/> + <location filename="mainwindow.cpp" line="3864"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3865"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3820"/> + <location filename="mainwindow.cpp" line="3866"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3823"/> + <location filename="mainwindow.cpp" line="3869"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="3872"/> + <location filename="mainwindow.cpp" line="3876"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3873"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3833"/> + <location filename="mainwindow.cpp" line="3879"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3840"/> + <location filename="mainwindow.cpp" line="3886"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3843"/> + <location filename="mainwindow.cpp" line="3889"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3844"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3894"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="5159"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3857"/> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="3903"/> + <location filename="mainwindow.cpp" line="5161"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3876"/> + <location filename="mainwindow.cpp" line="3922"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="3878"/> + <location filename="mainwindow.cpp" line="3924"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3895"/> - <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4006"/> + <location filename="mainwindow.cpp" line="4060"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> + <message numerus="yes"> + <location filename="mainwindow.cpp" line="4062"/> + <source>Delete %n save(s)</source> + <oldsource>Delete save(s)</oldsource> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> <message> - <location filename="mainwindow.cpp" line="4007"/> <source>Delete</source> - <translation type="unfinished">&刪除</translation> + <translation type="obsolete">&刪除</translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4089"/> + <location filename="mainwindow.cpp" line="4122"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4049"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.cpp" line="4106"/> + <location filename="mainwindow.cpp" line="4138"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4162"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4187"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="4338"/> + <location filename="mainwindow.cpp" line="4391"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4397"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4383"/> + <location filename="mainwindow.cpp" line="4436"/> <source>Binary</source> <translation>程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4462"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4463"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4474"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4499"/> + <location filename="mainwindow.cpp" line="4524"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4446"/> + <location filename="mainwindow.cpp" line="4499"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> - <location filename="mainwindow.cpp" line="4474"/> + <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4527"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4471"/> + <location filename="mainwindow.cpp" line="4524"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4557"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4517"/> + <location filename="mainwindow.cpp" line="4570"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4584"/> <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="4562"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4599"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4600"/> + <location filename="mainwindow.cpp" line="4653"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4610"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4612"/> + <location filename="mainwindow.cpp" line="4665"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4618"/> + <location filename="mainwindow.cpp" line="4671"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4643"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4792"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4781"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.cpp" line="4834"/> + <location filename="mainwindow.cpp" line="4852"/> <source>login successful</source> <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4808"/> + <location filename="mainwindow.cpp" line="4861"/> <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="4867"/> <source>login failed: %1</source> <translation>無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4877"/> <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="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4857"/> + <location filename="mainwindow.cpp" line="4910"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4952"/> + <location filename="mainwindow.cpp" line="5005"/> <source>Extract...</source> <translation type="unfinished">解壓...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5067"/> <source>Edit Categories...</source> <translation type="unfinished">編輯類別...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5015"/> + <location filename="mainwindow.cpp" line="5068"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5066"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Remove</source> <translation type="unfinished">移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5130"/> <source>Enable all</source> <translation type="unfinished">全部啟用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5131"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> <message> - <location filename="mainwindow.cpp" line="5097"/> + <location filename="mainwindow.cpp" line="5150"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5153"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5285"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5249"/> + <location filename="mainwindow.cpp" line="5305"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5297"/> + <location filename="mainwindow.cpp" line="5353"/> <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5343"/> + <location filename="mainwindow.cpp" line="5429"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5350"/> + <location filename="mainwindow.cpp" line="5435"/> + <source>failed to start loot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5438"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5353"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5401"/> + <location filename="mainwindow.cpp" line="5489"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5411"/> + <location filename="mainwindow.cpp" line="5499"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5424"/> + <location filename="mainwindow.cpp" line="5512"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5445"/> - <location filename="mainwindow.cpp" line="5466"/> + <location filename="mainwindow.cpp" line="5533"/> + <location filename="mainwindow.cpp" line="5554"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> - <location filename="mainwindow.cpp" line="5467"/> + <location filename="mainwindow.cpp" line="5534"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5457"/> + <location filename="mainwindow.cpp" line="5545"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> @@ -2897,7 +2911,7 @@ This function will guess the versioning scheme under the assumption that the ins <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="898"/> + <location filename="modinfo.cpp" line="903"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -3211,227 +3225,227 @@ p, li { white-space: pre-wrap; } <translation>關閉</translation> </message> <message> - <location filename="modinfodialog.cpp" line="166"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Delete</source> <translation>&刪除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="167"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&Rename</source> <translation>&重新命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="168"/> + <location filename="modinfodialog.cpp" line="171"/> <source>&Hide</source> <translation>&隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="169"/> + <location filename="modinfodialog.cpp" line="172"/> <source>&Unhide</source> <translation>&取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="170"/> + <location filename="modinfodialog.cpp" line="173"/> <source>&Open</source> <translation>&開啟</translation> </message> <message> - <location filename="modinfodialog.cpp" line="171"/> + <location filename="modinfodialog.cpp" line="174"/> <source>&New Folder</source> <translation>&新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes?</source> <translation>儲存更改嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="417"/> - <location filename="modinfodialog.cpp" line="432"/> + <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="435"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>File Exists</source> <translation>檔案已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="622"/> + <location filename="modinfodialog.cpp" line="625"/> <source>A file with that name exists, please enter a new one</source> <translation>檔案名已存在,請輸入其它名稱</translation> </message> <message> - <location filename="modinfodialog.cpp" line="639"/> + <location filename="modinfodialog.cpp" line="642"/> <source>failed to move file</source> <translation>無法移動檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="664"/> + <location filename="modinfodialog.cpp" line="667"/> <source>failed to create directory "optional"</source> <translation>無法建立 "optional" 目錄</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> - <location filename="modinfodialog.cpp" line="1207"/> + <location filename="modinfodialog.cpp" line="705"/> + <location filename="modinfodialog.cpp" line="1210"/> <source>Info requested, please wait</source> <translation>請求訊息已發出,請稍後</translation> </message> <message> - <location filename="modinfodialog.cpp" line="756"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Main</source> <translation>主要檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="757"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="761"/> <source>Optional</source> <translation>可選檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="759"/> + <location filename="modinfodialog.cpp" line="762"/> <source>Old</source> <translation>舊檔</translation> </message> <message> - <location filename="modinfodialog.cpp" line="760"/> + <location filename="modinfodialog.cpp" line="763"/> <source>Misc</source> <translation>雜項</translation> </message> <message> - <location filename="modinfodialog.cpp" line="761"/> + <location filename="modinfodialog.cpp" line="764"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Current Version: %1</source> <translation>當前版本: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="776"/> + <location filename="modinfodialog.cpp" line="779"/> <source>No update available</source> <translation>沒有可用的更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="817"/> + <location filename="modinfodialog.cpp" line="820"/> <source>(description incomplete, please visit nexus)</source> <translation>(描述訊息不完整,請訪問N網)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="832"/> + <location filename="modinfodialog.cpp" line="835"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">訪問N網</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="911"/> + <location filename="modinfodialog.cpp" line="914"/> <source>Failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="925"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="modinfodialog.cpp" line="922"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Are sure you want to delete "%1"?</source> <translation>確定要刪除 "%1" 嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="927"/> + <location filename="modinfodialog.cpp" line="930"/> <source>Are sure you want to delete the selected files?</source> <translation>確定要刪除所選的檔案嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1001"/> - <location filename="modinfodialog.cpp" line="1007"/> + <location filename="modinfodialog.cpp" line="1004"/> + <location filename="modinfodialog.cpp" line="1010"/> <source>New Folder</source> <translation>新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1013"/> + <location filename="modinfodialog.cpp" line="1016"/> <source>Failed to create "%1"</source> <translation>無法建立 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1120"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>Replace file?</source> <translation>取代檔案?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1117"/> + <location filename="modinfodialog.cpp" line="1120"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>File operation failed</source> <translation>檔案操作錯誤</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1120"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1123"/> + <location filename="modinfodialog.cpp" line="1147"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1157"/> <source>failed to rename %1 to %2</source> <translation>無法重新命名 %1 為 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1141"/> + <location filename="modinfodialog.cpp" line="1144"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1187"/> + <location filename="modinfodialog.cpp" line="1190"/> <source>Un-Hide</source> <translation>取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1189"/> + <location filename="modinfodialog.cpp" line="1192"/> <source>Hide</source> <translation>隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1230"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1234"/> + <location filename="modinfodialog.cpp" line="1237"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1237"/> + <location filename="modinfodialog.cpp" line="1240"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1251"/> + <location filename="modinfodialog.cpp" line="1254"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3439,7 +3453,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoForeign</name> <message> - <location filename="modinfo.cpp" line="987"/> + <location filename="modinfo.cpp" line="992"/> <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> @@ -3447,7 +3461,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="943"/> + <location filename="modinfo.cpp" line="948"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> </message> @@ -3459,18 +3473,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">無法寫入 %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="557"/> - <location filename="modinfo.cpp" line="560"/> + <location filename="modinfo.cpp" line="562"/> + <location filename="modinfo.cpp" line="565"/> <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="811"/> + <location filename="modinfo.cpp" line="816"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="815"/> + <location filename="modinfo.cpp" line="820"/> <source>Categories: <br></source> <translation type="unfinished">種類: <br></translation> </message> @@ -3478,52 +3492,52 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="109"/> + <location filename="modlist.cpp" line="110"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此項目內檢測到了虛擬 Data 樹的檔案發生了變化 (例如:被 CK 修改了)</translation> </message> <message> - <location filename="modlist.cpp" line="118"/> + <location filename="modlist.cpp" line="119"/> <source>Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="119"/> + <location filename="modlist.cpp" line="120"/> <source>No valid game data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="120"/> + <location filename="modlist.cpp" line="121"/> <source>Not endorsed yet</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="122"/> + <location filename="modlist.cpp" line="123"/> <source>Overwrites files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="123"/> + <location filename="modlist.cpp" line="124"/> <source>Overwritten files</source> <translation type="unfinished">覆蓋的 Mod</translation> </message> <message> - <location filename="modlist.cpp" line="124"/> + <location filename="modlist.cpp" line="125"/> <source>Overwrites & Overwritten</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="125"/> + <location filename="modlist.cpp" line="126"/> <source>Redundant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="170"/> + <location filename="modlist.cpp" line="171"/> <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="201"/> + <location filename="modlist.cpp" line="202"/> <source>invalid</source> <translation type="unfinished"></translation> </message> @@ -3532,113 +3546,113 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">當前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="314"/> + <location filename="modlist.cpp" line="324"/> <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="316"/> + <location filename="modlist.cpp" line="326"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="324"/> + <location filename="modlist.cpp" line="334"/> <source>Categories: <br></source> <translation>種類: <br></translation> </message> <message> - <location filename="modlist.cpp" line="353"/> + <location filename="modlist.cpp" line="363"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="747"/> + <location filename="modlist.cpp" line="764"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="modlist.cpp" line="810"/> + <location filename="modlist.cpp" line="827"/> <source>Are you sure you want to remove "%1"?</source> <translation>確定要移除 "%1" 吗?</translation> </message> <message> - <location filename="modlist.cpp" line="865"/> + <location filename="modlist.cpp" line="882"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="866"/> + <location filename="modlist.cpp" line="883"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="867"/> + <location filename="modlist.cpp" line="884"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="868"/> + <location filename="modlist.cpp" line="885"/> <source>Priority</source> <translation>優先級</translation> </message> <message> - <location filename="modlist.cpp" line="869"/> + <location filename="modlist.cpp" line="886"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="870"/> + <location filename="modlist.cpp" line="887"/> <source>Nexus ID</source> <translation type="unfinished">N網 ID</translation> </message> <message> - <location filename="modlist.cpp" line="871"/> + <location filename="modlist.cpp" line="888"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="872"/> - <location filename="modlist.cpp" line="888"/> + <location filename="modlist.cpp" line="889"/> + <location filename="modlist.cpp" line="905"/> <source>unknown</source> <translation type="unfinished">未知</translation> </message> <message> - <location filename="modlist.cpp" line="880"/> + <location filename="modlist.cpp" line="897"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="881"/> + <location filename="modlist.cpp" line="898"/> <source>Version of the mod (if available)</source> <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="882"/> + <location filename="modlist.cpp" line="899"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation> </message> <message> - <location filename="modlist.cpp" line="884"/> + <location filename="modlist.cpp" line="901"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="885"/> + <location filename="modlist.cpp" line="902"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="886"/> + <location filename="modlist.cpp" line="903"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="887"/> + <location filename="modlist.cpp" line="904"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3850,17 +3864,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="805"/> + <location filename="pluginlist.cpp" line="806"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="807"/> + <location filename="pluginlist.cpp" line="808"/> <source>Author</source> <translation type="unfinished">作者</translation> </message> <message> - <location filename="pluginlist.cpp" line="810"/> + <location filename="pluginlist.cpp" line="811"/> <source>Description</source> <translation type="unfinished">描述</translation> </message> @@ -3874,7 +3888,7 @@ p, li { white-space: pre-wrap; } <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation> </message> <message> - <location filename="pluginlist.cpp" line="803"/> + <location filename="pluginlist.cpp" line="804"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>這個插件不能被禁用 (由遊戲執行)</translation> </message> @@ -3883,17 +3897,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">隸屬於: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="813"/> + <location filename="pluginlist.cpp" line="814"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="820"/> + <location filename="pluginlist.cpp" line="821"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="975"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4459,18 +4473,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="843"/> + <location filename="mainwindow.cpp" line="850"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1612"/> - <location filename="mainwindow.cpp" line="4231"/> + <location filename="mainwindow.cpp" line="1644"/> + <location filename="mainwindow.cpp" line="4281"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1630"/> + <location filename="mainwindow.cpp" line="1662"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> @@ -4515,14 +4529,14 @@ p, li { white-space: pre-wrap; } <translation>錯誤</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> + <location filename="savegamegamebryo.cpp" line="130"/> + <location filename="savegamegamebryo.cpp" line="189"/> + <location filename="savegamegamebryo.cpp" line="231"/> <source>wrong file format</source> <translation>錯誤的檔案格式</translation> </message> <message> - <location filename="savegamegamebryo.cpp" line="326"/> + <location filename="savegamegamebryo.cpp" line="317"/> <source>failed to open %1</source> <translation>無法開啟 %1</translation> </message> @@ -4537,17 +4551,17 @@ p, li { white-space: pre-wrap; } <translation>代理DLL</translation> </message> <message> - <location filename="spawn.cpp" line="127"/> + <location filename="spawn.cpp" line="133"/> <source>failed to spawn "%1"</source> <translation>無法生成 "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="134"/> + <location filename="spawn.cpp" line="140"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="135"/> + <location filename="spawn.cpp" line="141"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4557,22 +4571,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="150"/> + <location filename="spawn.cpp" line="156"/> <source>failed to spawn "%1": %2</source> <translation>無法生成 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="159"/> + <location filename="spawn.cpp" line="165"/> <source>"%1" doesn't exist</source> <translation>"%1" 不存在</translation> </message> <message> - <location filename="spawn.cpp" line="166"/> + <location filename="spawn.cpp" line="172"/> <source>failed to inject dll into "%1": %2</source> <translation>無法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="174"/> + <location filename="spawn.cpp" line="190"/> <source>failed to run "%1"</source> <translation>無法運行 "%1"</translation> </message> @@ -4802,12 +4816,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="settings.cpp" line="681"/> + <location filename="settings.cpp" line="676"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation> </message> @@ -5458,26 +5472,26 @@ On Windows XP: <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> + <location filename="transfersavesdialog.cpp" line="157"/> + <location filename="transfersavesdialog.cpp" line="195"/> + <location filename="transfersavesdialog.cpp" line="230"/> + <location filename="transfersavesdialog.cpp" line="269"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="165"/> - <location filename="transfersavesdialog.cpp" line="203"/> + <location filename="transfersavesdialog.cpp" line="158"/> + <location filename="transfersavesdialog.cpp" line="196"/> <source>Copy all save games of character "%1" to the profile?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="238"/> + <location filename="transfersavesdialog.cpp" line="231"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="transfersavesdialog.cpp" line="277"/> + <location filename="transfersavesdialog.cpp" line="270"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> <translation type="unfinished"></translation> </message> diff --git a/src/savegame.cpp b/src/savegame.cpp index d09f291c..06e028e2 100644 --- a/src/savegame.cpp +++ b/src/savegame.cpp @@ -21,10 +21,11 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QFile> #include <QBuffer> #include <set> -#include "gameinfo.h" #include <QFileInfo> #include <QDateTime> +#include <utility.h> #include <limits> +#include "gameinfo.h" SaveGame::SaveGame(QObject *parent) @@ -68,11 +69,14 @@ SaveGame::~SaveGame() QStringList SaveGame::attachedFiles() const { QStringList result; - QString seFileFile = fileName().mid(0).replace(".ess", ".skse"); - QFileInfo seFile(seFileFile); - if (seFile.exists()) { - result.append(seFile.absoluteFilePath()); + foreach (const std::wstring &ext, MOShared::GameInfo::instance().getSavegameAttachmentExtensions()) { + QFileInfo fi(fileName()); + fi.setFile(fi.canonicalPath() + "/" + fi.completeBaseName() + "." + MOBase::ToQString(ext)); + if (fi.exists()) { + result.append(fi.filePath()); + } } + return result; } diff --git a/src/shared/fallout3info.cpp b/src/shared/fallout3info.cpp index 68fd515e..ea73c7f6 100644 --- a/src/shared/fallout3info.cpp +++ b/src/shared/fallout3info.cpp @@ -122,6 +122,11 @@ std::vector<std::wstring> Fallout3Info::getDLCPlugins() ;
}
+std::vector<std::wstring> Fallout3Info::getSavegameAttachmentExtensions()
+{
+ return std::vector<std::wstring>();
+}
+
std::vector<std::wstring> Fallout3Info::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
diff --git a/src/shared/fallout3info.h b/src/shared/fallout3info.h index e9a818e2..7c61ca6d 100644 --- a/src/shared/fallout3info.h +++ b/src/shared/fallout3info.h @@ -59,6 +59,7 @@ public: virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/falloutnvinfo.cpp b/src/shared/falloutnvinfo.cpp index 366c72c3..1715912d 100644 --- a/src/shared/falloutnvinfo.cpp +++ b/src/shared/falloutnvinfo.cpp @@ -127,13 +127,16 @@ std::vector<std::wstring> FalloutNVInfo::getDLCPlugins() ;
}
+std::vector<std::wstring> FalloutNVInfo::getSavegameAttachmentExtensions()
+{
+ return std::vector<std::wstring>();
+}
std::vector<std::wstring> FalloutNVInfo::getIniFileNames()
{
return boost::assign::list_of(L"fallout.ini")(L"falloutprefs.ini");
}
-
std::wstring FalloutNVInfo::getSaveGameExtension()
{
return L"*.fos";
diff --git a/src/shared/falloutnvinfo.h b/src/shared/falloutnvinfo.h index e6f6b5d0..4de67a19 100644 --- a/src/shared/falloutnvinfo.h +++ b/src/shared/falloutnvinfo.h @@ -61,6 +61,7 @@ public: virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/gameinfo.h b/src/shared/gameinfo.h index 69cd38f6..33467cb9 100644 --- a/src/shared/gameinfo.h +++ b/src/shared/gameinfo.h @@ -130,6 +130,9 @@ public: virtual std::vector<std::wstring> getVanillaBSAs() = 0;
+ // get a list of file extensions for additional files belonging to a save game
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions() = 0;
+
// get a set of esp/esm files that are part of known dlcs
virtual std::vector<std::wstring> getDLCPlugins() = 0;
diff --git a/src/shared/oblivioninfo.cpp b/src/shared/oblivioninfo.cpp index 85f31042..532e49b8 100644 --- a/src/shared/oblivioninfo.cpp +++ b/src/shared/oblivioninfo.cpp @@ -133,6 +133,12 @@ std::vector<std::wstring> OblivionInfo::getDLCPlugins() }
+std::vector<std::wstring> OblivionInfo::getSavegameAttachmentExtensions()
+{
+ return boost::assign::list_of(L"obse");
+}
+
+
std::vector<std::wstring> OblivionInfo::getIniFileNames()
{
return boost::assign::list_of(L"oblivion.ini")(L"oblivionprefs.ini");
diff --git a/src/shared/oblivioninfo.h b/src/shared/oblivioninfo.h index f9c8fa47..121cad43 100644 --- a/src/shared/oblivioninfo.h +++ b/src/shared/oblivioninfo.h @@ -57,6 +57,7 @@ public: virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
diff --git a/src/shared/skyriminfo.cpp b/src/shared/skyriminfo.cpp index 5711e2fd..5017da38 100644 --- a/src/shared/skyriminfo.cpp +++ b/src/shared/skyriminfo.cpp @@ -158,6 +158,11 @@ std::vector<std::wstring> SkyrimInfo::getDLCPlugins() ;
}
+std::vector<std::wstring> SkyrimInfo::getSavegameAttachmentExtensions()
+{
+ return boost::assign::list_of(L"skse");
+}
+
std::vector<std::wstring> SkyrimInfo::getIniFileNames()
{
return boost::assign::list_of(L"skyrim.ini")(L"skyrimprefs.ini");
diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h index 2794555f..3b3b6d8e 100644 --- a/src/shared/skyriminfo.h +++ b/src/shared/skyriminfo.h @@ -65,6 +65,8 @@ public: virtual std::vector<std::wstring> getVanillaBSAs();
virtual std::vector<std::wstring> getDLCPlugins();
+ virtual std::vector<std::wstring> getSavegameAttachmentExtensions();
+
// file name of this games ini (no path)
virtual std::vector<std::wstring> getIniFileNames();
|
