summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainwindow.cpp23
-rw-r--r--src/mainwindow.h2
-rw-r--r--src/organizer_en.ts196
3 files changed, 111 insertions, 110 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index f7cca785..f6ec4f40 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -338,7 +338,7 @@ 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->setMenu(modListContextMenu(ui->listOptionsBtn));
connect(ui->listOptionsBtn, SIGNAL(pressed()), this, SLOT(on_listOptionsBtn_pressed()));
ui->openFolderMenu->setMenu(openFolderMenu());
@@ -4375,9 +4375,9 @@ QMenu *MainWindow::openFolderMenu()
return FolderMenu;
}
-QMenu *MainWindow::modListContextMenu()
+QMenu *MainWindow::modListContextMenu(QWidget *parent)
{
- QMenu *menu = new QMenu(this);
+ QMenu *menu = new QMenu(parent);
menu->addAction(tr("Install Mod..."), this, SLOT(installMod_clicked()));
menu->addAction(tr("Create empty mod"), this, SLOT(createEmptyMod_clicked()));
@@ -4404,7 +4404,7 @@ void MainWindow::addModSendToContextMenu(QMenu *menu)
if (m_ModListSortProxy->sortColumn() != ModList::COL_PRIORITY)
return;
- QMenu *sub_menu = new QMenu(this);
+ QMenu *sub_menu = new QMenu(menu);
sub_menu->setTitle(tr("Send to"));
sub_menu->addAction(tr("Top"), this, SLOT(sendSelectedModsToTop_clicked()));
sub_menu->addAction(tr("Bottom"), this, SLOT(sendSelectedModsToBottom_clicked()));
@@ -4439,12 +4439,12 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
m_ContextRow = m_ContextIdx.row();
QMenu *menu = nullptr;
- QMenu *allMods = modListContextMenu();
if (m_ContextRow == -1) {
// no selection
- menu = allMods;
+ menu = modListContextMenu(this);
} else {
menu = new QMenu(this);
+ QMenu *allMods = modListContextMenu(menu);
allMods->setTitle(tr("All Mods"));
menu->addMenu(allMods);
menu->addSeparator();
@@ -4463,11 +4463,11 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
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"));
+ 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"));
+ QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), menu);
connect(primaryCategoryMenu, SIGNAL(aboutToShow()), this, SLOT(addPrimaryCategoryCandidates()));
addMenuAsPushButton(menu, primaryCategoryMenu);
menu->addSeparator();
@@ -4482,12 +4482,12 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_FOREIGN) != flags.end()) {
addModSendToContextMenu(menu);
} else {
- QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"));
+ 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"));
+ QMenu *primaryCategoryMenu = new QMenu(tr("Primary Category"), menu);
connect(primaryCategoryMenu, SIGNAL(aboutToShow()), this, SLOT(addPrimaryCategoryCandidates()));
addMenuAsPushButton(menu, primaryCategoryMenu);
@@ -4568,6 +4568,7 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
}
menu->exec(modList->mapToGlobal(pos));
+ delete menu;
} catch (const std::exception &e) {
reportError(tr("Exception: ").arg(e.what()));
} catch (...) {
@@ -4920,7 +4921,7 @@ void MainWindow::languageChange(const QString &newLanguage)
updateDownloadView();
updateProblemsButton();
- ui->listOptionsBtn->setMenu(modListContextMenu());
+ ui->listOptionsBtn->setMenu(modListContextMenu(ui->listOptionsBtn));
ui->openFolderMenu->setMenu(openFolderMenu());
}
diff --git a/src/mainwindow.h b/src/mainwindow.h
index e919ed2c..6e2f247d 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();
+ QMenu *modListContextMenu(QWidget *parent);
void addModSendToContextMenu(QMenu *menu);
void addPluginSendToContextMenu(QMenu *menu);
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index ced5b0cb..dd4d365e 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -1732,7 +1732,7 @@ p, li { white-space: pre-wrap; }
<location filename="mainwindow.ui" line="1175"/>
<location filename="mainwindow.ui" line="1318"/>
<location filename="mainwindow.cpp" line="4394"/>
- <location filename="mainwindow.cpp" line="5331"/>
+ <location filename="mainwindow.cpp" line="5332"/>
<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="5262"/>
+ <location filename="mainwindow.cpp" line="5263"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
@@ -1969,7 +1969,7 @@ Right now this has very limited functionality</oldsource>
</message>
<message>
<location filename="mainwindow.ui" line="1645"/>
- <location filename="mainwindow.cpp" line="5354"/>
+ <location filename="mainwindow.cpp" line="5355"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -2269,8 +2269,8 @@ Error: %1</source>
</message>
<message>
<location filename="mainwindow.cpp" line="2527"/>
- <location filename="mainwindow.cpp" line="5088"/>
- <location filename="mainwindow.cpp" line="5112"/>
+ <location filename="mainwindow.cpp" line="5089"/>
+ <location filename="mainwindow.cpp" line="5113"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
@@ -2278,7 +2278,7 @@ Error: %1</source>
<location filename="mainwindow.cpp" line="2604"/>
<location filename="mainwindow.cpp" line="4092"/>
<location filename="mainwindow.cpp" line="4100"/>
- <location filename="mainwindow.cpp" line="4643"/>
+ <location filename="mainwindow.cpp" line="4644"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
@@ -2432,7 +2432,7 @@ Please enter a name:</source>
</message>
<message>
<location filename="mainwindow.cpp" line="3616"/>
- <location filename="mainwindow.cpp" line="5692"/>
+ <location filename="mainwindow.cpp" line="5693"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
@@ -2460,7 +2460,7 @@ This function will guess the versioning scheme under the assumption that the ins
</message>
<message>
<location filename="mainwindow.cpp" line="4009"/>
- <location filename="mainwindow.cpp" line="5230"/>
+ <location filename="mainwindow.cpp" line="5231"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
@@ -2769,13 +2769,13 @@ You can also use online editors and converters instead.</source>
</message>
<message>
<location filename="mainwindow.cpp" line="4510"/>
- <location filename="mainwindow.cpp" line="5805"/>
+ <location filename="mainwindow.cpp" line="5806"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="4511"/>
- <location filename="mainwindow.cpp" line="5806"/>
+ <location filename="mainwindow.cpp" line="5807"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
@@ -2835,34 +2835,34 @@ You can also use online editors and converters instead.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4572"/>
- <location filename="mainwindow.cpp" line="5853"/>
+ <location filename="mainwindow.cpp" line="4573"/>
+ <location filename="mainwindow.cpp" line="5854"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4574"/>
- <location filename="mainwindow.cpp" line="5855"/>
+ <location filename="mainwindow.cpp" line="4575"/>
+ <location filename="mainwindow.cpp" line="5856"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4603"/>
+ <location filename="mainwindow.cpp" line="4604"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4605"/>
+ <location filename="mainwindow.cpp" line="4606"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4640"/>
+ <location filename="mainwindow.cpp" line="4641"/>
<source>%1 more</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4644"/>
+ <location filename="mainwindow.cpp" line="4645"/>
<source>Are you sure you want to remove the following %n save(s)?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;&lt;br&gt;Removed saves will be sent to the Recycle Bin.</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2870,12 +2870,12 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4690"/>
<source>Enable Mods...</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4704"/>
+ <location filename="mainwindow.cpp" line="4705"/>
<source>Delete %n save(s)</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2883,22 +2883,22 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4746"/>
+ <location filename="mainwindow.cpp" line="4747"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4768"/>
+ <location filename="mainwindow.cpp" line="4769"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4798"/>
+ <location filename="mainwindow.cpp" line="4799"/>
<source>Restarting MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4799"/>
+ <location filename="mainwindow.cpp" line="4800"/>
<source>Changing the managed game directory requires restarting MO.
Any pending downloads will be paused.
@@ -2906,335 +2906,335 @@ Click OK to restart MO now.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4819"/>
+ <location filename="mainwindow.cpp" line="4820"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4959"/>
+ <location filename="mainwindow.cpp" line="4960"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4965"/>
+ <location filename="mainwindow.cpp" line="4966"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5007"/>
+ <location filename="mainwindow.cpp" line="5008"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5007"/>
+ <location filename="mainwindow.cpp" line="5008"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5033"/>
+ <location filename="mainwindow.cpp" line="5034"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5034"/>
+ <location filename="mainwindow.cpp" line="5035"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5048"/>
+ <location filename="mainwindow.cpp" line="5049"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5048"/>
+ <location filename="mainwindow.cpp" line="5049"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5073"/>
- <location filename="mainwindow.cpp" line="5098"/>
+ <location filename="mainwindow.cpp" line="5074"/>
+ <location filename="mainwindow.cpp" line="5099"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5073"/>
+ <location filename="mainwindow.cpp" line="5074"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5076"/>
- <location filename="mainwindow.cpp" line="5101"/>
+ <location filename="mainwindow.cpp" line="5077"/>
+ <location filename="mainwindow.cpp" line="5102"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5076"/>
- <location filename="mainwindow.cpp" line="5101"/>
+ <location filename="mainwindow.cpp" line="5077"/>
+ <location filename="mainwindow.cpp" line="5102"/>
<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="5098"/>
+ <location filename="mainwindow.cpp" line="5099"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5142"/>
- <location filename="mainwindow.cpp" line="6467"/>
+ <location filename="mainwindow.cpp" line="5143"/>
+ <location filename="mainwindow.cpp" line="6468"/>
<source>Set Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5142"/>
+ <location filename="mainwindow.cpp" line="5143"/>
<source>Set the priority of the selected plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5197"/>
+ <location filename="mainwindow.cpp" line="5198"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5210"/>
+ <location filename="mainwindow.cpp" line="5211"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5230"/>
+ <location filename="mainwindow.cpp" line="5231"/>
<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="5264"/>
+ <location filename="mainwindow.cpp" line="5265"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5311"/>
+ <location filename="mainwindow.cpp" line="5312"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5312"/>
+ <location filename="mainwindow.cpp" line="5313"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5316"/>
+ <location filename="mainwindow.cpp" line="5317"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5322"/>
+ <location filename="mainwindow.cpp" line="5323"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5324"/>
+ <location filename="mainwindow.cpp" line="5325"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5330"/>
+ <location filename="mainwindow.cpp" line="5331"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5355"/>
+ <location filename="mainwindow.cpp" line="5356"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5494"/>
+ <location filename="mainwindow.cpp" line="5495"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5494"/>
+ <location filename="mainwindow.cpp" line="5495"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5529"/>
+ <location filename="mainwindow.cpp" line="5530"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5544"/>
- <location filename="mainwindow.cpp" line="5606"/>
+ <location filename="mainwindow.cpp" line="5545"/>
+ <location filename="mainwindow.cpp" line="5607"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5556"/>
- <location filename="mainwindow.cpp" line="6043"/>
+ <location filename="mainwindow.cpp" line="5557"/>
+ <location filename="mainwindow.cpp" line="6044"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5556"/>
+ <location filename="mainwindow.cpp" line="5557"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5588"/>
+ <location filename="mainwindow.cpp" line="5589"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5617"/>
+ <location filename="mainwindow.cpp" line="5618"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5663"/>
+ <location filename="mainwindow.cpp" line="5664"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5693"/>
+ <location filename="mainwindow.cpp" line="5694"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5740"/>
+ <location filename="mainwindow.cpp" line="5741"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5741"/>
+ <location filename="mainwindow.cpp" line="5742"/>
<source>Deselect filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5794"/>
+ <location filename="mainwindow.cpp" line="5795"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5810"/>
+ <location filename="mainwindow.cpp" line="5811"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5811"/>
+ <location filename="mainwindow.cpp" line="5812"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5832"/>
+ <location filename="mainwindow.cpp" line="5833"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5835"/>
+ <location filename="mainwindow.cpp" line="5836"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5839"/>
+ <location filename="mainwindow.cpp" line="5840"/>
<source>Open Origin in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5846"/>
+ <location filename="mainwindow.cpp" line="5847"/>
<source>Open Origin Info...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5989"/>
+ <location filename="mainwindow.cpp" line="5990"/>
<source>depends on missing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5993"/>
+ <location filename="mainwindow.cpp" line="5994"/>
<source>incompatible with &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6019"/>
+ <location filename="mainwindow.cpp" line="6020"/>
<source>Please wait while LOOT is running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6116"/>
+ <location filename="mainwindow.cpp" line="6117"/>
<source>loot failed. Exit code was: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6138"/>
+ <location filename="mainwindow.cpp" line="6139"/>
<source>failed to start loot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6141"/>
+ <location filename="mainwindow.cpp" line="6142"/>
<source>failed to run loot: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6145"/>
+ <location filename="mainwindow.cpp" line="6146"/>
<source>Errors occured</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6192"/>
+ <location filename="mainwindow.cpp" line="6193"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6202"/>
+ <location filename="mainwindow.cpp" line="6203"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6215"/>
+ <location filename="mainwindow.cpp" line="6216"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6215"/>
+ <location filename="mainwindow.cpp" line="6216"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6236"/>
- <location filename="mainwindow.cpp" line="6258"/>
+ <location filename="mainwindow.cpp" line="6237"/>
+ <location filename="mainwindow.cpp" line="6259"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6237"/>
- <location filename="mainwindow.cpp" line="6259"/>
+ <location filename="mainwindow.cpp" line="6238"/>
+ <location filename="mainwindow.cpp" line="6260"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6248"/>
+ <location filename="mainwindow.cpp" line="6249"/>
<source>Backup of modlist created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6354"/>
+ <location filename="mainwindow.cpp" line="6355"/>
<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="6356"/>
+ <location filename="mainwindow.cpp" line="6357"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6357"/>
+ <location filename="mainwindow.cpp" line="6358"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6358"/>
+ <location filename="mainwindow.cpp" line="6359"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6467"/>
+ <location filename="mainwindow.cpp" line="6468"/>
<source>Set the priority of the selected mods</source>
<translation type="unfinished"></translation>
</message>
@@ -5649,7 +5649,7 @@ If the folder was still in use, restart MO and try again.</source>
</message>
<message>
<location filename="mainwindow.cpp" line="1428"/>
- <location filename="mainwindow.cpp" line="4916"/>
+ <location filename="mainwindow.cpp" line="4917"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>