summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Starecki <krzysztof.starecki@gmail.com>2019-02-15 17:27:12 +0100
committerKrzysztof Starecki <krzysztof.starecki@gmail.com>2019-02-15 17:34:44 +0100
commit600b0786eb4c66cb14ae61bb86695d049e9fc169 (patch)
tree5a00c168c0bbd3eb4773a1c90f7f4304ac5fc0f3 /src
parent4d8920cec1f35e502c653e1b5725a49a4d321626 (diff)
Change mod list context menu to stack allocation
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp146
-rw-r--r--src/mainwindow.h2
-rw-r--r--src/organizer_en.ts634
3 files changed, 393 insertions, 389 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 12b95ce8..bb5cd337 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -338,7 +338,9 @@ MainWindow::MainWindow(QSettings &initSettings
linkMenu->addAction(QIcon(":/MO/gui/link"), tr("Start Menu"), this, SLOT(linkMenu()));
ui->linkButton->setMenu(linkMenu);
- ui->listOptionsBtn->setMenu(modListContextMenu(ui->listOptionsBtn));
+ QMenu *listOptionsMenu = new QMenu(ui->listOptionsBtn);
+ initModListContextMenu(listOptionsMenu);
+ ui->listOptionsBtn->setMenu(listOptionsMenu);
connect(ui->listOptionsBtn, SIGNAL(pressed()), this, SLOT(on_listOptionsBtn_pressed()));
ui->openFolderMenu->setMenu(openFolderMenu());
@@ -4379,28 +4381,19 @@ QMenu *MainWindow::openFolderMenu()
return FolderMenu;
}
-QMenu *MainWindow::modListContextMenu(QWidget *parent)
+void MainWindow::initModListContextMenu(QMenu *menu)
{
- QMenu *menu = new QMenu(parent);
menu->addAction(tr("Install Mod..."), this, SLOT(installMod_clicked()));
-
menu->addAction(tr("Create empty mod"), this, SLOT(createEmptyMod_clicked()));
-
menu->addAction(tr("Create Separator"), this, SLOT(createSeparator_clicked()));
menu->addSeparator();
menu->addAction(tr("Enable all visible"), this, SLOT(enableVisibleMods()));
menu->addAction(tr("Disable all visible"), this, SLOT(disableVisibleMods()));
-
menu->addAction(tr("Check all for update"), this, SLOT(checkModsForUpdates()));
-
menu->addAction(tr("Refresh"), &m_OrganizerCore, SLOT(profileRefresh()));
-
menu->addAction(tr("Export to csv..."), this, SLOT(exportModListCSV()));
-
-
- return menu;
}
void MainWindow::addModSendToContextMenu(QMenu *menu)
@@ -4442,137 +4435,140 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
m_ContextIdx = mapToModel(m_OrganizerCore.modList(), modList->indexAt(pos));
m_ContextRow = m_ContextIdx.row();
- QMenu *menu = nullptr;
if (m_ContextRow == -1) {
// no selection
- menu = modListContextMenu(this);
+ QMenu menu(this);
+ initModListContextMenu(&menu);
+ menu.exec(modList->mapToGlobal(pos));
} else {
- menu = new QMenu(this);
- QMenu *allMods = modListContextMenu(menu);
+ QMenu menu(this);
+
+ QMenu *allMods = new QMenu(&menu);
+ initModListContextMenu(allMods);
allMods->setTitle(tr("All Mods"));
- menu->addMenu(allMods);
- menu->addSeparator();
+ menu.addMenu(allMods);
+ menu.addSeparator();
+
ModInfo::Ptr info = ModInfo::getByIndex(m_ContextRow);
std::vector<ModInfo::EFlag> flags = info->getFlags();
if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_OVERWRITE) != flags.end()) {
if (QDir(info->absolutePath()).count() > 2) {
- menu->addAction(tr("Sync to Mods..."), &m_OrganizerCore, SLOT(syncOverwrite()));
- menu->addAction(tr("Create Mod..."), this, SLOT(createModFromOverwrite()));
- menu->addAction(tr("Move content to Mod..."), this, SLOT(moveOverwriteContentToExistingMod()));
- menu->addAction(tr("Clear Overwrite..."), this, SLOT(clearOverwrite()));
+ menu.addAction(tr("Sync to Mods..."), &m_OrganizerCore, SLOT(syncOverwrite()));
+ menu.addAction(tr("Create Mod..."), this, SLOT(createModFromOverwrite()));
+ menu.addAction(tr("Move content to Mod..."), this, SLOT(moveOverwriteContentToExistingMod()));
+ menu.addAction(tr("Clear Overwrite..."), this, SLOT(clearOverwrite()));
}
- menu->addAction(tr("Open in Explorer"), this, SLOT(openExplorer_clicked()));
+ menu.addAction(tr("Open in Explorer"), this, SLOT(openExplorer_clicked()));
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_BACKUP) != flags.end()) {
- menu->addAction(tr("Restore Backup"), this, SLOT(restoreBackup_clicked()));
- menu->addAction(tr("Remove Backup..."), this, SLOT(removeMod_clicked()));
+ menu.addAction(tr("Restore Backup"), this, SLOT(restoreBackup_clicked()));
+ menu.addAction(tr("Remove Backup..."), this, SLOT(removeMod_clicked()));
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_SEPARATOR) != flags.end()){
- menu->addSeparator();
- QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"), menu);
+ menu.addSeparator();
+ QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"), &menu);
populateMenuCategories(addRemoveCategoriesMenu, 0);
connect(addRemoveCategoriesMenu, SIGNAL(aboutToHide()), this, SLOT(addRemoveCategories_MenuHandler()));
- addMenuAsPushButton(menu, addRemoveCategoriesMenu);
- QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), menu);
+ addMenuAsPushButton(&menu, addRemoveCategoriesMenu);
+ QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), &menu);
connect(primaryCategoryMenu, SIGNAL(aboutToShow()), this, SLOT(addPrimaryCategoryCandidates()));
- addMenuAsPushButton(menu, primaryCategoryMenu);
- menu->addSeparator();
- menu->addAction(tr("Rename Separator..."), this, SLOT(renameMod_clicked()));
- menu->addAction(tr("Remove Separator..."), this, SLOT(removeMod_clicked()));
- menu->addSeparator();
- addModSendToContextMenu(menu);
- menu->addAction(tr("Select Color..."), this, SLOT(setColor_clicked()));
+ addMenuAsPushButton(&menu, primaryCategoryMenu);
+ menu.addSeparator();
+ menu.addAction(tr("Rename Separator..."), this, SLOT(renameMod_clicked()));
+ menu.addAction(tr("Remove Separator..."), this, SLOT(removeMod_clicked()));
+ menu.addSeparator();
+ addModSendToContextMenu(&menu);
+ menu.addAction(tr("Select Color..."), this, SLOT(setColor_clicked()));
if(info->getColor().isValid())
- menu->addAction(tr("Reset Color"), this, SLOT(resetColor_clicked()));
- menu->addSeparator();
+ menu.addAction(tr("Reset Color"), this, SLOT(resetColor_clicked()));
+ menu.addSeparator();
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_FOREIGN) != flags.end()) {
- addModSendToContextMenu(menu);
+ addModSendToContextMenu(&menu);
} else {
- QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"), menu);
+ QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"), &menu);
populateMenuCategories(addRemoveCategoriesMenu, 0);
connect(addRemoveCategoriesMenu, SIGNAL(aboutToHide()), this, SLOT(addRemoveCategories_MenuHandler()));
- addMenuAsPushButton(menu, addRemoveCategoriesMenu);
+ addMenuAsPushButton(&menu, addRemoveCategoriesMenu);
- QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), menu);
+ QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), &menu);
connect(primaryCategoryMenu, SIGNAL(aboutToShow()), this, SLOT(addPrimaryCategoryCandidates()));
- addMenuAsPushButton(menu, primaryCategoryMenu);
+ addMenuAsPushButton(&menu, primaryCategoryMenu);
- menu->addSeparator();
+ menu.addSeparator();
if (info->downgradeAvailable()) {
- menu->addAction(tr("Change versioning scheme"), this, SLOT(changeVersioningScheme()));
+ menu.addAction(tr("Change versioning scheme"), this, SLOT(changeVersioningScheme()));
}
if (info->updateIgnored()) {
- menu->addAction(tr("Un-ignore update"), this, SLOT(unignoreUpdate()));
+ menu.addAction(tr("Un-ignore update"), this, SLOT(unignoreUpdate()));
}
else {
if (info->updateAvailable() || info->downgradeAvailable()) {
- menu->addAction(tr("Ignore update"), this, SLOT(ignoreUpdate()));
+ menu.addAction(tr("Ignore update"), this, SLOT(ignoreUpdate()));
}
}
- menu->addSeparator();
+ menu.addSeparator();
- menu->addAction(tr("Enable selected"), this, SLOT(enableSelectedMods_clicked()));
- menu->addAction(tr("Disable selected"), this, SLOT(disableSelectedMods_clicked()));
+ menu.addAction(tr("Enable selected"), this, SLOT(enableSelectedMods_clicked()));
+ menu.addAction(tr("Disable selected"), this, SLOT(disableSelectedMods_clicked()));
- menu->addSeparator();
+ menu.addSeparator();
- addModSendToContextMenu(menu);
+ addModSendToContextMenu(&menu);
- menu->addAction(tr("Rename Mod..."), this, SLOT(renameMod_clicked()));
- menu->addAction(tr("Reinstall Mod"), this, SLOT(reinstallMod_clicked()));
- menu->addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
- menu->addAction(tr("Create Backup"), this, SLOT(backupMod_clicked()));
+ menu.addAction(tr("Rename Mod..."), this, SLOT(renameMod_clicked()));
+ menu.addAction(tr("Reinstall Mod"), this, SLOT(reinstallMod_clicked()));
+ menu.addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
+ menu.addAction(tr("Create Backup"), this, SLOT(backupMod_clicked()));
- menu->addSeparator();
+ menu.addSeparator();
if (info->getNexusID() > 0 && Settings::instance().endorsementIntegration()) {
switch (info->endorsedState()) {
case ModInfo::ENDORSED_TRUE: {
- menu->addAction(tr("Un-Endorse"), this, SLOT(unendorse_clicked()));
+ menu.addAction(tr("Un-Endorse"), this, SLOT(unendorse_clicked()));
} break;
case ModInfo::ENDORSED_FALSE: {
- menu->addAction(tr("Endorse"), this, SLOT(endorse_clicked()));
- menu->addAction(tr("Won't endorse"), this, SLOT(dontendorse_clicked()));
+ menu.addAction(tr("Endorse"), this, SLOT(endorse_clicked()));
+ menu.addAction(tr("Won't endorse"), this, SLOT(dontendorse_clicked()));
} break;
case ModInfo::ENDORSED_NEVER: {
- menu->addAction(tr("Endorse"), this, SLOT(endorse_clicked()));
+ menu.addAction(tr("Endorse"), this, SLOT(endorse_clicked()));
} break;
default: {
- QAction *action = new QAction(tr("Endorsement state unknown"), menu);
+ QAction *action = new QAction(tr("Endorsement state unknown"), &menu);
action->setEnabled(false);
- menu->addAction(action);
+ menu.addAction(action);
} break;
}
}
- menu->addSeparator();
+ menu.addSeparator();
std::vector<ModInfo::EFlag> flags = info->getFlags();
if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_INVALID) != flags.end()) {
- menu->addAction(tr("Ignore missing data"), this, SLOT(ignoreMissingData_clicked()));
+ menu.addAction(tr("Ignore missing data"), this, SLOT(ignoreMissingData_clicked()));
}
if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_ALTERNATE_GAME) != flags.end()) {
- menu->addAction(tr("Mark as converted/working"), this, SLOT(markConverted_clicked()));
+ menu.addAction(tr("Mark as converted/working"), this, SLOT(markConverted_clicked()));
}
if (info->getNexusID() > 0) {
- menu->addAction(tr("Visit on Nexus"), this, SLOT(visitOnNexus_clicked()));
+ menu.addAction(tr("Visit on Nexus"), this, SLOT(visitOnNexus_clicked()));
} else if ((info->getURL() != "")) {
- menu->addAction(tr("Visit web page"), this, SLOT(visitWebPage_clicked()));
+ menu.addAction(tr("Visit web page"), this, SLOT(visitWebPage_clicked()));
}
- menu->addAction(tr("Open in Explorer"), this, SLOT(openExplorer_clicked()));
+ menu.addAction(tr("Open in Explorer"), this, SLOT(openExplorer_clicked()));
}
if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_FOREIGN) == flags.end()) {
- QAction *infoAction = menu->addAction(tr("Information..."), this, SLOT(information_clicked()));
- menu->setDefaultAction(infoAction);
+ QAction *infoAction = menu.addAction(tr("Information..."), this, SLOT(information_clicked()));
+ menu.setDefaultAction(infoAction);
}
- }
- menu->exec(modList->mapToGlobal(pos));
- delete menu;
+ menu.exec(modList->mapToGlobal(pos));
+ }
} catch (const std::exception &e) {
reportError(tr("Exception: ").arg(e.what()));
} catch (...) {
@@ -4925,7 +4921,9 @@ void MainWindow::languageChange(const QString &newLanguage)
updateDownloadView();
updateProblemsButton();
- ui->listOptionsBtn->setMenu(modListContextMenu(ui->listOptionsBtn));
+ QMenu *listOptionsMenu = new QMenu(ui->listOptionsBtn);
+ initModListContextMenu(listOptionsMenu);
+ ui->listOptionsBtn->setMenu(listOptionsMenu);
ui->openFolderMenu->setMenu(openFolderMenu());
}
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 6e2f247d..0e39c613 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -281,7 +281,7 @@ private:
bool createBackup(const QString &filePath, const QDateTime &time);
QString queryRestore(const QString &filePath);
- QMenu *modListContextMenu(QWidget *parent);
+ void initModListContextMenu(QMenu *menu);
void addModSendToContextMenu(QMenu *menu);
void addPluginSendToContextMenu(QMenu *menu);
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index ed614df7..b9bcece4 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -1555,7 +1555,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="287"/>
<location filename="mainwindow.ui" line="911"/>
- <location filename="mainwindow.cpp" line="4520"/>
+ <location filename="mainwindow.cpp" line="4521"/>
<source>Create Backup</source>
<translation type="unfinished"></translation>
</message>
@@ -1731,8 +1731,8 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="1175"/>
<location filename="mainwindow.ui" line="1318"/>
- <location filename="mainwindow.cpp" line="4394"/>
- <location filename="mainwindow.cpp" line="5332"/>
+ <location filename="mainwindow.cpp" line="4395"/>
+ <location filename="mainwindow.cpp" line="5334"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
@@ -1927,7 +1927,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="mainwindow.ui" line="1600"/>
- <location filename="mainwindow.cpp" line="5263"/>
+ <location filename="mainwindow.cpp" line="5265"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
@@ -1938,7 +1938,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="mainwindow.ui" line="1615"/>
- <location filename="mainwindow.cpp" line="676"/>
+ <location filename="mainwindow.cpp" line="678"/>
<source>No Notifications</source>
<translation type="unfinished"></translation>
</message>
@@ -1965,7 +1965,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="mainwindow.ui" line="1645"/>
- <location filename="mainwindow.cpp" line="5355"/>
+ <location filename="mainwindow.cpp" line="5357"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -2000,649 +2000,649 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="361"/>
+ <location filename="mainwindow.cpp" line="363"/>
<source>There is no supported sort mechanism for this game. You will probably have to use a third-party tool.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="496"/>
+ <location filename="mainwindow.cpp" line="498"/>
<source>Crash on exit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="497"/>
+ <location filename="mainwindow.cpp" line="499"/>
<source>MO crashed while exiting. Some settings may not be saved.
Error: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="664"/>
+ <location filename="mainwindow.cpp" line="666"/>
<source>Notifications</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="665"/>
+ <location filename="mainwindow.cpp" line="667"/>
<source>There are notifications to read</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="677"/>
+ <location filename="mainwindow.cpp" line="679"/>
<source>There are no notifications</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="739"/>
- <location filename="mainwindow.cpp" line="4530"/>
- <location filename="mainwindow.cpp" line="4534"/>
+ <location filename="mainwindow.cpp" line="741"/>
+ <location filename="mainwindow.cpp" line="4531"/>
+ <location filename="mainwindow.cpp" line="4535"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="743"/>
+ <location filename="mainwindow.cpp" line="745"/>
<source>Won&apos;t Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="758"/>
+ <location filename="mainwindow.cpp" line="760"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="762"/>
+ <location filename="mainwindow.cpp" line="764"/>
<source>Documentation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="766"/>
+ <location filename="mainwindow.cpp" line="768"/>
<source>Chat on Discord</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="770"/>
+ <location filename="mainwindow.cpp" line="772"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="774"/>
+ <location filename="mainwindow.cpp" line="776"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="813"/>
+ <location filename="mainwindow.cpp" line="815"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="814"/>
+ <location filename="mainwindow.cpp" line="816"/>
<source>About Qt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="873"/>
+ <location filename="mainwindow.cpp" line="875"/>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="874"/>
+ <location filename="mainwindow.cpp" line="876"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="882"/>
+ <location filename="mainwindow.cpp" line="884"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="926"/>
+ <location filename="mainwindow.cpp" line="928"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="927"/>
+ <location filename="mainwindow.cpp" line="929"/>
<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 &quot;Help&quot;-menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="963"/>
+ <location filename="mainwindow.cpp" line="965"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="964"/>
+ <location filename="mainwindow.cpp" line="966"/>
<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="1081"/>
+ <location filename="mainwindow.cpp" line="1083"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1083"/>
+ <location filename="mainwindow.cpp" line="1085"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1161"/>
+ <location filename="mainwindow.cpp" line="1163"/>
<source>Browse Mod Page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1368"/>
+ <location filename="mainwindow.cpp" line="1370"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1379"/>
+ <location filename="mainwindow.cpp" line="1381"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1464"/>
+ <location filename="mainwindow.cpp" line="1466"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1742"/>
+ <location filename="mainwindow.cpp" line="1744"/>
<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="1804"/>
+ <location filename="mainwindow.cpp" line="1806"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1865"/>
+ <location filename="mainwindow.cpp" line="1867"/>
<source>Notice: Your current MO version (%1) is lower than the previously used one (%2). The GUI may not downgrade gracefully, so you may experience oddities. However, there should be no serious issues.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1967"/>
+ <location filename="mainwindow.cpp" line="1969"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1968"/>
+ <location filename="mainwindow.cpp" line="1970"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2155"/>
+ <location filename="mainwindow.cpp" line="2157"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2156"/>
+ <location filename="mainwindow.cpp" line="2158"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2329"/>
+ <location filename="mainwindow.cpp" line="2331"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2369"/>
+ <location filename="mainwindow.cpp" line="2371"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2393"/>
+ <location filename="mainwindow.cpp" line="2395"/>
<source>failed to move &quot;%1&quot; from mod &quot;%2&quot; to &quot;%3&quot;: %4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2417"/>
+ <location filename="mainwindow.cpp" line="2419"/>
<source>&lt;Contains %1&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2452"/>
+ <location filename="mainwindow.cpp" line="2454"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2453"/>
+ <location filename="mainwindow.cpp" line="2455"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2454"/>
+ <location filename="mainwindow.cpp" line="2456"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2455"/>
+ <location filename="mainwindow.cpp" line="2457"/>
<source>&lt;Mod Backup&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2456"/>
+ <location filename="mainwindow.cpp" line="2458"/>
<source>&lt;Managed by MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2457"/>
+ <location filename="mainwindow.cpp" line="2459"/>
<source>&lt;Managed outside MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2458"/>
+ <location filename="mainwindow.cpp" line="2460"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2459"/>
+ <location filename="mainwindow.cpp" line="2461"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2460"/>
+ <location filename="mainwindow.cpp" line="2462"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2506"/>
+ <location filename="mainwindow.cpp" line="2508"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2519"/>
+ <location filename="mainwindow.cpp" line="2521"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2520"/>
+ <location filename="mainwindow.cpp" line="2522"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2523"/>
+ <location filename="mainwindow.cpp" line="2525"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2527"/>
- <location filename="mainwindow.cpp" line="5089"/>
- <location filename="mainwindow.cpp" line="5113"/>
+ <location filename="mainwindow.cpp" line="2529"/>
+ <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="5115"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2604"/>
- <location filename="mainwindow.cpp" line="4092"/>
- <location filename="mainwindow.cpp" line="4100"/>
+ <location filename="mainwindow.cpp" line="2606"/>
+ <location filename="mainwindow.cpp" line="4098"/>
+ <location filename="mainwindow.cpp" line="4106"/>
<location filename="mainwindow.cpp" line="4644"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2605"/>
+ <location filename="mainwindow.cpp" line="2607"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2620"/>
+ <location filename="mainwindow.cpp" line="2622"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
- <location filename="mainwindow.cpp" line="2655"/>
- <location filename="mainwindow.cpp" line="2665"/>
+ <location filename="mainwindow.cpp" line="2654"/>
+ <location filename="mainwindow.cpp" line="2657"/>
+ <location filename="mainwindow.cpp" line="2667"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2652"/>
+ <location filename="mainwindow.cpp" line="2654"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2656"/>
+ <location filename="mainwindow.cpp" line="2658"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2666"/>
+ <location filename="mainwindow.cpp" line="2668"/>
<source>Failed to create backup.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2683"/>
+ <location filename="mainwindow.cpp" line="2685"/>
<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="2699"/>
- <location filename="mainwindow.cpp" line="2725"/>
- <location filename="mainwindow.cpp" line="2759"/>
- <location filename="mainwindow.cpp" line="2785"/>
+ <location filename="mainwindow.cpp" line="2701"/>
+ <location filename="mainwindow.cpp" line="2727"/>
+ <location filename="mainwindow.cpp" line="2761"/>
+ <location filename="mainwindow.cpp" line="2787"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2710"/>
- <location filename="mainwindow.cpp" line="2718"/>
+ <location filename="mainwindow.cpp" line="2712"/>
+ <location filename="mainwindow.cpp" line="2720"/>
<source>Endorsing multiple mods will take a while. Please wait...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2770"/>
- <location filename="mainwindow.cpp" line="2778"/>
+ <location filename="mainwindow.cpp" line="2772"/>
+ <location filename="mainwindow.cpp" line="2780"/>
<source>Unendorsing multiple mods will take a while. Please wait...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2846"/>
+ <location filename="mainwindow.cpp" line="2848"/>
<source>Failed to display overwrite dialog: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3033"/>
+ <location filename="mainwindow.cpp" line="3035"/>
<source>Opening Nexus Links</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3034"/>
+ <location filename="mainwindow.cpp" line="3036"/>
<source>You are trying to open %1 links to Nexus Mods. Are you sure you want to do this?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3063"/>
+ <location filename="mainwindow.cpp" line="3065"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3075"/>
+ <location filename="mainwindow.cpp" line="3077"/>
<source>Opening Web Pages</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3076"/>
+ <location filename="mainwindow.cpp" line="3078"/>
<source>You are trying to open %1 Web Pages. Are you sure you want to do this?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3105"/>
+ <location filename="mainwindow.cpp" line="3107"/>
<source>Web page for this mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3288"/>
+ <location filename="mainwindow.cpp" line="3294"/>
<source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;All&lt;/th&gt;&lt;th&gt;Visible&lt;/th&gt;&lt;tr&gt;&lt;td&gt;Enabled mods:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%1 / %2&lt;/td&gt;&lt;td align=right&gt;%3 / %4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Unmanaged/DLCs:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%5&lt;/td&gt;&lt;td align=right&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Mod backups:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%7&lt;/td&gt;&lt;td align=right&gt;%8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Separators:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%9&lt;/td&gt;&lt;td align=right&gt;%10&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3343"/>
+ <location filename="mainwindow.cpp" line="3349"/>
<source>&lt;table cellspacing=&quot;6&quot;&gt;&lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;Active &lt;/th&gt;&lt;th&gt;Total&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;All plugins:&lt;/td&gt;&lt;td align=right&gt;%1 &lt;/td&gt;&lt;td align=right&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESMs:&lt;/td&gt;&lt;td align=right&gt;%3 &lt;/td&gt;&lt;td align=right&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESPs:&lt;/td&gt;&lt;td align=right&gt;%7 &lt;/td&gt;&lt;td align=right&gt;%8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESMs+ESPs:&lt;/td&gt;&lt;td align=right&gt;%9 &lt;/td&gt;&lt;td align=right&gt;%10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESLs:&lt;/td&gt;&lt;td align=right&gt;%5 &lt;/td&gt;&lt;td align=right&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3375"/>
- <location filename="mainwindow.cpp" line="3513"/>
- <location filename="mainwindow.cpp" line="4456"/>
+ <location filename="mainwindow.cpp" line="3381"/>
+ <location filename="mainwindow.cpp" line="3519"/>
+ <location filename="mainwindow.cpp" line="4457"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3376"/>
+ <location filename="mainwindow.cpp" line="3382"/>
<source>This will create an empty mod.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3385"/>
- <location filename="mainwindow.cpp" line="3523"/>
+ <location filename="mainwindow.cpp" line="3391"/>
+ <location filename="mainwindow.cpp" line="3529"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3413"/>
+ <location filename="mainwindow.cpp" line="3419"/>
<source>Create Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3414"/>
+ <location filename="mainwindow.cpp" line="3420"/>
<source>This will create a new separator.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3421"/>
+ <location filename="mainwindow.cpp" line="3427"/>
<source>A separator with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3514"/>
+ <location filename="mainwindow.cpp" line="3520"/>
<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="3595"/>
+ <location filename="mainwindow.cpp" line="3601"/>
<source>Move successful.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3616"/>
- <location filename="mainwindow.cpp" line="5693"/>
+ <location filename="mainwindow.cpp" line="3622"/>
+ <location filename="mainwindow.cpp" line="5695"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3617"/>
+ <location filename="mainwindow.cpp" line="3623"/>
<source>About to recursively delete:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3980"/>
+ <location filename="mainwindow.cpp" line="3986"/>
<source>Not logged in, endorsement information will be wrong</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3988"/>
+ <location filename="mainwindow.cpp" line="3994"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3989"/>
+ <location filename="mainwindow.cpp" line="3995"/>
<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="4009"/>
- <location filename="mainwindow.cpp" line="5231"/>
+ <location filename="mainwindow.cpp" line="4015"/>
+ <location filename="mainwindow.cpp" line="5233"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4010"/>
+ <location filename="mainwindow.cpp" line="4016"/>
<source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4092"/>
+ <location filename="mainwindow.cpp" line="4098"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4100"/>
+ <location filename="mainwindow.cpp" line="4106"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4180"/>
+ <location filename="mainwindow.cpp" line="4186"/>
<source>Export to csv</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4183"/>
+ <location filename="mainwindow.cpp" line="4189"/>
<source>CSV (Comma Separated Values) is a format that can be imported in programs like Excel to create a spreadsheet.
You can also use online editors and converters instead.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4186"/>
+ <location filename="mainwindow.cpp" line="4192"/>
<source>Select what mods you want export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4187"/>
+ <location filename="mainwindow.cpp" line="4193"/>
<source>All installed mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4188"/>
+ <location filename="mainwindow.cpp" line="4194"/>
<source>Only active (checked) mods from your current profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4189"/>
+ <location filename="mainwindow.cpp" line="4195"/>
<source>All currently visible mods in the mod list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4210"/>
+ <location filename="mainwindow.cpp" line="4216"/>
<source>Choose what Columns to export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4213"/>
+ <location filename="mainwindow.cpp" line="4219"/>
<source>Mod_Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4215"/>
+ <location filename="mainwindow.cpp" line="4221"/>
<source>Mod_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4217"/>
+ <location filename="mainwindow.cpp" line="4223"/>
<source>Notes_column</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4218"/>
+ <location filename="mainwindow.cpp" line="4224"/>
<source>Mod_Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4219"/>
+ <location filename="mainwindow.cpp" line="4225"/>
<source>Primary_Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4220"/>
+ <location filename="mainwindow.cpp" line="4226"/>
<source>Nexus_ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4221"/>
+ <location filename="mainwindow.cpp" line="4227"/>
<source>Mod_Nexus_URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4222"/>
+ <location filename="mainwindow.cpp" line="4228"/>
<source>Mod_Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4223"/>
+ <location filename="mainwindow.cpp" line="4229"/>
<source>Install_Date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4224"/>
+ <location filename="mainwindow.cpp" line="4230"/>
<source>Download_File_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4331"/>
+ <location filename="mainwindow.cpp" line="4337"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4350"/>
+ <location filename="mainwindow.cpp" line="4356"/>
<source>Open Game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4352"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Open MyGames folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4354"/>
+ <location filename="mainwindow.cpp" line="4360"/>
<source>Open INIs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4358"/>
+ <location filename="mainwindow.cpp" line="4364"/>
<source>Open Instance folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4360"/>
+ <location filename="mainwindow.cpp" line="4366"/>
<source>Open Mods folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4362"/>
+ <location filename="mainwindow.cpp" line="4368"/>
<source>Open Profile folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4364"/>
+ <location filename="mainwindow.cpp" line="4370"/>
<source>Open Downloads folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4368"/>
+ <location filename="mainwindow.cpp" line="4374"/>
<source>Open MO2 Install folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4370"/>
+ <location filename="mainwindow.cpp" line="4376"/>
<source>Open MO2 Plugins folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4372"/>
+ <location filename="mainwindow.cpp" line="4378"/>
<source>Open MO2 Logs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4381"/>
+ <location filename="mainwindow.cpp" line="4386"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4383"/>
+ <location filename="mainwindow.cpp" line="4387"/>
<source>Create empty mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4385"/>
+ <location filename="mainwindow.cpp" line="4388"/>
<source>Create Separator</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4389"/>
+ <location filename="mainwindow.cpp" line="4392"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4390"/>
+ <location filename="mainwindow.cpp" line="4393"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4392"/>
+ <location filename="mainwindow.cpp" line="4394"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
@@ -2652,31 +2652,31 @@ You can also use online editors and converters instead.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4408"/>
- <location filename="mainwindow.cpp" line="4424"/>
+ <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4421"/>
<source>Send to</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4409"/>
- <location filename="mainwindow.cpp" line="4425"/>
+ <location filename="mainwindow.cpp" line="4406"/>
+ <location filename="mainwindow.cpp" line="4422"/>
<source>Top</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4410"/>
- <location filename="mainwindow.cpp" line="4426"/>
+ <location filename="mainwindow.cpp" line="4407"/>
+ <location filename="mainwindow.cpp" line="4423"/>
<source>Bottom</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4411"/>
- <location filename="mainwindow.cpp" line="4427"/>
+ <location filename="mainwindow.cpp" line="4408"/>
+ <location filename="mainwindow.cpp" line="4424"/>
<source>Priority...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4412"/>
+ <location filename="mainwindow.cpp" line="4409"/>
<source>Separator...</source>
<translation type="unfinished"></translation>
</message>
@@ -2686,159 +2686,159 @@ You can also use online editors and converters instead.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4455"/>
+ <location filename="mainwindow.cpp" line="4456"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4457"/>
+ <location filename="mainwindow.cpp" line="4458"/>
<source>Move content to Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4458"/>
+ <location filename="mainwindow.cpp" line="4459"/>
<source>Clear Overwrite...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4460"/>
- <location filename="mainwindow.cpp" line="4561"/>
+ <location filename="mainwindow.cpp" line="4461"/>
+ <location filename="mainwindow.cpp" line="4562"/>
<source>Open in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4462"/>
+ <location filename="mainwindow.cpp" line="4463"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4463"/>
+ <location filename="mainwindow.cpp" line="4464"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4466"/>
- <location filename="mainwindow.cpp" line="4485"/>
+ <location filename="mainwindow.cpp" line="4467"/>
+ <location filename="mainwindow.cpp" line="4486"/>
<source>Change Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4470"/>
- <location filename="mainwindow.cpp" line="4490"/>
+ <location filename="mainwindow.cpp" line="4471"/>
+ <location filename="mainwindow.cpp" line="4491"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4474"/>
+ <location filename="mainwindow.cpp" line="4475"/>
<source>Rename Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4475"/>
+ <location filename="mainwindow.cpp" line="4476"/>
<source>Remove Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4478"/>
+ <location filename="mainwindow.cpp" line="4479"/>
<source>Select Color...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4480"/>
+ <location filename="mainwindow.cpp" line="4481"/>
<source>Reset Color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4497"/>
+ <location filename="mainwindow.cpp" line="4498"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4501"/>
+ <location filename="mainwindow.cpp" line="4502"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4505"/>
+ <location filename="mainwindow.cpp" line="4506"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4510"/>
- <location filename="mainwindow.cpp" line="5806"/>
+ <location filename="mainwindow.cpp" line="4511"/>
+ <location filename="mainwindow.cpp" line="5808"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4511"/>
- <location filename="mainwindow.cpp" line="5807"/>
+ <location filename="mainwindow.cpp" line="4512"/>
+ <location filename="mainwindow.cpp" line="5809"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4517"/>
+ <location filename="mainwindow.cpp" line="4518"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4518"/>
+ <location filename="mainwindow.cpp" line="4519"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4519"/>
+ <location filename="mainwindow.cpp" line="4520"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4527"/>
+ <location filename="mainwindow.cpp" line="4528"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4531"/>
+ <location filename="mainwindow.cpp" line="4532"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4537"/>
+ <location filename="mainwindow.cpp" line="4538"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4548"/>
+ <location filename="mainwindow.cpp" line="4549"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4552"/>
+ <location filename="mainwindow.cpp" line="4553"/>
<source>Mark as converted/working</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4556"/>
+ <location filename="mainwindow.cpp" line="4557"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4558"/>
+ <location filename="mainwindow.cpp" line="4559"/>
<source>Visit web page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4565"/>
+ <location filename="mainwindow.cpp" line="4566"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="4573"/>
- <location filename="mainwindow.cpp" line="5854"/>
+ <location filename="mainwindow.cpp" line="5861"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="4575"/>
- <location filename="mainwindow.cpp" line="5856"/>
+ <location filename="mainwindow.cpp" line="5863"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
@@ -2907,330 +2907,330 @@ Click OK to restart MO now.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4960"/>
+ <location filename="mainwindow.cpp" line="4962"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4966"/>
+ <location filename="mainwindow.cpp" line="4968"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5008"/>
+ <location filename="mainwindow.cpp" line="5010"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5008"/>
+ <location filename="mainwindow.cpp" line="5010"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5034"/>
+ <location filename="mainwindow.cpp" line="5036"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5035"/>
+ <location filename="mainwindow.cpp" line="5037"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="5051"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5049"/>
+ <location filename="mainwindow.cpp" line="5051"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5074"/>
- <location filename="mainwindow.cpp" line="5099"/>
+ <location filename="mainwindow.cpp" line="5076"/>
+ <location filename="mainwindow.cpp" line="5101"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5074"/>
+ <location filename="mainwindow.cpp" line="5076"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5077"/>
- <location filename="mainwindow.cpp" line="5102"/>
+ <location filename="mainwindow.cpp" line="5079"/>
+ <location filename="mainwindow.cpp" line="5104"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5077"/>
- <location filename="mainwindow.cpp" line="5102"/>
+ <location filename="mainwindow.cpp" line="5079"/>
+ <location filename="mainwindow.cpp" line="5104"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5099"/>
+ <location filename="mainwindow.cpp" line="5101"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5143"/>
- <location filename="mainwindow.cpp" line="6468"/>
+ <location filename="mainwindow.cpp" line="5145"/>
+ <location filename="mainwindow.cpp" line="6475"/>
<source>Set Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5143"/>
+ <location filename="mainwindow.cpp" line="5145"/>
<source>Set the priority of the selected plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5198"/>
+ <location filename="mainwindow.cpp" line="5200"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5211"/>
+ <location filename="mainwindow.cpp" line="5213"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5231"/>
+ <location filename="mainwindow.cpp" line="5233"/>
<source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5265"/>
+ <location filename="mainwindow.cpp" line="5267"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5312"/>
+ <location filename="mainwindow.cpp" line="5314"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5313"/>
+ <location filename="mainwindow.cpp" line="5315"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5317"/>
+ <location filename="mainwindow.cpp" line="5319"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5323"/>
+ <location filename="mainwindow.cpp" line="5325"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5325"/>
+ <location filename="mainwindow.cpp" line="5327"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5331"/>
+ <location filename="mainwindow.cpp" line="5333"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5356"/>
+ <location filename="mainwindow.cpp" line="5358"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5495"/>
+ <location filename="mainwindow.cpp" line="5497"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5495"/>
+ <location filename="mainwindow.cpp" line="5497"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5530"/>
+ <location filename="mainwindow.cpp" line="5532"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5545"/>
- <location filename="mainwindow.cpp" line="5607"/>
+ <location filename="mainwindow.cpp" line="5547"/>
+ <location filename="mainwindow.cpp" line="5609"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5557"/>
- <location filename="mainwindow.cpp" line="6044"/>
+ <location filename="mainwindow.cpp" line="5559"/>
+ <location filename="mainwindow.cpp" line="6051"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5557"/>
+ <location filename="mainwindow.cpp" line="5559"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5589"/>
+ <location filename="mainwindow.cpp" line="5591"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5618"/>
+ <location filename="mainwindow.cpp" line="5620"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5664"/>
+ <location filename="mainwindow.cpp" line="5666"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5694"/>
+ <location filename="mainwindow.cpp" line="5696"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5741"/>
+ <location filename="mainwindow.cpp" line="5743"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5742"/>
+ <location filename="mainwindow.cpp" line="5744"/>
<source>Deselect filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5795"/>
+ <location filename="mainwindow.cpp" line="5797"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5811"/>
+ <location filename="mainwindow.cpp" line="5813"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5812"/>
+ <location filename="mainwindow.cpp" line="5814"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5833"/>
+ <location filename="mainwindow.cpp" line="5835"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5836"/>
+ <location filename="mainwindow.cpp" line="5838"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5840"/>
+ <location filename="mainwindow.cpp" line="5848"/>
<source>Open Origin in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5847"/>
+ <location filename="mainwindow.cpp" line="5853"/>
<source>Open Origin Info...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5990"/>
+ <location filename="mainwindow.cpp" line="5997"/>
<source>depends on missing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5994"/>
+ <location filename="mainwindow.cpp" line="6001"/>
<source>incompatible with &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6020"/>
+ <location filename="mainwindow.cpp" line="6027"/>
<source>Please wait while LOOT is running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6117"/>
+ <location filename="mainwindow.cpp" line="6124"/>
<source>loot failed. Exit code was: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6139"/>
+ <location filename="mainwindow.cpp" line="6146"/>
<source>failed to start loot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6142"/>
+ <location filename="mainwindow.cpp" line="6149"/>
<source>failed to run loot: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6146"/>
+ <location filename="mainwindow.cpp" line="6153"/>
<source>Errors occured</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6193"/>
+ <location filename="mainwindow.cpp" line="6200"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6203"/>
+ <location filename="mainwindow.cpp" line="6210"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6216"/>
+ <location filename="mainwindow.cpp" line="6223"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6216"/>
+ <location filename="mainwindow.cpp" line="6223"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6237"/>
- <location filename="mainwindow.cpp" line="6259"/>
+ <location filename="mainwindow.cpp" line="6244"/>
+ <location filename="mainwindow.cpp" line="6266"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6238"/>
- <location filename="mainwindow.cpp" line="6260"/>
+ <location filename="mainwindow.cpp" line="6245"/>
+ <location filename="mainwindow.cpp" line="6267"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6249"/>
+ <location filename="mainwindow.cpp" line="6256"/>
<source>Backup of modlist created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6355"/>
+ <location filename="mainwindow.cpp" line="6362"/>
<source>A file with the same name has already been downloaded. What would you like to do?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6357"/>
+ <location filename="mainwindow.cpp" line="6364"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6358"/>
+ <location filename="mainwindow.cpp" line="6365"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6359"/>
+ <location filename="mainwindow.cpp" line="6366"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6468"/>
+ <location filename="mainwindow.cpp" line="6475"/>
<source>Set the priority of the selected mods</source>
<translation type="unfinished"></translation>
</message>
@@ -4422,172 +4422,172 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="992"/>
- <location filename="organizercore.cpp" line="1050"/>
+ <location filename="organizercore.cpp" line="999"/>
+ <location filename="organizercore.cpp" line="1057"/>
<source>Installation successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1000"/>
- <location filename="organizercore.cpp" line="1060"/>
+ <location filename="organizercore.cpp" line="1007"/>
+ <location filename="organizercore.cpp" line="1067"/>
<source>Configure Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1001"/>
- <location filename="organizercore.cpp" line="1061"/>
+ <location filename="organizercore.cpp" line="1008"/>
+ <location filename="organizercore.cpp" line="1068"/>
<source>This mod contains ini tweaks. Do you want to configure them now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1013"/>
- <location filename="organizercore.cpp" line="1071"/>
+ <location filename="organizercore.cpp" line="1020"/>
+ <location filename="organizercore.cpp" line="1078"/>
<source>mod not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1016"/>
- <location filename="organizercore.cpp" line="1078"/>
+ <location filename="organizercore.cpp" line="1023"/>
+ <location filename="organizercore.cpp" line="1085"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1017"/>
- <location filename="organizercore.cpp" line="1079"/>
+ <location filename="organizercore.cpp" line="1024"/>
+ <location filename="organizercore.cpp" line="1086"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1297"/>
+ <location filename="organizercore.cpp" line="1304"/>
<source>Executable not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1325"/>
+ <location filename="organizercore.cpp" line="1332"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1326"/>
+ <location filename="organizercore.cpp" line="1333"/>
<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="organizercore.cpp" line="1357"/>
+ <location filename="organizercore.cpp" line="1364"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1365"/>
+ <location filename="organizercore.cpp" line="1372"/>
<source>Windows Event Log Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1366"/>
+ <location filename="organizercore.cpp" line="1373"/>
<source>The Windows Event Log service is disabled and/or not running. This prevents USVFS from running properly. Your mods may not be working in the executable that you are launching. Note that you may have to restart MO and/or your PC after the service is fixed.
Continue launching %1?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1378"/>
+ <location filename="organizercore.cpp" line="1385"/>
<source>Blacklisted Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1379"/>
+ <location filename="organizercore.cpp" line="1386"/>
<source>The executable you are attempted to launch is blacklisted in the virtual file system. This will likely prevent the executable, and any executables that are launched by this one, from seeing any mods. This could extend to INI files, save games and any other virtualized files.
Continue launching %1?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1474"/>
+ <location filename="organizercore.cpp" line="1481"/>
<source>No profile set</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1770"/>
+ <location filename="organizercore.cpp" line="1777"/>
<source>Failed to refresh list of esps: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1879"/>
+ <location filename="organizercore.cpp" line="1886"/>
<source>Multiple esps/esls activated, please check that they don&apos;t conflict.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1967"/>
+ <location filename="organizercore.cpp" line="1974"/>
<source>Download?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1968"/>
+ <location filename="organizercore.cpp" line="1975"/>
<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="organizercore.cpp" line="2103"/>
- <location filename="organizercore.cpp" line="2152"/>
+ <location filename="organizercore.cpp" line="2110"/>
+ <location filename="organizercore.cpp" line="2159"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2159"/>
- <location filename="organizercore.cpp" line="2176"/>
+ <location filename="organizercore.cpp" line="2166"/>
+ <location filename="organizercore.cpp" line="2183"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2183"/>
+ <location filename="organizercore.cpp" line="2190"/>
<source>Login failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2184"/>
+ <location filename="organizercore.cpp" line="2191"/>
<source>Login failed, try again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2193"/>
+ <location filename="organizercore.cpp" line="2200"/>
<source>login failed: %1. Download will not be associated with an account</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2201"/>
+ <location filename="organizercore.cpp" line="2208"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2211"/>
+ <location filename="organizercore.cpp" line="2218"/>
<source>login failed: %1. You need to log-in with Nexus to update MO.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2264"/>
+ <location filename="organizercore.cpp" line="2271"/>
<source>MO1 &quot;Script Extender&quot; load mechanism has left hook.dll in your game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2267"/>
- <location filename="organizercore.cpp" line="2283"/>
+ <location filename="organizercore.cpp" line="2274"/>
+ <location filename="organizercore.cpp" line="2290"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2276"/>
+ <location filename="organizercore.cpp" line="2283"/>
<source>&lt;a href=&quot;%1&quot;&gt;hook.dll&lt;/a&gt; has been found in your game folder (right click to copy the full path). This is most likely a leftover of setting the ModOrganizer 1 load mechanism to &quot;Script Extender&quot;, in which case you must remove this file either by changing the load mechanism in ModOrganizer 1 or manually removing the file, otherwise the game is likely to crash and burn.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2310"/>
+ <location filename="organizercore.cpp" line="2317"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2382"/>
+ <location filename="organizercore.cpp" line="2389"/>
<source>The designated write target &quot;%1&quot; is not enabled.</source>
<translation type="unfinished"></translation>
</message>
@@ -5584,58 +5584,64 @@ If the folder was still in use, restart MO and try again.</source>
<message>
<location filename="main.cpp" line="357"/>
<location filename="main.cpp" line="375"/>
+ <location filename="main.cpp" line="388"/>
<source>Please select the game to manage</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="385"/>
+ <location filename="main.cpp" line="396"/>
+ <source>Canceled finding game in &quot;%1&quot;.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="main.cpp" line="401"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="537"/>
+ <location filename="main.cpp" line="554"/>
<source>Please select the game edition you have (MO can&apos;t start the game correctly if this is set incorrectly!)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="574"/>
+ <location filename="main.cpp" line="591"/>
<source>failed to start shortcut: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="596"/>
+ <location filename="main.cpp" line="613"/>
<source>failed to start application: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="682"/>
+ <location filename="main.cpp" line="699"/>
<location filename="settings.cpp" line="1126"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="683"/>
+ <location filename="main.cpp" line="700"/>
<source>An instance of Mod Organizer is already running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="main.cpp" line="698"/>
+ <location filename="main.cpp" line="715"/>
<source>Failed to set up instance</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="939"/>
+ <location filename="mainwindow.cpp" line="941"/>
<source>Please use &quot;Help&quot; from the toolbar to get usage instructions to all elements</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1428"/>
+ <location filename="mainwindow.cpp" line="1430"/>
<location filename="mainwindow.cpp" line="4917"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1440"/>
+ <location filename="mainwindow.cpp" line="1442"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>