summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-12-12 20:26:35 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-12-12 20:35:23 -0600
commit4436d376a8d426867f217b03838570a424b09c5f (patch)
tree8afa85ec70e2bb571304088806d8b78686e06f50
parent40c82fc1908a8ca53abeeabdc618e81e941c987c (diff)
Clean up and fix merge issues
-rw-r--r--src/directoryrefresher.cpp3
-rw-r--r--src/mainwindow.cpp77
-rw-r--r--src/mainwindow.ui15
-rw-r--r--src/modflagicondelegate.cpp3
-rw-r--r--src/modinfo.h10
-rw-r--r--src/modinfodialog.h3
-rw-r--r--src/modinfowithconflictinfo.cpp2
-rw-r--r--src/modlist.cpp18
-rw-r--r--src/modlist.h2
-rw-r--r--src/organizer_en.ts1124
-rw-r--r--src/organizercore.cpp18
-rw-r--r--src/settings.cpp4
12 files changed, 652 insertions, 627 deletions
diff --git a/src/directoryrefresher.cpp b/src/directoryrefresher.cpp
index 82eb093b..e6e6a8e0 100644
--- a/src/directoryrefresher.cpp
+++ b/src/directoryrefresher.cpp
@@ -85,7 +85,6 @@ void DirectoryRefresher::addModBSAToStructure(DirectoryEntry *directoryStructure
int priority, const QString &directory, const QStringList &archives)
{
std::wstring directoryW = ToWString(QDir::toNativeSeparators(directory));
- //QStringList loadOrder = QStringList();
IPluginGame *game = qApp->property("managed_game").value<IPluginGame*>();
GamePlugins *gamePlugins = game->feature<GamePlugins>();
@@ -95,7 +94,7 @@ void DirectoryRefresher::addModBSAToStructure(DirectoryEntry *directoryStructure
for (const QString &archive : archives) {
QFileInfo fileInfo(archive);
if (m_EnabledArchives.find(fileInfo.fileName()) != m_EnabledArchives.end()) {
-
+
int order = -1;
for (auto plugin : loadOrder)
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index cdd53dc9..73a40f46 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -313,8 +313,7 @@ MainWindow::MainWindow(QSettings &initSettings
ui->espList->setItemDelegateForColumn(PluginList::COL_FLAGS, new GenericIconDelegate(ui->espList));
ui->espList->installEventFilter(m_OrganizerCore.pluginList());
- //bsaList converted to normal QTreeWidget since we can't sort BSAs anymore.
- //ui->bsaList->setLocalMoveOnly(true);
+ ui->bsaList->setLocalMoveOnly(true);
bool pluginListAdjusted = registerWidgetState(ui->espList->objectName(), ui->espList->header(), "plugin_list_state");
registerWidgetState(ui->dataTree->objectName(), ui->dataTree->header());
@@ -451,15 +450,15 @@ MainWindow::MainWindow(QSettings &initSettings
if (m_OrganizerCore.getArchiveParsing())
{
- ui->showArchiveDataCheckBox->setCheckState(Qt::Checked);
- ui->showArchiveDataCheckBox->setEnabled(true);
- m_showArchiveData = true;
+ ui->showArchiveDataCheckBox->setCheckState(Qt::Checked);
+ ui->showArchiveDataCheckBox->setEnabled(true);
+ m_showArchiveData = true;
}
else
{
- ui->showArchiveDataCheckBox->setCheckState(Qt::Unchecked);
- ui->showArchiveDataCheckBox->setEnabled(false);
- m_showArchiveData = false;
+ ui->showArchiveDataCheckBox->setCheckState(Qt::Unchecked);
+ ui->showArchiveDataCheckBox->setEnabled(false);
+ m_showArchiveData = false;
}
refreshExecutablesList();
@@ -1230,7 +1229,7 @@ void MainWindow::updateTo(QTreeWidgetItem *subTree, const std::wstring &director
directoryChild->setData(0, Qt::DecorationRole, (new QFileIconProvider())->icon(QFileIconProvider::Folder));
directoryChild->setData(0, Qt::UserRole + 3, isDirectory);
- if (conflictsOnly) {
+ if (conflictsOnly || !m_showArchiveData) {
updateTo(directoryChild, temp.str(), **current, conflictsOnly);
if (directoryChild->childCount() != 0) {
subTree->addChild(directoryChild);
@@ -1264,9 +1263,9 @@ void MainWindow::updateTo(QTreeWidgetItem *subTree, const std::wstring &director
if (conflictsOnly && (current->getAlternatives().size() == 0)) {
continue;
}
-
+
bool isArchive = false;
- int originID = current->getOrigin(isArchive);
+ int originID = current->getOrigin(isArchive);
if (!m_showArchiveData && isArchive) {
continue;
}
@@ -2304,10 +2303,10 @@ void MainWindow::fileMoved(const QString &filePath, const QString &oldOriginName
QString fullNewPath = ToQString(newOrigin.getPath()) + "\\" + filePath;
WIN32_FIND_DATAW findData;
- HANDLE hFind;
- hFind = ::FindFirstFileW(ToWString(fullNewPath).c_str(), &findData);
+ HANDLE hFind;
+ hFind = ::FindFirstFileW(ToWString(fullNewPath).c_str(), &findData);
filePtr->addOrigin(newOrigin.getID(), findData.ftCreationTime, L"", -1);
- FindClose(hFind);
+ FindClose(hFind);
}
if (m_OrganizerCore.directoryStructure()->originExists(ToWString(oldOriginName))) {
FilesOrigin &oldOrigin = m_OrganizerCore.directoryStructure()->getOriginByName(ToWString(oldOriginName));
@@ -4372,22 +4371,22 @@ void MainWindow::on_actionSettings_triggered()
const auto state = settings.archiveParsing();
if (state != m_OrganizerCore.getArchiveParsing())
{
- m_OrganizerCore.setArchiveParsing(state);
- if (!state)
- {
- ui->showArchiveDataCheckBox->setCheckState(Qt::Unchecked);
- ui->showArchiveDataCheckBox->setEnabled(false);
- m_showArchiveData = false;
- }
- else
- {
- ui->showArchiveDataCheckBox->setCheckState(Qt::Checked);
- ui->showArchiveDataCheckBox->setEnabled(true);
- m_showArchiveData = true;
- }
- m_OrganizerCore.refreshModList();
- m_OrganizerCore.refreshDirectoryStructure();
- m_OrganizerCore.refreshLists();
+ m_OrganizerCore.setArchiveParsing(state);
+ if (!state)
+ {
+ ui->showArchiveDataCheckBox->setCheckState(Qt::Unchecked);
+ ui->showArchiveDataCheckBox->setEnabled(false);
+ m_showArchiveData = false;
+ }
+ else
+ {
+ ui->showArchiveDataCheckBox->setCheckState(Qt::Checked);
+ ui->showArchiveDataCheckBox->setEnabled(true);
+ m_showArchiveData = true;
+ }
+ m_OrganizerCore.refreshModList();
+ m_OrganizerCore.refreshDirectoryStructure();
+ m_OrganizerCore.refreshLists();
}
if (settings.getCacheDirectory() != oldCacheDirectory) {
@@ -6027,14 +6026,14 @@ void MainWindow::sendSelectedModsToSeparator_clicked()
void MainWindow::on_showArchiveDataCheckBox_toggled(const bool checked)
{
- if (m_OrganizerCore.getArchiveParsing() && checked)
- {
- m_showArchiveData = checked;
- }
- else
- {
- m_showArchiveData = false;
- }
- refreshDataTree();
+ if (m_OrganizerCore.getArchiveParsing() && checked)
+ {
+ m_showArchiveData = checked;
+ }
+ else
+ {
+ m_showArchiveData = false;
+ }
+ refreshDataTree();
}
diff --git a/src/mainwindow.ui b/src/mainwindow.ui
index eb88a855..c6b43be0 100644
--- a/src/mainwindow.ui
+++ b/src/mainwindow.ui
@@ -831,6 +831,9 @@ p, li { white-space: pre-wrap; }
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QPushButton" name="bossButton">
+ <property name="visible">
+ <bool>true</bool>
+ </property>
<property name="text">
<string>Sort</string>
</property>
@@ -1045,7 +1048,7 @@ p, li { white-space: pre-wrap; }
</layout>
</item>
<item>
- <widget class="QTreeWidget" name="bsaList">
+ <widget class="MOBase::SortableTreeWidget" name="bsaList">
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
@@ -1061,19 +1064,19 @@ p, li { white-space: pre-wrap; }
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
- <property name="dragEnabled">
+ <property name="dragEnabled" stdset="0">
<bool>false</bool>
</property>
- <property name="dragDropOverwriteMode">
+ <property name="dragDropOverwriteMode" stdset="0">
<bool>false</bool>
</property>
- <property name="indentation">
+ <property name="indentation" stdset="0">
<number>20</number>
</property>
- <property name="itemsExpandable">
+ <property name="itemsExpandable" stdset="0">
<bool>true</bool>
</property>
- <property name="columnCount">
+ <property name="columnCount" stdset="0">
<number>1</number>
</property>
<column>
diff --git a/src/modflagicondelegate.cpp b/src/modflagicondelegate.cpp
index 48d71313..eb6945c4 100644
--- a/src/modflagicondelegate.cpp
+++ b/src/modflagicondelegate.cpp
@@ -89,11 +89,8 @@ QString ModFlagIconDelegate::getFlagIcon(ModInfo::EFlag flag) const
case ModInfo::FLAG_NOTES: return ":/MO/gui/emblem_notes";
case ModInfo::FLAG_CONFLICT_MIXED: return ":/MO/gui/emblem_conflict_mixed";
case ModInfo::FLAG_CONFLICT_OVERWRITE: return ":/MO/gui/emblem_conflict_overwrite";
- case ModInfo::FLAG_CONFLICT_LOOSE_OVERWRITE_ARCHIVE: return ":/MO/gui/emblem_conflict_loose_overwrite_archive";
case ModInfo::FLAG_CONFLICT_OVERWRITTEN: return ":/MO/gui/emblem_conflict_overwritten";
- case ModInfo::FLAG_CONFLICT_MIXED: return ":/MO/gui/emblem_conflict_mixed";
case ModInfo::FLAG_CONFLICT_REDUNDANT: return ":MO/gui/emblem_conflict_redundant";
- case ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_MIXED: return ":/MO/gui/archive_loose_conflict_mixed";
case ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITE: return ":/MO/gui/archive_loose_conflict_overwrite";
case ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITTEN: return ":/MO/gui/archive_loose_conflict_overwritten";
case ModInfo::FLAG_ARCHIVE_CONFLICT_MIXED: return ":/MO/gui/archive_conflict_mixed";
diff --git a/src/modinfo.h b/src/modinfo.h
index 00859209..350b3a0d 100644
--- a/src/modinfo.h
+++ b/src/modinfo.h
@@ -640,16 +640,6 @@ public:
virtual std::set<unsigned int> getModArchiveOverwritten() { return std::set<unsigned int>(); }
/**
- * @return retrieve list of mods (as mod index) with archives that are overwritten by this one. Updates may be delayed
- */
- virtual std::set<unsigned int> getModArchiveOverwrite() { return std::set<unsigned int>(); }
-
- /**
- * @return list of mods (as mod index) with archives that overwrite this one. Updates may be delayed
- */
- virtual std::set<unsigned int> getModArchiveOverwritten() { return std::set<unsigned int>(); }
-
- /**
* @return retrieve list of mods (as mod index) with archives that are overwritten by thos mod's loose files. Updates may be delayed
*/
virtual std::set<unsigned int> getModArchiveLooseOverwrite() { return std::set<unsigned int>(); }
diff --git a/src/modinfodialog.h b/src/modinfodialog.h
index 6a315a93..52768649 100644
--- a/src/modinfodialog.h
+++ b/src/modinfodialog.h
@@ -78,7 +78,8 @@ public:
* @param modInfo info structure about the mod to display
* @param parent parend widget
**/
- explicit ModInfoDialog(ModInfo::Ptr modInfo, const MOShared::DirectoryEntry *directory, bool unmanaged, OrganizerCore *organizerCore, PluginContainer *pluginContainer, QWidget *parent = 0);
+ explicit ModInfoDialog(ModInfo::Ptr modInfo, const MOShared::DirectoryEntry *directory, bool unmanaged, OrganizerCore *organizerCore, PluginContainer *pluginContainer, QWidget *parent = 0);
+
~ModInfoDialog();
/**
diff --git a/src/modinfowithconflictinfo.cpp b/src/modinfowithconflictinfo.cpp
index 79896cc3..12cbf416 100644
--- a/src/modinfowithconflictinfo.cpp
+++ b/src/modinfowithconflictinfo.cpp
@@ -35,7 +35,7 @@ std::vector<ModInfo::EFlag> ModInfoWithConflictInfo::getFlags() const
switch (isLooseArchiveConflicted()) {
case CONFLICT_MIXED: {
result.push_back(ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITE);
- result.push_back(ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITTEN);
+ result.push_back(ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITTEN);
} break;
case CONFLICT_OVERWRITE: {
result.push_back(ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITE);
diff --git a/src/modlist.cpp b/src/modlist.cpp
index 8c070667..757fedb2 100644
--- a/src/modlist.cpp
+++ b/src/modlist.cpp
@@ -159,7 +159,6 @@ QString ModList::getFlagText(ModInfo::EFlag flag, ModInfo::Ptr modInfo) const
return output.join("<br>");
}
case ModInfo::FLAG_CONFLICT_OVERWRITE: return tr("Overwrites loose files");
- case ModInfo::FLAG_CONFLICT_LOOSE_OVERWRITE_ARCHIVE: return tr("Loose files overwrite another archive");
case ModInfo::FLAG_CONFLICT_OVERWRITTEN: return tr("Overwritten loose files");
case ModInfo::FLAG_CONFLICT_MIXED: return tr("Loose files Overwrites & Overwritten");
case ModInfo::FLAG_CONFLICT_REDUNDANT: return tr("Redundant");
@@ -420,13 +419,13 @@ QVariant ModList::data(const QModelIndex &modelIndex, int role) const
(archiveLooseOverwrite && (overwritten || archiveOverwritten)) ||
(archiveLooseOverwritten && (overwrite || archiveLooseOverwrite))
) {
- return QColor(255, 0, 255, 32); //TODO: Make configurable
- } else if (overwrite || archiveOverwrite || archiveLooseOverwrite) {
return Settings::instance().modlistOverwrittenLooseColor();
}
- } else if (overwritten || archiveOverwritten || archiveLooseOverwritten) {
+ else if (overwrite || archiveOverwrite || archiveLooseOverwrite) {
return Settings::instance().modlistOverwritingLooseColor();
- } else if (modInfo->hasFlag(ModInfo::FLAG_SEPARATOR)
+ } else if (overwritten || archiveOverwritten || archiveLooseOverwritten) {
+ return QColor(255, 0, 0, 64); //TODO: Make configurable
+ } else if (modInfo->hasFlag(ModInfo::FLAG_SEPARATOR)
&& modInfo->getColor().isValid()
&& ((role != ViewMarkingScrollBar::DEFAULT_ROLE)
|| Settings::instance().colorSeparatorScrollbar())) {
@@ -789,14 +788,7 @@ void ModList::setArchiveLooseOverwriteMarkers(const std::set<unsigned int> &over
void ModList::setPluginContainer(PluginContainer *pluginContianer)
{
- m_PluginContainer = pluginContianer;
-}
-
-void ModList::setArchiveOverwriteMarkers(const std::set<unsigned int> &overwrite, const std::set<unsigned int> &overwritten)
-{
- m_ArchiveOverwrite = overwrite;
- m_ArchiveOverwritten = overwritten;
- notifyChange(0, rowCount() - 1);
+ m_PluginContainer = pluginContianer;
}
bool ModList::modInfoAboutToChange(ModInfo::Ptr info)
diff --git a/src/modlist.h b/src/modlist.h
index a8263a76..49627d68 100644
--- a/src/modlist.h
+++ b/src/modlist.h
@@ -115,8 +115,6 @@ public:
void setArchiveOverwriteMarkers(const std::set<unsigned int> &overwrite, const std::set<unsigned int> &overwritten);
void setArchiveLooseOverwriteMarkers(const std::set<unsigned int> &overwrite, const std::set<unsigned int> &overwritten);
- void setArchiveOverwriteMarkers(const std::set<unsigned int> &overwrite, const std::set<unsigned int> &overwritten);
-
bool modInfoAboutToChange(ModInfo::Ptr info);
void modInfoChanged(ModInfo::Ptr info);
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index 44a386d6..550f7d5c 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -279,12 +279,12 @@ p, li { white-space: pre-wrap; }
<context>
<name>DirectoryRefresher</name>
<message>
- <location filename="directoryrefresher.cpp" line="94"/>
+ <location filename="directoryrefresher.cpp" line="112"/>
<source>failed to parse bsa %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="directoryrefresher.cpp" line="160"/>
+ <location filename="directoryrefresher.cpp" line="178"/>
<source>failed to read mod (%1): %2</source>
<translation type="unfinished"></translation>
</message>
@@ -1620,7 +1620,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="287"/>
<location filename="mainwindow.ui" line="879"/>
- <location filename="mainwindow.cpp" line="4014"/>
+ <location filename="mainwindow.cpp" line="4057"/>
<source>Create Backup</source>
<translation type="unfinished"></translation>
</message>
@@ -1657,7 +1657,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="615"/>
<location filename="mainwindow.ui" line="1002"/>
- <location filename="mainwindow.ui" line="1341"/>
+ <location filename="mainwindow.ui" line="1361"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
@@ -1783,9 +1783,9 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="mainwindow.ui" line="1114"/>
- <location filename="mainwindow.ui" line="1237"/>
- <location filename="mainwindow.cpp" line="3889"/>
- <location filename="mainwindow.cpp" line="4792"/>
+ <location filename="mainwindow.ui" line="1257"/>
+ <location filename="mainwindow.cpp" line="3932"/>
+ <location filename="mainwindow.cpp" line="4856"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
@@ -1805,23 +1805,34 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1158"/>
- <location filename="mainwindow.ui" line="1161"/>
- <source>Filter the above list so that only conflicts are displayed.</source>
+ <location filename="mainwindow.ui" line="1160"/>
+ <location filename="mainwindow.ui" line="1163"/>
+ <source>Filters the above list so that only conflicts are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1164"/>
+ <location filename="mainwindow.ui" line="1166"/>
<source>Show only conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1172"/>
+ <location filename="mainwindow.ui" line="1173"/>
+ <location filename="mainwindow.ui" line="1179"/>
+ <source>Filters the above list so that files from archives are not shown</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1182"/>
+ <source>Show files from Archives</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.ui" line="1192"/>
<source>Saves</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1196"/>
+ <location filename="mainwindow.ui" line="1216"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@@ -1832,160 +1843,160 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1216"/>
+ <location filename="mainwindow.ui" line="1236"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1234"/>
+ <location filename="mainwindow.ui" line="1254"/>
<source>Refresh downloads view</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1265"/>
+ <location filename="mainwindow.ui" line="1285"/>
<source>This is a list of mods you downloaded from Nexus. Double click one to install it. You can also drag an archive into here.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1321"/>
+ <location filename="mainwindow.ui" line="1341"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1386"/>
+ <location filename="mainwindow.ui" line="1406"/>
<source>Tool Bar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1429"/>
+ <location filename="mainwindow.ui" line="1449"/>
<source>Install Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1432"/>
+ <location filename="mainwindow.ui" line="1452"/>
<source>Install &amp;Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1435"/>
+ <location filename="mainwindow.ui" line="1455"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1438"/>
+ <location filename="mainwindow.ui" line="1458"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1447"/>
+ <location filename="mainwindow.ui" line="1467"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1450"/>
+ <location filename="mainwindow.ui" line="1470"/>
<source>&amp;Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1453"/>
+ <location filename="mainwindow.ui" line="1473"/>
<source>Configure Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1456"/>
+ <location filename="mainwindow.ui" line="1476"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1465"/>
+ <location filename="mainwindow.ui" line="1485"/>
<source>Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1468"/>
+ <location filename="mainwindow.ui" line="1488"/>
<source>&amp;Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1471"/>
+ <location filename="mainwindow.ui" line="1491"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1474"/>
+ <location filename="mainwindow.ui" line="1494"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1483"/>
- <location filename="mainwindow.ui" line="1489"/>
+ <location filename="mainwindow.ui" line="1503"/>
+ <location filename="mainwindow.ui" line="1509"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1486"/>
+ <location filename="mainwindow.ui" line="1506"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1492"/>
+ <location filename="mainwindow.ui" line="1512"/>
<source>Ctrl+I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1501"/>
+ <location filename="mainwindow.ui" line="1521"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1504"/>
+ <location filename="mainwindow.ui" line="1524"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1507"/>
+ <location filename="mainwindow.ui" line="1527"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1510"/>
+ <location filename="mainwindow.ui" line="1530"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1519"/>
+ <location filename="mainwindow.ui" line="1539"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1522"/>
+ <location filename="mainwindow.ui" line="1542"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1525"/>
+ <location filename="mainwindow.ui" line="1545"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1537"/>
- <location filename="mainwindow.cpp" line="4732"/>
+ <location filename="mainwindow.ui" line="1557"/>
+ <location filename="mainwindow.cpp" line="4796"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1540"/>
+ <location filename="mainwindow.ui" line="1560"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1552"/>
- <location filename="mainwindow.cpp" line="645"/>
+ <location filename="mainwindow.ui" line="1572"/>
+ <location filename="mainwindow.cpp" line="659"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1555"/>
+ <location filename="mainwindow.ui" line="1575"/>
<source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.
!Work in progress!
@@ -1993,830 +2004,830 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1567"/>
- <location filename="mainwindow.ui" line="1570"/>
+ <location filename="mainwindow.ui" line="1587"/>
+ <location filename="mainwindow.ui" line="1590"/>
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1573"/>
+ <location filename="mainwindow.ui" line="1593"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1582"/>
+ <location filename="mainwindow.ui" line="1602"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1585"/>
- <location filename="mainwindow.cpp" line="4815"/>
+ <location filename="mainwindow.ui" line="1605"/>
+ <location filename="mainwindow.cpp" line="4879"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1590"/>
+ <location filename="mainwindow.ui" line="1610"/>
<source>Copy Log to Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1599"/>
+ <location filename="mainwindow.ui" line="1619"/>
<source>Change Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1602"/>
+ <location filename="mainwindow.ui" line="1622"/>
<source>Open the Instance selection dialog to manage a different Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="329"/>
+ <location filename="mainwindow.cpp" line="330"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="330"/>
+ <location filename="mainwindow.cpp" line="331"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="331"/>
+ <location filename="mainwindow.cpp" line="332"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="356"/>
+ <location filename="mainwindow.cpp" line="357"/>
<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="633"/>
+ <location filename="mainwindow.cpp" line="647"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="634"/>
+ <location filename="mainwindow.cpp" line="648"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="646"/>
+ <location filename="mainwindow.cpp" line="660"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="722"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="712"/>
+ <location filename="mainwindow.cpp" line="726"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="716"/>
+ <location filename="mainwindow.cpp" line="730"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="720"/>
+ <location filename="mainwindow.cpp" line="734"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="759"/>
+ <location filename="mainwindow.cpp" line="773"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="760"/>
+ <location filename="mainwindow.cpp" line="774"/>
<source>About Qt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="812"/>
+ <location filename="mainwindow.cpp" line="826"/>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="813"/>
+ <location filename="mainwindow.cpp" line="827"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="821"/>
+ <location filename="mainwindow.cpp" line="835"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="865"/>
+ <location filename="mainwindow.cpp" line="879"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="866"/>
+ <location filename="mainwindow.cpp" line="880"/>
<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="902"/>
+ <location filename="mainwindow.cpp" line="916"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="903"/>
+ <location filename="mainwindow.cpp" line="917"/>
<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="1020"/>
+ <location filename="mainwindow.cpp" line="1034"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1022"/>
+ <location filename="mainwindow.cpp" line="1036"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1100"/>
+ <location filename="mainwindow.cpp" line="1114"/>
<source>Browse Mod Page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1294"/>
+ <location filename="mainwindow.cpp" line="1312"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1305"/>
+ <location filename="mainwindow.cpp" line="1323"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1388"/>
+ <location filename="mainwindow.cpp" line="1406"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1663"/>
+ <location filename="mainwindow.cpp" line="1681"/>
<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="1725"/>
+ <location filename="mainwindow.cpp" line="1743"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1786"/>
+ <location filename="mainwindow.cpp" line="1804"/>
<source>Notice: Your current MO version (%1) is lower than the previous version (%2).&lt;br&gt;The GUI may not downgrade gracefully, so you may experience oddities.&lt;br&gt;However, there should be no serious issues.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1890"/>
+ <location filename="mainwindow.cpp" line="1908"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1891"/>
+ <location filename="mainwindow.cpp" line="1909"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2066"/>
+ <location filename="mainwindow.cpp" line="2084"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2067"/>
+ <location filename="mainwindow.cpp" line="2085"/>
<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="2221"/>
+ <location filename="mainwindow.cpp" line="2253"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2261"/>
+ <location filename="mainwindow.cpp" line="2293"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2285"/>
+ <location filename="mainwindow.cpp" line="2317"/>
<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="2309"/>
+ <location filename="mainwindow.cpp" line="2341"/>
<source>&lt;Contains %1&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2344"/>
+ <location filename="mainwindow.cpp" line="2376"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2345"/>
+ <location filename="mainwindow.cpp" line="2377"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2346"/>
+ <location filename="mainwindow.cpp" line="2378"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2347"/>
+ <location filename="mainwindow.cpp" line="2379"/>
<source>&lt;Mod Backup&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2348"/>
+ <location filename="mainwindow.cpp" line="2380"/>
<source>&lt;Managed by MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2349"/>
+ <location filename="mainwindow.cpp" line="2381"/>
<source>&lt;Managed outside MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2350"/>
+ <location filename="mainwindow.cpp" line="2382"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2351"/>
+ <location filename="mainwindow.cpp" line="2383"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2352"/>
+ <location filename="mainwindow.cpp" line="2384"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2398"/>
+ <location filename="mainwindow.cpp" line="2430"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2411"/>
+ <location filename="mainwindow.cpp" line="2443"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2412"/>
+ <location filename="mainwindow.cpp" line="2444"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2415"/>
+ <location filename="mainwindow.cpp" line="2447"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2419"/>
- <location filename="mainwindow.cpp" line="4564"/>
- <location filename="mainwindow.cpp" line="4588"/>
+ <location filename="mainwindow.cpp" line="2451"/>
+ <location filename="mainwindow.cpp" line="4628"/>
+ <location filename="mainwindow.cpp" line="4652"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2479"/>
- <location filename="mainwindow.cpp" line="3610"/>
- <location filename="mainwindow.cpp" line="3618"/>
- <location filename="mainwindow.cpp" line="4139"/>
+ <location filename="mainwindow.cpp" line="2515"/>
+ <location filename="mainwindow.cpp" line="3653"/>
+ <location filename="mainwindow.cpp" line="3661"/>
+ <location filename="mainwindow.cpp" line="4182"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2480"/>
+ <location filename="mainwindow.cpp" line="2516"/>
<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="2493"/>
+ <location filename="mainwindow.cpp" line="2529"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2525"/>
- <location filename="mainwindow.cpp" line="2528"/>
- <location filename="mainwindow.cpp" line="2538"/>
+ <location filename="mainwindow.cpp" line="2561"/>
+ <location filename="mainwindow.cpp" line="2564"/>
+ <location filename="mainwindow.cpp" line="2574"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2525"/>
+ <location filename="mainwindow.cpp" line="2561"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2529"/>
+ <location filename="mainwindow.cpp" line="2565"/>
<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="2539"/>
+ <location filename="mainwindow.cpp" line="2575"/>
<source>Failed to create backup.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2556"/>
+ <location filename="mainwindow.cpp" line="2592"/>
<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="2572"/>
- <location filename="mainwindow.cpp" line="2599"/>
+ <location filename="mainwindow.cpp" line="2608"/>
+ <location filename="mainwindow.cpp" line="2635"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2655"/>
+ <location filename="mainwindow.cpp" line="2691"/>
<source>Failed to display overwrite dialog: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2843"/>
+ <location filename="mainwindow.cpp" line="2879"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2853"/>
+ <location filename="mainwindow.cpp" line="2889"/>
<source>Web page for this mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2980"/>
- <location filename="mainwindow.cpp" line="3110"/>
- <location filename="mainwindow.cpp" line="3951"/>
+ <location filename="mainwindow.cpp" line="3016"/>
+ <location filename="mainwindow.cpp" line="3153"/>
+ <location filename="mainwindow.cpp" line="3994"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2981"/>
+ <location filename="mainwindow.cpp" line="3017"/>
<source>This will create an empty mod.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="3120"/>
+ <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="3163"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3018"/>
+ <location filename="mainwindow.cpp" line="3054"/>
<source>Create Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3019"/>
+ <location filename="mainwindow.cpp" line="3055"/>
<source>This will create a new separator.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3026"/>
+ <location filename="mainwindow.cpp" line="3062"/>
<source>A separator with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3111"/>
+ <location filename="mainwindow.cpp" line="3154"/>
<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="3152"/>
- <location filename="mainwindow.cpp" line="5132"/>
+ <location filename="mainwindow.cpp" line="3195"/>
+ <location filename="mainwindow.cpp" line="5196"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3153"/>
+ <location filename="mainwindow.cpp" line="3196"/>
<source>About to recursively delete:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3504"/>
+ <location filename="mainwindow.cpp" line="3547"/>
<source>Not logged in, endorsement information will be wrong</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3512"/>
+ <location filename="mainwindow.cpp" line="3555"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3513"/>
+ <location filename="mainwindow.cpp" line="3556"/>
<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="3533"/>
- <location filename="mainwindow.cpp" line="4700"/>
+ <location filename="mainwindow.cpp" line="3576"/>
+ <location filename="mainwindow.cpp" line="4764"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3534"/>
+ <location filename="mainwindow.cpp" line="3577"/>
<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="3610"/>
+ <location filename="mainwindow.cpp" line="3653"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3661"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3683"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Export to csv</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3686"/>
+ <location filename="mainwindow.cpp" line="3729"/>
<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="3689"/>
+ <location filename="mainwindow.cpp" line="3732"/>
<source>Select what mods you want export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3690"/>
+ <location filename="mainwindow.cpp" line="3733"/>
<source>All installed mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3691"/>
+ <location filename="mainwindow.cpp" line="3734"/>
<source>Only active (checked) mods from your current profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3692"/>
+ <location filename="mainwindow.cpp" line="3735"/>
<source>All currently visible mods in the mod list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3713"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>Choose what Columns to export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3716"/>
+ <location filename="mainwindow.cpp" line="3759"/>
<source>Mod_Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3718"/>
+ <location filename="mainwindow.cpp" line="3761"/>
<source>Mod_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3720"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Mod_Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3721"/>
+ <location filename="mainwindow.cpp" line="3764"/>
<source>Primary_Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3722"/>
+ <location filename="mainwindow.cpp" line="3765"/>
<source>Nexus_ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
+ <location filename="mainwindow.cpp" line="3766"/>
<source>Mod_Nexus_URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3724"/>
+ <location filename="mainwindow.cpp" line="3767"/>
<source>Mod_Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3725"/>
+ <location filename="mainwindow.cpp" line="3768"/>
<source>Install_Date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3726"/>
+ <location filename="mainwindow.cpp" line="3769"/>
<source>Download_File_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3828"/>
+ <location filename="mainwindow.cpp" line="3871"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3847"/>
+ <location filename="mainwindow.cpp" line="3890"/>
<source>Open Game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3849"/>
+ <location filename="mainwindow.cpp" line="3892"/>
<source>Open MyGames folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3853"/>
+ <location filename="mainwindow.cpp" line="3896"/>
<source>Open Instance folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3855"/>
+ <location filename="mainwindow.cpp" line="3898"/>
<source>Open Mods folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3857"/>
+ <location filename="mainwindow.cpp" line="3900"/>
<source>Open Profile folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3859"/>
+ <location filename="mainwindow.cpp" line="3902"/>
<source>Open Downloads folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3863"/>
+ <location filename="mainwindow.cpp" line="3906"/>
<source>Open MO2 Install folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3865"/>
+ <location filename="mainwindow.cpp" line="3908"/>
<source>Open MO2 Plugins folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3867"/>
+ <location filename="mainwindow.cpp" line="3910"/>
<source>Open MO2 Logs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3876"/>
+ <location filename="mainwindow.cpp" line="3919"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3878"/>
+ <location filename="mainwindow.cpp" line="3921"/>
<source>Create empty mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3880"/>
+ <location filename="mainwindow.cpp" line="3923"/>
<source>Create Separator</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3884"/>
+ <location filename="mainwindow.cpp" line="3927"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3885"/>
+ <location filename="mainwindow.cpp" line="3928"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3887"/>
+ <location filename="mainwindow.cpp" line="3930"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3891"/>
+ <location filename="mainwindow.cpp" line="3934"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3903"/>
- <location filename="mainwindow.cpp" line="3919"/>
+ <location filename="mainwindow.cpp" line="3946"/>
+ <location filename="mainwindow.cpp" line="3962"/>
<source>Send to</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3904"/>
- <location filename="mainwindow.cpp" line="3920"/>
+ <location filename="mainwindow.cpp" line="3947"/>
+ <location filename="mainwindow.cpp" line="3963"/>
<source>Top</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3905"/>
- <location filename="mainwindow.cpp" line="3921"/>
+ <location filename="mainwindow.cpp" line="3948"/>
+ <location filename="mainwindow.cpp" line="3964"/>
<source>Bottom</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3906"/>
- <location filename="mainwindow.cpp" line="3922"/>
+ <location filename="mainwindow.cpp" line="3949"/>
+ <location filename="mainwindow.cpp" line="3965"/>
<source>Priority...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3907"/>
+ <location filename="mainwindow.cpp" line="3950"/>
<source>Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3943"/>
+ <location filename="mainwindow.cpp" line="3986"/>
<source>All Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3950"/>
+ <location filename="mainwindow.cpp" line="3993"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3952"/>
+ <location filename="mainwindow.cpp" line="3995"/>
<source>Clear Overwrite...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3954"/>
- <location filename="mainwindow.cpp" line="4055"/>
+ <location filename="mainwindow.cpp" line="3997"/>
+ <location filename="mainwindow.cpp" line="4098"/>
<source>Open in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3956"/>
+ <location filename="mainwindow.cpp" line="3999"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3957"/>
+ <location filename="mainwindow.cpp" line="4000"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3960"/>
- <location filename="mainwindow.cpp" line="3979"/>
+ <location filename="mainwindow.cpp" line="4003"/>
+ <location filename="mainwindow.cpp" line="4022"/>
<source>Change Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3964"/>
- <location filename="mainwindow.cpp" line="3984"/>
+ <location filename="mainwindow.cpp" line="4007"/>
+ <location filename="mainwindow.cpp" line="4027"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3968"/>
+ <location filename="mainwindow.cpp" line="4011"/>
<source>Rename Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3969"/>
+ <location filename="mainwindow.cpp" line="4012"/>
<source>Remove Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3972"/>
+ <location filename="mainwindow.cpp" line="4015"/>
<source>Select Color...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3974"/>
+ <location filename="mainwindow.cpp" line="4017"/>
<source>Reset Color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3991"/>
+ <location filename="mainwindow.cpp" line="4034"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3996"/>
+ <location filename="mainwindow.cpp" line="4039"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3998"/>
+ <location filename="mainwindow.cpp" line="4041"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4004"/>
- <location filename="mainwindow.cpp" line="5243"/>
+ <location filename="mainwindow.cpp" line="4047"/>
+ <location filename="mainwindow.cpp" line="5307"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4005"/>
- <location filename="mainwindow.cpp" line="5244"/>
+ <location filename="mainwindow.cpp" line="4048"/>
+ <location filename="mainwindow.cpp" line="5308"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4011"/>
+ <location filename="mainwindow.cpp" line="4054"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4012"/>
+ <location filename="mainwindow.cpp" line="4055"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4013"/>
+ <location filename="mainwindow.cpp" line="4056"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4021"/>
+ <location filename="mainwindow.cpp" line="4064"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4024"/>
- <location filename="mainwindow.cpp" line="4028"/>
+ <location filename="mainwindow.cpp" line="4067"/>
+ <location filename="mainwindow.cpp" line="4071"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4025"/>
+ <location filename="mainwindow.cpp" line="4068"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4031"/>
+ <location filename="mainwindow.cpp" line="4074"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4042"/>
+ <location filename="mainwindow.cpp" line="4085"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4046"/>
+ <location filename="mainwindow.cpp" line="4089"/>
<source>Mark as converted/working</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4050"/>
+ <location filename="mainwindow.cpp" line="4093"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4052"/>
+ <location filename="mainwindow.cpp" line="4095"/>
<source>Visit web page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4059"/>
+ <location filename="mainwindow.cpp" line="4102"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4066"/>
- <location filename="mainwindow.cpp" line="5291"/>
+ <location filename="mainwindow.cpp" line="4109"/>
+ <location filename="mainwindow.cpp" line="5355"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4068"/>
- <location filename="mainwindow.cpp" line="5293"/>
+ <location filename="mainwindow.cpp" line="4111"/>
+ <location filename="mainwindow.cpp" line="5357"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4099"/>
+ <location filename="mainwindow.cpp" line="4142"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4101"/>
+ <location filename="mainwindow.cpp" line="4144"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4136"/>
+ <location filename="mainwindow.cpp" line="4179"/>
<source>%1 more</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4140"/>
+ <location filename="mainwindow.cpp" line="4183"/>
<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>
@@ -2824,12 +2835,12 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4185"/>
+ <location filename="mainwindow.cpp" line="4228"/>
<source>Enable Mods...</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4200"/>
+ <location filename="mainwindow.cpp" line="4243"/>
<source>Delete %n save(s)</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2837,22 +2848,22 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4242"/>
+ <location filename="mainwindow.cpp" line="4285"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4264"/>
+ <location filename="mainwindow.cpp" line="4307"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4294"/>
+ <location filename="mainwindow.cpp" line="4337"/>
<source>Restarting MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4295"/>
+ <location filename="mainwindow.cpp" line="4338"/>
<source>Changing the managed game directory requires restarting MO.
Any pending downloads will be paused.
@@ -2860,335 +2871,335 @@ Click OK to restart MO now.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4315"/>
+ <location filename="mainwindow.cpp" line="4358"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4436"/>
+ <location filename="mainwindow.cpp" line="4500"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4442"/>
+ <location filename="mainwindow.cpp" line="4506"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.cpp" line="4547"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4483"/>
+ <location filename="mainwindow.cpp" line="4547"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4509"/>
+ <location filename="mainwindow.cpp" line="4573"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4510"/>
+ <location filename="mainwindow.cpp" line="4574"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4524"/>
+ <location filename="mainwindow.cpp" line="4588"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4524"/>
+ <location filename="mainwindow.cpp" line="4588"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4549"/>
- <location filename="mainwindow.cpp" line="4574"/>
+ <location filename="mainwindow.cpp" line="4613"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4549"/>
+ <location filename="mainwindow.cpp" line="4613"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4552"/>
- <location filename="mainwindow.cpp" line="4577"/>
+ <location filename="mainwindow.cpp" line="4616"/>
+ <location filename="mainwindow.cpp" line="4641"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4552"/>
- <location filename="mainwindow.cpp" line="4577"/>
+ <location filename="mainwindow.cpp" line="4616"/>
+ <location filename="mainwindow.cpp" line="4641"/>
<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="4574"/>
+ <location filename="mainwindow.cpp" line="4638"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4618"/>
- <location filename="mainwindow.cpp" line="5904"/>
+ <location filename="mainwindow.cpp" line="4682"/>
+ <location filename="mainwindow.cpp" line="5968"/>
<source>Set Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4618"/>
+ <location filename="mainwindow.cpp" line="4682"/>
<source>Set the priority of the selected plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4667"/>
+ <location filename="mainwindow.cpp" line="4731"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4680"/>
+ <location filename="mainwindow.cpp" line="4744"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4700"/>
+ <location filename="mainwindow.cpp" line="4764"/>
<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="4734"/>
+ <location filename="mainwindow.cpp" line="4798"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4772"/>
+ <location filename="mainwindow.cpp" line="4836"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4773"/>
+ <location filename="mainwindow.cpp" line="4837"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4777"/>
+ <location filename="mainwindow.cpp" line="4841"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4783"/>
+ <location filename="mainwindow.cpp" line="4847"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4785"/>
+ <location filename="mainwindow.cpp" line="4849"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4791"/>
+ <location filename="mainwindow.cpp" line="4855"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4816"/>
+ <location filename="mainwindow.cpp" line="4880"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4941"/>
+ <location filename="mainwindow.cpp" line="5005"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4941"/>
+ <location filename="mainwindow.cpp" line="5005"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4976"/>
+ <location filename="mainwindow.cpp" line="5040"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4991"/>
- <location filename="mainwindow.cpp" line="5053"/>
+ <location filename="mainwindow.cpp" line="5055"/>
+ <location filename="mainwindow.cpp" line="5117"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5003"/>
- <location filename="mainwindow.cpp" line="5481"/>
+ <location filename="mainwindow.cpp" line="5067"/>
+ <location filename="mainwindow.cpp" line="5545"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5003"/>
+ <location filename="mainwindow.cpp" line="5067"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5035"/>
+ <location filename="mainwindow.cpp" line="5099"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5064"/>
+ <location filename="mainwindow.cpp" line="5128"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5110"/>
+ <location filename="mainwindow.cpp" line="5174"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5133"/>
+ <location filename="mainwindow.cpp" line="5197"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5180"/>
+ <location filename="mainwindow.cpp" line="5244"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5181"/>
+ <location filename="mainwindow.cpp" line="5245"/>
<source>Deselect filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5232"/>
+ <location filename="mainwindow.cpp" line="5296"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5248"/>
+ <location filename="mainwindow.cpp" line="5312"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5249"/>
+ <location filename="mainwindow.cpp" line="5313"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5270"/>
+ <location filename="mainwindow.cpp" line="5334"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5273"/>
+ <location filename="mainwindow.cpp" line="5337"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5277"/>
+ <location filename="mainwindow.cpp" line="5341"/>
<source>Open Origin in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5284"/>
+ <location filename="mainwindow.cpp" line="5348"/>
<source>Open Origin Info...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5427"/>
+ <location filename="mainwindow.cpp" line="5491"/>
<source>depends on missing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5431"/>
+ <location filename="mainwindow.cpp" line="5495"/>
<source>incompatible with &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5457"/>
+ <location filename="mainwindow.cpp" line="5521"/>
<source>Please wait while LOOT is running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5554"/>
+ <location filename="mainwindow.cpp" line="5618"/>
<source>loot failed. Exit code was: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5576"/>
+ <location filename="mainwindow.cpp" line="5640"/>
<source>failed to start loot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5579"/>
+ <location filename="mainwindow.cpp" line="5643"/>
<source>failed to run loot: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5583"/>
+ <location filename="mainwindow.cpp" line="5647"/>
<source>Errors occured</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5630"/>
+ <location filename="mainwindow.cpp" line="5694"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5640"/>
+ <location filename="mainwindow.cpp" line="5704"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5653"/>
+ <location filename="mainwindow.cpp" line="5717"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5653"/>
+ <location filename="mainwindow.cpp" line="5717"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5674"/>
- <location filename="mainwindow.cpp" line="5696"/>
+ <location filename="mainwindow.cpp" line="5738"/>
+ <location filename="mainwindow.cpp" line="5760"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5675"/>
- <location filename="mainwindow.cpp" line="5697"/>
+ <location filename="mainwindow.cpp" line="5739"/>
+ <location filename="mainwindow.cpp" line="5761"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5686"/>
+ <location filename="mainwindow.cpp" line="5750"/>
<source>Backup of modlist created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5792"/>
+ <location filename="mainwindow.cpp" line="5856"/>
<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="5794"/>
+ <location filename="mainwindow.cpp" line="5858"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5795"/>
+ <location filename="mainwindow.cpp" line="5859"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5796"/>
+ <location filename="mainwindow.cpp" line="5860"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5904"/>
+ <location filename="mainwindow.cpp" line="5968"/>
<source>Set the priority of the selected mods</source>
<translation type="unfinished"></translation>
</message>
@@ -3649,243 +3660,243 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="485"/>
- <location filename="modinfodialog.cpp" line="500"/>
+ <location filename="modinfodialog.cpp" line="498"/>
+ <location filename="modinfodialog.cpp" line="513"/>
<source>Save changes?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="485"/>
- <location filename="modinfodialog.cpp" line="500"/>
+ <location filename="modinfodialog.cpp" line="498"/>
+ <location filename="modinfodialog.cpp" line="513"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="690"/>
+ <location filename="modinfodialog.cpp" line="703"/>
<source>File Exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="690"/>
+ <location filename="modinfodialog.cpp" line="703"/>
<source>A file with that name exists, please enter a new one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="707"/>
+ <location filename="modinfodialog.cpp" line="720"/>
<source>failed to move file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="732"/>
+ <location filename="modinfodialog.cpp" line="745"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="776"/>
- <location filename="modinfodialog.cpp" line="1500"/>
+ <location filename="modinfodialog.cpp" line="789"/>
+ <location filename="modinfodialog.cpp" line="1513"/>
<source>Info requested, please wait</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="830"/>
+ <location filename="modinfodialog.cpp" line="843"/>
<source>Main</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="831"/>
+ <location filename="modinfodialog.cpp" line="844"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="832"/>
+ <location filename="modinfodialog.cpp" line="845"/>
<source>Optional</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="833"/>
+ <location filename="modinfodialog.cpp" line="846"/>
<source>Old</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="834"/>
+ <location filename="modinfodialog.cpp" line="847"/>
<source>Misc</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="835"/>
+ <location filename="modinfodialog.cpp" line="848"/>
<source>Unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="846"/>
+ <location filename="modinfodialog.cpp" line="859"/>
<source>Current Version: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="850"/>
+ <location filename="modinfodialog.cpp" line="863"/>
<source>No update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="893"/>
+ <location filename="modinfodialog.cpp" line="906"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="908"/>
+ <location filename="modinfodialog.cpp" line="921"/>
<source>&lt;a href=&quot;%1&quot;&gt;Visit on Nexus&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1001"/>
+ <location filename="modinfodialog.cpp" line="1014"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1017"/>
- <location filename="modinfodialog.cpp" line="1023"/>
- <location filename="modinfodialog.cpp" line="1042"/>
- <location filename="modinfodialog.cpp" line="1047"/>
+ <location filename="modinfodialog.cpp" line="1030"/>
+ <location filename="modinfodialog.cpp" line="1036"/>
+ <location filename="modinfodialog.cpp" line="1055"/>
+ <location filename="modinfodialog.cpp" line="1060"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1017"/>
- <location filename="modinfodialog.cpp" line="1042"/>
+ <location filename="modinfodialog.cpp" line="1030"/>
+ <location filename="modinfodialog.cpp" line="1055"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1023"/>
- <location filename="modinfodialog.cpp" line="1047"/>
+ <location filename="modinfodialog.cpp" line="1036"/>
+ <location filename="modinfodialog.cpp" line="1060"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1121"/>
- <location filename="modinfodialog.cpp" line="1127"/>
+ <location filename="modinfodialog.cpp" line="1134"/>
+ <location filename="modinfodialog.cpp" line="1140"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1133"/>
+ <location filename="modinfodialog.cpp" line="1146"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1237"/>
- <location filename="modinfodialog.cpp" line="1261"/>
+ <location filename="modinfodialog.cpp" line="1250"/>
+ <location filename="modinfodialog.cpp" line="1274"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1237"/>
+ <location filename="modinfodialog.cpp" line="1250"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1240"/>
- <location filename="modinfodialog.cpp" line="1264"/>
+ <location filename="modinfodialog.cpp" line="1253"/>
+ <location filename="modinfodialog.cpp" line="1277"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1240"/>
- <location filename="modinfodialog.cpp" line="1264"/>
+ <location filename="modinfodialog.cpp" line="1253"/>
+ <location filename="modinfodialog.cpp" line="1277"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1251"/>
- <location filename="modinfodialog.cpp" line="1274"/>
+ <location filename="modinfodialog.cpp" line="1264"/>
+ <location filename="modinfodialog.cpp" line="1287"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1261"/>
+ <location filename="modinfodialog.cpp" line="1274"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1337"/>
+ <location filename="modinfodialog.cpp" line="1350"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1337"/>
+ <location filename="modinfodialog.cpp" line="1350"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1409"/>
+ <location filename="modinfodialog.cpp" line="1422"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1422"/>
+ <location filename="modinfodialog.cpp" line="1435"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1438"/>
+ <location filename="modinfodialog.cpp" line="1451"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1438"/>
+ <location filename="modinfodialog.cpp" line="1451"/>
<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="modinfodialog.cpp" line="1452"/>
+ <location filename="modinfodialog.cpp" line="1465"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1454"/>
+ <location filename="modinfodialog.cpp" line="1467"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1457"/>
- <location filename="modinfodialog.cpp" line="1477"/>
+ <location filename="modinfodialog.cpp" line="1470"/>
+ <location filename="modinfodialog.cpp" line="1490"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1461"/>
- <location filename="modinfodialog.cpp" line="1481"/>
+ <location filename="modinfodialog.cpp" line="1474"/>
+ <location filename="modinfodialog.cpp" line="1494"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1529"/>
+ <location filename="modinfodialog.cpp" line="1542"/>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1529"/>
+ <location filename="modinfodialog.cpp" line="1542"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1533"/>
- <location filename="modinfodialog.cpp" line="1536"/>
+ <location filename="modinfodialog.cpp" line="1546"/>
+ <location filename="modinfodialog.cpp" line="1549"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1533"/>
+ <location filename="modinfodialog.cpp" line="1546"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1536"/>
+ <location filename="modinfodialog.cpp" line="1549"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1550"/>
+ <location filename="modinfodialog.cpp" line="1563"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -4037,182 +4048,197 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="modlist.cpp" line="161"/>
- <source>Overwrites files</source>
+ <source>Overwrites loose files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="modlist.cpp" line="162"/>
- <source>Overwritten files</source>
+ <source>Loose files overwrite another archive</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="modlist.cpp" line="163"/>
- <source>Overwrites &amp; Overwritten</source>
+ <source>Overwritten loose files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="modlist.cpp" line="164"/>
- <source>Redundant</source>
+ <source>Loose files Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="modlist.cpp" line="165"/>
- <source>Alternate game source</source>
+ <source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="257"/>
- <source>Non-MO</source>
+ <location filename="modlist.cpp" line="166"/>
+ <source>Overwrites an archive with loose files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="289"/>
- <source>invalid</source>
+ <location filename="modlist.cpp" line="167"/>
+ <source>Archive is overwritten by loose files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="437"/>
- <source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
+ <location filename="modlist.cpp" line="168"/>
+ <source>Overwrites another archive file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="439"/>
- <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to &quot;upgrade&quot;.</source>
+ <location filename="modlist.cpp" line="169"/>
+ <source>Overwritten by another archive file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="447"/>
- <source>Categories: &lt;br&gt;</source>
+ <location filename="modlist.cpp" line="170"/>
+ <source>Archive files overwrites &amp; overwritten</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="171"/>
+ <source>Alternate game source</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="263"/>
+ <source>Non-MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="478"/>
+ <location filename="modlist.cpp" line="295"/>
+ <source>invalid</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="498"/>
<source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="483"/>
+ <location filename="modlist.cpp" line="503"/>
<source>Name is already in use by another mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1022"/>
+ <location filename="modlist.cpp" line="1062"/>
<source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1101"/>
+ <location filename="modlist.cpp" line="1141"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1102"/>
+ <location filename="modlist.cpp" line="1142"/>
<source>Are you sure you want to remove &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1165"/>
+ <location filename="modlist.cpp" line="1207"/>
<source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1166"/>
+ <location filename="modlist.cpp" line="1208"/>
<source>Content</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1167"/>
+ <location filename="modlist.cpp" line="1209"/>
<source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1168"/>
+ <location filename="modlist.cpp" line="1210"/>
<source>Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1169"/>
+ <location filename="modlist.cpp" line="1211"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1170"/>
+ <location filename="modlist.cpp" line="1212"/>
<source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1171"/>
+ <location filename="modlist.cpp" line="1213"/>
<source>Source Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1172"/>
+ <location filename="modlist.cpp" line="1214"/>
<source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1173"/>
+ <location filename="modlist.cpp" line="1215"/>
<source>Installation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1174"/>
+ <location filename="modlist.cpp" line="1216"/>
<source>Notes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1175"/>
- <location filename="modlist.cpp" line="1211"/>
+ <location filename="modlist.cpp" line="1217"/>
+ <location filename="modlist.cpp" line="1253"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1183"/>
+ <location filename="modlist.cpp" line="1225"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1184"/>
+ <location filename="modlist.cpp" line="1226"/>
<source>Version of the mod (if available)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1185"/>
+ <location filename="modlist.cpp" line="1227"/>
<source>Installation priority of your mod. The higher, the more &quot;important&quot; it is and thus overwrites files from mods with lower priority.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1187"/>
+ <location filename="modlist.cpp" line="1229"/>
<source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1188"/>
+ <location filename="modlist.cpp" line="1230"/>
<source>The source game which was the origin of this mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1189"/>
+ <location filename="modlist.cpp" line="1231"/>
<source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1190"/>
+ <location filename="modlist.cpp" line="1232"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1191"/>
+ <location filename="modlist.cpp" line="1233"/>
<source>Depicts the content of the mod:&lt;br&gt;&lt;table cellspacing=7&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/plugin&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Game plugins (esp/esm/esl)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/interface&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Interface&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/mesh&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Meshes&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/bsa&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;BSA&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/texture&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Textures&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/sound&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Sounds&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/music&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Music&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/string&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Strings&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/script&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Scripts (Papyrus)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/skse&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Script Extender plugins&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/skyproc&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;SkyProc Patcher&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/menu&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;Mod Configuration Menu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/inifile&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;INI files&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;:/MO/gui/content/modgroup&quot; width=32/&gt;&lt;/td&gt;&lt;td&gt;ModGroup files&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1209"/>
+ <location filename="modlist.cpp" line="1251"/>
<source>Time this mod was installed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1210"/>
+ <location filename="modlist.cpp" line="1252"/>
<source>User notes about the mod</source>
<translation type="unfinished"></translation>
</message>
@@ -4220,7 +4246,7 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModListSortProxy</name>
<message>
- <location filename="modlistsortproxy.cpp" line="399"/>
+ <location filename="modlistsortproxy.cpp" line="404"/>
<source>Drag&amp;Drop is only supported when sorting by priority</source>
<translation type="unfinished"></translation>
</message>
@@ -4350,171 +4376,171 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="975"/>
- <location filename="organizercore.cpp" line="1033"/>
+ <location filename="organizercore.cpp" line="985"/>
+ <location filename="organizercore.cpp" line="1043"/>
<source>Installation successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="983"/>
- <location filename="organizercore.cpp" line="1043"/>
+ <location filename="organizercore.cpp" line="993"/>
+ <location filename="organizercore.cpp" line="1053"/>
<source>Configure Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="984"/>
- <location filename="organizercore.cpp" line="1044"/>
+ <location filename="organizercore.cpp" line="994"/>
+ <location filename="organizercore.cpp" line="1054"/>
<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="996"/>
- <location filename="organizercore.cpp" line="1054"/>
+ <location filename="organizercore.cpp" line="1006"/>
+ <location filename="organizercore.cpp" line="1064"/>
<source>mod &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="999"/>
- <location filename="organizercore.cpp" line="1061"/>
+ <location filename="organizercore.cpp" line="1009"/>
+ <location filename="organizercore.cpp" line="1071"/>
<source>Installation cancelled</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1000"/>
- <location filename="organizercore.cpp" line="1062"/>
+ <location filename="organizercore.cpp" line="1010"/>
+ <location filename="organizercore.cpp" line="1072"/>
<source>The mod was not installed completely.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1266"/>
+ <location filename="organizercore.cpp" line="1276"/>
<source>Executable &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1294"/>
+ <location filename="organizercore.cpp" line="1304"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1295"/>
+ <location filename="organizercore.cpp" line="1305"/>
<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="1324"/>
+ <location filename="organizercore.cpp" line="1334"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1332"/>
+ <location filename="organizercore.cpp" line="1342"/>
<source>Windows Event Log Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1333"/>
+ <location filename="organizercore.cpp" line="1343"/>
<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="1345"/>
+ <location filename="organizercore.cpp" line="1355"/>
<source>Blacklisted Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1346"/>
+ <location filename="organizercore.cpp" line="1356"/>
<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="1435"/>
+ <location filename="organizercore.cpp" line="1445"/>
<source>No profile set</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1724"/>
+ <location filename="organizercore.cpp" line="1734"/>
<source>Failed to refresh list of esps: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1817"/>
+ <location filename="organizercore.cpp" line="1827"/>
<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="1892"/>
+ <location filename="organizercore.cpp" line="1902"/>
<source>Download?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1893"/>
+ <location filename="organizercore.cpp" line="1903"/>
<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="2027"/>
+ <location filename="organizercore.cpp" line="2039"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2034"/>
- <location filename="organizercore.cpp" line="2051"/>
+ <location filename="organizercore.cpp" line="2046"/>
+ <location filename="organizercore.cpp" line="2063"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2058"/>
+ <location filename="organizercore.cpp" line="2070"/>
<source>Login failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2059"/>
+ <location filename="organizercore.cpp" line="2071"/>
<source>Login failed, try again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2068"/>
+ <location filename="organizercore.cpp" line="2080"/>
<source>login failed: %1. Download will not be associated with an account</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2076"/>
+ <location filename="organizercore.cpp" line="2088"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2086"/>
+ <location filename="organizercore.cpp" line="2098"/>
<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="2139"/>
+ <location filename="organizercore.cpp" line="2151"/>
<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="2142"/>
- <location filename="organizercore.cpp" line="2158"/>
+ <location filename="organizercore.cpp" line="2154"/>
+ <location filename="organizercore.cpp" line="2170"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2151"/>
+ <location filename="organizercore.cpp" line="2163"/>
<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="2185"/>
+ <location filename="organizercore.cpp" line="2197"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2257"/>
+ <location filename="organizercore.cpp" line="2269"/>
<source>The designated write target &quot;%1&quot; is not enabled.</source>
<translation type="unfinished"></translation>
</message>
@@ -4661,94 +4687,94 @@ Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="218"/>
+ <location filename="pluginlist.cpp" line="221"/>
<source>failed to update esp info for file %1 (source id: %2), error: %3</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="291"/>
+ <location filename="pluginlist.cpp" line="294"/>
<source>esp not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="339"/>
- <location filename="pluginlist.cpp" line="351"/>
+ <location filename="pluginlist.cpp" line="342"/>
+ <location filename="pluginlist.cpp" line="354"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="339"/>
+ <location filename="pluginlist.cpp" line="342"/>
<source>Really enable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="351"/>
+ <location filename="pluginlist.cpp" line="354"/>
<source>Really disable all plugins?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="456"/>
+ <location filename="pluginlist.cpp" line="459"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="952"/>
- <location filename="pluginlist.cpp" line="956"/>
+ <location filename="pluginlist.cpp" line="955"/>
+ <location filename="pluginlist.cpp" line="959"/>
<source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="953"/>
+ <location filename="pluginlist.cpp" line="956"/>
<source>&lt;br&gt;&lt;b&gt;&lt;i&gt;This plugin can&apos;t be disabled (enforced by the game).&lt;/i&gt;&lt;/b&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="958"/>
+ <location filename="pluginlist.cpp" line="961"/>
<source>Author</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="961"/>
+ <location filename="pluginlist.cpp" line="964"/>
<source>Description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="964"/>
+ <location filename="pluginlist.cpp" line="967"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="971"/>
+ <location filename="pluginlist.cpp" line="974"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="974"/>
+ <location filename="pluginlist.cpp" line="977"/>
<source>Loads Archives</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="975"/>
+ <location filename="pluginlist.cpp" line="978"/>
<source>There are Archives connected to this plugin. Their assets will be added to your game, overwriting in case of conflicts following the plugin order. Loose files will always overwrite assets from Archives. (This flag only checks for Archives from the same mod as the plugin)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="980"/>
+ <location filename="pluginlist.cpp" line="983"/>
<source>Loads INI settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="981"/>
+ <location filename="pluginlist.cpp" line="984"/>
<source>There is an ini file connected to this plugin. Its settings will be added to your game settings, overwriting in case of conflicts.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="985"/>
+ <location filename="pluginlist.cpp" line="988"/>
<source>This ESP is flagged as an ESL. It will adhere to the ESP load order but the records will be loaded in ESL space.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="1160"/>
+ <location filename="pluginlist.cpp" line="1163"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5490,7 +5516,7 @@ If the folder was still in use, restart MO and try again.</source>
</message>
<message>
<location filename="main.cpp" line="682"/>
- <location filename="settings.cpp" line="1095"/>
+ <location filename="settings.cpp" line="1101"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -5505,18 +5531,18 @@ If the folder was still in use, restart MO and try again.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="878"/>
+ <location filename="mainwindow.cpp" line="892"/>
<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="1352"/>
- <location filename="mainwindow.cpp" line="4393"/>
+ <location filename="mainwindow.cpp" line="1370"/>
+ <location filename="mainwindow.cpp" line="4457"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1364"/>
+ <location filename="mainwindow.cpp" line="1382"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -5552,12 +5578,12 @@ If the folder was still in use, restart MO and try again.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="532"/>
+ <location filename="pluginlist.cpp" line="535"/>
<source>failed to access %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="546"/>
+ <location filename="pluginlist.cpp" line="549"/>
<source>failed to set file time %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5567,12 +5593,12 @@ If the folder was still in use, restart MO and try again.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="1102"/>
+ <location filename="settings.cpp" line="1108"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="1109"/>
+ <location filename="settings.cpp" line="1115"/>
<source>Proxy DLL</source>
<translation type="unfinished"></translation>
</message>
@@ -5763,12 +5789,12 @@ Select Show Details option to see the full change-log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="337"/>
+ <location filename="selfupdater.cpp" line="339"/>
<source>Failed to start %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="selfupdater.cpp" line="347"/>
+ <location filename="selfupdater.cpp" line="349"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
@@ -5786,28 +5812,28 @@ Select Show Details option to see the full change-log.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="495"/>
- <location filename="settings.cpp" line="514"/>
+ <location filename="settings.cpp" line="500"/>
+ <location filename="settings.cpp" line="519"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="877"/>
+ <location filename="settings.cpp" line="882"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="878"/>
+ <location filename="settings.cpp" line="883"/>
<source>Failed to create &quot;%1&quot;, you may not have the necessary permission. path remains unchanged.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="1146"/>
+ <location filename="settings.cpp" line="1154"/>
<source>Restart Mod Organizer?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="1147"/>
+ <location filename="settings.cpp" line="1155"/>
<source>In order to reset the window geometries, MO must be restarted.
Restart it now?</source>
<translation type="unfinished"></translation>
@@ -6351,75 +6377,90 @@ programs you are intentionally running.</source>
</message>
<message>
<location filename="settingsdialog.ui" line="1106"/>
+ <source>Enable parsing of Archives Archives, has effects on perfromance.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="1109"/>
- <source>Resets the window geometries for all windows. This can be useful if a window becomes too small or too large, if a column becomes too thin or too wide, and in similar situations.</source>
+ <source>
+ By default Mod Organizer will parse Archive files to calculate conflicts between themselves and loose files, this process has a noticeable cost in performance.
+ This feature should not be confused from the one offered by ModOrganizer 1, ModOrganizer 2 will only show conflicts with archives NOT load them into the game or program.
+
+ If you disable this feature, MO will only display conflicts with Loose files.
+ </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1112"/>
- <source>Reset Window Geometries</source>
+ <location filename="settingsdialog.ui" line="1117"/>
+ <source>Enable parsing of Archives</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1135"/>
- <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
+ <location filename="settingsdialog.ui" line="1127"/>
+ <location filename="settingsdialog.ui" line="1130"/>
+ <source>Resets the window geometries for all windows. This can be useful if a window becomes too small or too large, if a column becomes too thin or too wide, and in similar situations.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1146"/>
- <source>Diagnostics</source>
+ <location filename="settingsdialog.ui" line="1133"/>
+ <source>Reset Window Geometries</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1154"/>
- <source>Log Level</source>
+ <location filename="settingsdialog.ui" line="1156"/>
+ <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1161"/>
- <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
+ <location filename="settingsdialog.ui" line="1167"/>
+ <source>Diagnostics</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1164"/>
- <source>
- Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
- &quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.
- </source>
+ <location filename="settingsdialog.ui" line="1175"/>
+ <source>Max Dumps To Keep</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1171"/>
- <source>Debug</source>
+ <location filename="settingsdialog.ui" line="1195"/>
+ <source>Maximum number of crash dumps to keep on disk. Use 0 for unlimited.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1176"/>
- <source>Info (recommended)</source>
+ <location filename="settingsdialog.ui" line="1198"/>
+ <source>
+ Maximum number of crash dumps to keep on disk. Use 0 for unlimited.
+ Set &quot;Crash Dumps&quot; above to None to disable crash dump collection.
+ </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1181"/>
- <source>Warning</source>
+ <location filename="settingsdialog.ui" line="1210"/>
+ <source>Hint: right click link and copy link location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1186"/>
- <source>Error</source>
+ <location filename="settingsdialog.ui" line="1213"/>
+ <source>
+ Logs and crash dumps are stored under your current instance in the &lt;a href=&quot;LOGS_FULL_PATH&quot;&gt;LOGS_DIR&lt;/a&gt;
+ and &lt;a href=&quot;DUMPS_FULL_PATH&quot;&gt;DUMPS_DIR&lt;/a&gt; folders.
+ Sending logs and/or crash dumps to the developers can help investigate issues.
+ It is recommended to compress large log and dmp files before sending.
+ </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1211"/>
+ <location filename="settingsdialog.ui" line="1230"/>
<source>Crash Dumps</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1218"/>
+ <location filename="settingsdialog.ui" line="1237"/>
<source>Decides which type of crash dumps are collected when injected processes crash.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1221"/>
+ <location filename="settingsdialog.ui" line="1240"/>
<source>
Decides which type of crash dumps are collected when injected processes crash.
&quot;None&quot; Disables the generation of crash dumps by MO.
@@ -6430,56 +6471,61 @@ programs you are intentionally running.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1231"/>
+ <location filename="settingsdialog.ui" line="1250"/>
<source>None</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1236"/>
+ <location filename="settingsdialog.ui" line="1255"/>
<source>Mini (recommended)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1241"/>
+ <location filename="settingsdialog.ui" line="1260"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1246"/>
+ <location filename="settingsdialog.ui" line="1265"/>
<source>Full</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1258"/>
- <source>Max Dumps To Keep</source>
+ <location filename="settingsdialog.ui" line="1293"/>
+ <source>Log Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1278"/>
- <source>Maximum number of crash dumps to keep on disk. Use 0 for unlimited.</source>
+ <location filename="settingsdialog.ui" line="1300"/>
+ <source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1281"/>
+ <location filename="settingsdialog.ui" line="1303"/>
<source>
- Maximum number of crash dumps to keep on disk. Use 0 for unlimited.
- Set &quot;Crash Dumps&quot; above to None to disable crash dump collection.
+ Decides the amount of data printed to &quot;ModOrganizer.log&quot;.
+ &quot;Debug&quot; produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the &quot;Info&quot; level for regluar use. On the &quot;Error&quot; level the log file usually remains empty.
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1293"/>
- <source>Hint: right click link and copy link location</source>
+ <location filename="settingsdialog.ui" line="1310"/>
+ <source>Debug</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1296"/>
- <source>
- Logs and crash dumps are stored under your current instance in the &lt;a href=&quot;LOGS_FULL_PATH&quot;&gt;LOGS_DIR&lt;/a&gt;
- and &lt;a href=&quot;DUMPS_FULL_PATH&quot;&gt;DUMPS_DIR&lt;/a&gt; folders.
- Sending logs and/or crash dumps to the developers can help investigate issues.
- It is recommended to compress large log and dmp files before sending.
- </source>
+ <location filename="settingsdialog.ui" line="1315"/>
+ <source>Info (recommended)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="1320"/>
+ <source>Warning</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="1325"/>
+ <source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index d21fa844..acce25dc 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -788,12 +788,12 @@ std::wstring OrganizerCore::crashDumpsPath() {
bool OrganizerCore::getArchiveParsing() const
{
- return m_ArchiveParsing;
+ return m_ArchiveParsing;
}
void OrganizerCore::setArchiveParsing(const bool archiveParsing)
{
- m_ArchiveParsing = archiveParsing;
+ m_ArchiveParsing = archiveParsing;
}
void OrganizerCore::setCurrentProfile(const QString &profileName)
@@ -1936,13 +1936,13 @@ std::vector<QString> OrganizerCore::enabledArchives()
{
std::vector<QString> result;
if (m_ArchiveParsing) {
- QFile archiveFile(m_CurrentProfile->getArchivesFileName());
- if (archiveFile.open(QIODevice::ReadOnly)) {
- while (!archiveFile.atEnd()) {
- result.push_back(QString::fromUtf8(archiveFile.readLine()).trimmed());
- }
- archiveFile.close();
- }
+ QFile archiveFile(m_CurrentProfile->getArchivesFileName());
+ if (archiveFile.open(QIODevice::ReadOnly)) {
+ while (!archiveFile.atEnd()) {
+ result.push_back(QString::fromUtf8(archiveFile.readLine()).trimmed());
+ }
+ archiveFile.close();
+ }
}
return result;
}
diff --git a/src/settings.cpp b/src/settings.cpp
index eb5b372f..74c95ebf 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -476,7 +476,7 @@ uint Settings::getMotDHash() const
bool Settings::archiveParsing() const
{
- return m_Settings.value("Settings/archive_parsing", true).toBool();
+ return m_Settings.value("Settings/archive_parsing", true).toBool();
}
QVariant Settings::pluginSetting(const QString &pluginName, const QString &key) const
@@ -1126,7 +1126,7 @@ Settings::WorkaroundsTab::WorkaroundsTab(Settings *m_parent,
m_displayForeignBox->setChecked(m_parent->displayForeign());
m_lockGUIBox->setChecked(m_parent->lockGUI());
m_enableArchiveParsingBox->setChecked(m_parent->archiveParsing());
-
+
m_dialog.setExecutableBlacklist(m_parent->executablesBlacklist());
}