summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-11-01 16:20:53 +0100
committerAl12rs <gabriel.cortesi@outlook.com>2018-11-01 16:20:53 +0100
commit73842ee245a09fe4ead0e1a2a5f778d89f0a8039 (patch)
treeb0e805c0d7c5f0ef7ef3edd49db81a08966b0c76
parent122744454c9befc06b582a8f0feb03bfbb85aa71 (diff)
Added ability to change color of conflict and plugin highlighting from the settings.
-rw-r--r--src/modlist.cpp6
-rw-r--r--src/organizer_en.ts1417
-rw-r--r--src/pluginlist.cpp2
-rw-r--r--src/settings.cpp86
-rw-r--r--src/settings.h18
-rw-r--r--src/settingsdialog.cpp104
-rw-r--r--src/settingsdialog.h27
-rw-r--r--src/settingsdialog.ui88
8 files changed, 1065 insertions, 683 deletions
diff --git a/src/modlist.cpp b/src/modlist.cpp
index 7b57eeda..3f8fa0c0 100644
--- a/src/modlist.cpp
+++ b/src/modlist.cpp
@@ -385,12 +385,12 @@ QVariant ModList::data(const QModelIndex &modelIndex, int role) const
|| (role == ViewMarkingScrollBar::DEFAULT_ROLE)) {
auto flags = modInfo->getFlags();
if (modInfo->getHighlight() & ModInfo::HIGHLIGHT_PLUGIN) {
- return QColor(0, 0, 255, 64);
+ return Settings::instance().modlistContainsPluginColor();
} else if (m_Overwrite.find(modIndex) != m_Overwrite.end()) {
- return QColor(0, 255, 0, 64);
+ return Settings::instance().modlistOverwrittenLooseColor();
}
else if (m_Overwritten.find(modIndex) != m_Overwritten.end()) {
- return QColor(255, 0, 0, 64);
+ return Settings::instance().modlistOverwritingLooseColor();
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_SEPARATOR) != flags.end() && modInfo->getColor().isValid()) {
return modInfo->getColor();
} else {
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index 9a7e0713..3d2f1744 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -1386,58 +1386,58 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="695"/>
+ <location filename="installationmanager.cpp" line="699"/>
<source>File format &quot;%1&quot; not supported</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="857"/>
+ <location filename="installationmanager.cpp" line="861"/>
<source>None of the available installer plugins were able to handle that archive.
This is likely due to a corrupted or incompatible download or unrecognized archive format.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="868"/>
+ <location filename="installationmanager.cpp" line="872"/>
<source>no error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="871"/>
+ <location filename="installationmanager.cpp" line="875"/>
<source>7z.dll not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="874"/>
+ <location filename="installationmanager.cpp" line="878"/>
<source>7z.dll isn&apos;t valid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="877"/>
+ <location filename="installationmanager.cpp" line="881"/>
<source>archive not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="880"/>
+ <location filename="installationmanager.cpp" line="884"/>
<source>failed to open archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="883"/>
+ <location filename="installationmanager.cpp" line="887"/>
<source>unsupported archive type</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="886"/>
+ <location filename="installationmanager.cpp" line="890"/>
<source>internal library error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="889"/>
+ <location filename="installationmanager.cpp" line="893"/>
<source>archive invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="installationmanager.cpp" line="893"/>
+ <location filename="installationmanager.cpp" line="897"/>
<source>unknown archive error</source>
<translation type="unfinished"></translation>
</message>
@@ -1534,47 +1534,47 @@ This is likely due to a corrupted or incompatible download or unrecognized archi
<name>MainWindow</name>
<message>
<location filename="mainwindow.ui" line="46"/>
- <location filename="mainwindow.ui" line="590"/>
+ <location filename="mainwindow.ui" line="596"/>
<source>Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="115"/>
+ <location filename="mainwindow.ui" line="118"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="134"/>
+ <location filename="mainwindow.ui" line="137"/>
<source>If checked, only mods that match all selected categories are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="137"/>
+ <location filename="mainwindow.ui" line="140"/>
<source>And</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="147"/>
+ <location filename="mainwindow.ui" line="150"/>
<source>If checked, all mods that match at least one of the selected categories are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="150"/>
+ <location filename="mainwindow.ui" line="153"/>
<source>Or</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="189"/>
+ <location filename="mainwindow.ui" line="192"/>
<source>Profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="199"/>
+ <location filename="mainwindow.ui" line="202"/>
<source>Pick a module collection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="202"/>
+ <location filename="mainwindow.ui" line="205"/>
<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; }
@@ -1584,77 +1584,77 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="233"/>
+ <location filename="mainwindow.ui" line="236"/>
<source>Open list options...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="236"/>
+ <location filename="mainwindow.ui" line="239"/>
<source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="256"/>
+ <location filename="mainwindow.ui" line="259"/>
<source>Show Open Folders menu...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="270"/>
- <location filename="mainwindow.ui" line="856"/>
+ <location filename="mainwindow.ui" line="273"/>
+ <location filename="mainwindow.ui" line="859"/>
<source>Restore Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="284"/>
- <location filename="mainwindow.ui" line="876"/>
- <location filename="mainwindow.cpp" line="3668"/>
+ <location filename="mainwindow.ui" line="287"/>
+ <location filename="mainwindow.ui" line="879"/>
+ <location filename="mainwindow.cpp" line="3763"/>
<source>Create Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="400"/>
+ <location filename="mainwindow.ui" line="403"/>
<source>List of available mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="403"/>
+ <location filename="mainwindow.ui" line="406"/>
<source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their &quot;installation&quot; orders.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="488"/>
+ <location filename="mainwindow.ui" line="494"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="545"/>
+ <location filename="mainwindow.ui" line="551"/>
<source>Clear all Filters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="585"/>
+ <location filename="mainwindow.ui" line="591"/>
<source>No groups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="595"/>
+ <location filename="mainwindow.ui" line="601"/>
<source>Nexus IDs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="609"/>
- <location filename="mainwindow.ui" line="999"/>
- <location filename="mainwindow.ui" line="1335"/>
+ <location filename="mainwindow.ui" line="615"/>
+ <location filename="mainwindow.ui" line="1002"/>
+ <location filename="mainwindow.ui" line="1341"/>
<source>Namefilter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="644"/>
+ <location filename="mainwindow.ui" line="650"/>
<source>Pick a program to run.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="647"/>
+ <location filename="mainwindow.ui" line="653"/>
<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; }
@@ -1664,12 +1664,12 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="695"/>
+ <location filename="mainwindow.ui" line="701"/>
<source>Run program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="698"/>
+ <location filename="mainwindow.ui" line="704"/>
<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; }
@@ -1678,17 +1678,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="708"/>
+ <location filename="mainwindow.ui" line="714"/>
<source>Run</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="749"/>
+ <location filename="mainwindow.ui" line="755"/>
<source>Create a shortcut in your start menu or on the desktop to the specified program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="752"/>
+ <location filename="mainwindow.ui" line="758"/>
<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; }
@@ -1697,27 +1697,27 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="759"/>
+ <location filename="mainwindow.ui" line="765"/>
<source>Shortcut</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="809"/>
+ <location filename="mainwindow.ui" line="815"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="832"/>
+ <location filename="mainwindow.ui" line="835"/>
<source>Sort</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="938"/>
+ <location filename="mainwindow.ui" line="941"/>
<source>List of available esp/esm files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="941"/>
+ <location filename="mainwindow.ui" line="944"/>
<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; }
@@ -1726,27 +1726,27 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1012"/>
+ <location filename="mainwindow.ui" line="1015"/>
<source>Archives</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1032"/>
+ <location filename="mainwindow.ui" line="1035"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BSAs / BA2s are bundles of game assets (textures, scripts, etc.). By default, the engine loads these bundles in a separate step from loose files. &lt;p&gt;Their load order is specified by the priority of the corresponding plugin (right pane, plugins tab).&lt;/p&gt;&lt;p&gt;If there is a matching plugin, the game will load them no matter what.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1035"/>
+ <location filename="mainwindow.ui" line="1038"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Currently detected archives. (&lt;a href=&quot;#&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;What is an archive?&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1050"/>
+ <location filename="mainwindow.ui" line="1053"/>
<source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1053"/>
+ <location filename="mainwindow.ui" line="1056"/>
<source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they &quot;compete&quot; with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!
@@ -1754,61 +1754,61 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1087"/>
+ <location filename="mainwindow.ui" line="1090"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1105"/>
+ <location filename="mainwindow.ui" line="1108"/>
<source>refresh data-directory overview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1108"/>
+ <location filename="mainwindow.ui" line="1111"/>
<source>Refresh the overview. This may take a moment.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1111"/>
- <location filename="mainwindow.ui" line="1231"/>
- <location filename="mainwindow.cpp" line="3589"/>
- <location filename="mainwindow.cpp" line="4416"/>
+ <location filename="mainwindow.ui" line="1114"/>
+ <location filename="mainwindow.ui" line="1237"/>
+ <location filename="mainwindow.cpp" line="3664"/>
+ <location filename="mainwindow.cpp" line="4520"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1127"/>
+ <location filename="mainwindow.ui" line="1130"/>
<source>This is an overview of your data directory as visible to the game (and tools). </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1137"/>
+ <location filename="mainwindow.ui" line="1143"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1142"/>
+ <location filename="mainwindow.ui" line="1148"/>
<source>Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1152"/>
- <location filename="mainwindow.ui" line="1155"/>
+ <location filename="mainwindow.ui" line="1158"/>
+ <location filename="mainwindow.ui" line="1161"/>
<source>Filter the above list so that only conflicts are displayed.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1158"/>
+ <location filename="mainwindow.ui" line="1164"/>
<source>Show only conflicts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1166"/>
+ <location filename="mainwindow.ui" line="1172"/>
<source>Saves</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1190"/>
+ <location filename="mainwindow.ui" line="1196"/>
<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; }
@@ -1819,160 +1819,160 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1210"/>
+ <location filename="mainwindow.ui" line="1216"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1228"/>
+ <location filename="mainwindow.ui" line="1234"/>
<source>Refresh downloads view</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1259"/>
+ <location filename="mainwindow.ui" line="1265"/>
<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="1315"/>
+ <location filename="mainwindow.ui" line="1321"/>
<source>Show Hidden</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1377"/>
+ <location filename="mainwindow.ui" line="1386"/>
<source>Tool Bar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1420"/>
+ <location filename="mainwindow.ui" line="1429"/>
<source>Install Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1423"/>
+ <location filename="mainwindow.ui" line="1432"/>
<source>Install &amp;Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1426"/>
+ <location filename="mainwindow.ui" line="1435"/>
<source>Install a new mod from an archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1429"/>
+ <location filename="mainwindow.ui" line="1438"/>
<source>Ctrl+M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1438"/>
+ <location filename="mainwindow.ui" line="1447"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1441"/>
+ <location filename="mainwindow.ui" line="1450"/>
<source>&amp;Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1444"/>
+ <location filename="mainwindow.ui" line="1453"/>
<source>Configure Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1447"/>
+ <location filename="mainwindow.ui" line="1456"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1456"/>
+ <location filename="mainwindow.ui" line="1465"/>
<source>Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1459"/>
+ <location filename="mainwindow.ui" line="1468"/>
<source>&amp;Executables</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1462"/>
+ <location filename="mainwindow.ui" line="1471"/>
<source>Configure the executables that can be started through Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1465"/>
+ <location filename="mainwindow.ui" line="1474"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1474"/>
- <location filename="mainwindow.ui" line="1480"/>
+ <location filename="mainwindow.ui" line="1483"/>
+ <location filename="mainwindow.ui" line="1489"/>
<source>Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1477"/>
+ <location filename="mainwindow.ui" line="1486"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1483"/>
+ <location filename="mainwindow.ui" line="1492"/>
<source>Ctrl+I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1492"/>
+ <location filename="mainwindow.ui" line="1501"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1495"/>
+ <location filename="mainwindow.ui" line="1504"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1498"/>
+ <location filename="mainwindow.ui" line="1507"/>
<source>Configure settings and workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1501"/>
+ <location filename="mainwindow.ui" line="1510"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1510"/>
+ <location filename="mainwindow.ui" line="1519"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1513"/>
+ <location filename="mainwindow.ui" line="1522"/>
<source>Search nexus network for more mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1516"/>
+ <location filename="mainwindow.ui" line="1525"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1528"/>
- <location filename="mainwindow.cpp" line="4357"/>
+ <location filename="mainwindow.ui" line="1537"/>
+ <location filename="mainwindow.cpp" line="4461"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1531"/>
+ <location filename="mainwindow.ui" line="1540"/>
<source>Mod Organizer is up-to-date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1543"/>
- <location filename="mainwindow.cpp" line="637"/>
+ <location filename="mainwindow.ui" line="1552"/>
+ <location filename="mainwindow.cpp" line="639"/>
<source>No Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1546"/>
+ <location filename="mainwindow.ui" line="1555"/>
<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!
@@ -1980,758 +1980,813 @@ Right now this has very limited functionality</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1558"/>
- <location filename="mainwindow.ui" line="1561"/>
+ <location filename="mainwindow.ui" line="1567"/>
+ <location filename="mainwindow.ui" line="1570"/>
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1564"/>
+ <location filename="mainwindow.ui" line="1573"/>
<source>Ctrl+H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1573"/>
+ <location filename="mainwindow.ui" line="1582"/>
<source>Endorse MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1576"/>
- <location filename="mainwindow.cpp" line="4439"/>
+ <location filename="mainwindow.ui" line="1585"/>
+ <location filename="mainwindow.cpp" line="4543"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1581"/>
+ <location filename="mainwindow.ui" line="1590"/>
<source>Copy Log to Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1590"/>
+ <location filename="mainwindow.ui" line="1599"/>
<source>Change Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.ui" line="1593"/>
+ <location filename="mainwindow.ui" line="1602"/>
<source>Open the Instance selection dialog to manage a different Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="323"/>
+ <location filename="mainwindow.cpp" line="325"/>
<source>Toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="324"/>
+ <location filename="mainwindow.cpp" line="326"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="325"/>
+ <location filename="mainwindow.cpp" line="327"/>
<source>Start Menu</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="349"/>
+ <location filename="mainwindow.cpp" line="351"/>
<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="625"/>
+ <location filename="mainwindow.cpp" line="627"/>
<source>Problems</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="626"/>
+ <location filename="mainwindow.cpp" line="628"/>
<source>There are potential problems with your setup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="638"/>
+ <location filename="mainwindow.cpp" line="640"/>
<source>Everything seems to be in order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="700"/>
+ <location filename="mainwindow.cpp" line="702"/>
<source>Help on UI</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="704"/>
+ <location filename="mainwindow.cpp" line="706"/>
<source>Documentation Wiki</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="708"/>
+ <location filename="mainwindow.cpp" line="710"/>
<source>Report Issue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="712"/>
+ <location filename="mainwindow.cpp" line="714"/>
<source>Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="751"/>
+ <location filename="mainwindow.cpp" line="753"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="752"/>
+ <location filename="mainwindow.cpp" line="754"/>
<source>About Qt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="804"/>
+ <location filename="mainwindow.cpp" line="806"/>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="805"/>
+ <location filename="mainwindow.cpp" line="807"/>
<source>Please enter a name for the new profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="813"/>
+ <location filename="mainwindow.cpp" line="815"/>
<source>failed to create profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="857"/>
+ <location filename="mainwindow.cpp" line="859"/>
<source>Show tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="858"/>
+ <location filename="mainwindow.cpp" line="860"/>
<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="894"/>
+ <location filename="mainwindow.cpp" line="896"/>
<source>Downloads in progress</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="895"/>
+ <location filename="mainwindow.cpp" line="897"/>
<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="1012"/>
+ <location filename="mainwindow.cpp" line="1014"/>
<source>Plugin &quot;%1&quot; failed: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1014"/>
+ <location filename="mainwindow.cpp" line="1016"/>
<source>Plugin &quot;%1&quot; failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1050"/>
+ <location filename="mainwindow.cpp" line="1052"/>
<source>Browse Mod Page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1190"/>
+ <location filename="mainwindow.cpp" line="1192"/>
<source>Also in: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1201"/>
+ <location filename="mainwindow.cpp" line="1203"/>
<source>No conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1313"/>
+ <location filename="mainwindow.cpp" line="1315"/>
<source>&lt;Edit...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1581"/>
+ <location filename="mainwindow.cpp" line="1583"/>
<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="1643"/>
+ <location filename="mainwindow.cpp" line="1645"/>
<source>Activating Network Proxy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1701"/>
+ <location filename="mainwindow.cpp" line="1703"/>
<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="1795"/>
+ <location filename="mainwindow.cpp" line="1797"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1796"/>
+ <location filename="mainwindow.cpp" line="1798"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1964"/>
+ <location filename="mainwindow.cpp" line="1966"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1965"/>
+ <location filename="mainwindow.cpp" line="1967"/>
<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="2112"/>
+ <location filename="mainwindow.cpp" line="2114"/>
<source>failed to spawn notepad.exe: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2152"/>
+ <location filename="mainwindow.cpp" line="2154"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2176"/>
+ <location filename="mainwindow.cpp" line="2178"/>
<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="2200"/>
+ <location filename="mainwindow.cpp" line="2202"/>
<source>&lt;Contains %1&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2235"/>
+ <location filename="mainwindow.cpp" line="2237"/>
<source>&lt;Checked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2236"/>
+ <location filename="mainwindow.cpp" line="2238"/>
<source>&lt;Unchecked&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2237"/>
+ <location filename="mainwindow.cpp" line="2239"/>
<source>&lt;Update&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2238"/>
+ <location filename="mainwindow.cpp" line="2240"/>
<source>&lt;Mod Backup&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2239"/>
+ <location filename="mainwindow.cpp" line="2241"/>
<source>&lt;Managed by MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2240"/>
+ <location filename="mainwindow.cpp" line="2242"/>
<source>&lt;Managed outside MO&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2241"/>
+ <location filename="mainwindow.cpp" line="2243"/>
<source>&lt;No category&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2242"/>
+ <location filename="mainwindow.cpp" line="2244"/>
<source>&lt;Conflicted&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2243"/>
+ <location filename="mainwindow.cpp" line="2245"/>
<source>&lt;Not Endorsed&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2289"/>
+ <location filename="mainwindow.cpp" line="2291"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2302"/>
+ <location filename="mainwindow.cpp" line="2304"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2303"/>
+ <location filename="mainwindow.cpp" line="2305"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2306"/>
+ <location filename="mainwindow.cpp" line="2308"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2310"/>
- <location filename="mainwindow.cpp" line="4210"/>
- <location filename="mainwindow.cpp" line="4234"/>
+ <location filename="mainwindow.cpp" line="2312"/>
+ <location filename="mainwindow.cpp" line="4304"/>
+ <location filename="mainwindow.cpp" line="4328"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2370"/>
- <location filename="mainwindow.cpp" line="3312"/>
- <location filename="mainwindow.cpp" line="3320"/>
- <location filename="mainwindow.cpp" line="3794"/>
+ <location filename="mainwindow.cpp" line="2372"/>
+ <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3393"/>
+ <location filename="mainwindow.cpp" line="3888"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2371"/>
+ <location filename="mainwindow.cpp" line="2373"/>
<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="2384"/>
+ <location filename="mainwindow.cpp" line="2386"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2416"/>
- <location filename="mainwindow.cpp" line="2419"/>
- <location filename="mainwindow.cpp" line="2429"/>
+ <location filename="mainwindow.cpp" line="2418"/>
+ <location filename="mainwindow.cpp" line="2421"/>
+ <location filename="mainwindow.cpp" line="2431"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2416"/>
+ <location filename="mainwindow.cpp" line="2418"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2420"/>
+ <location filename="mainwindow.cpp" line="2422"/>
<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="2430"/>
+ <location filename="mainwindow.cpp" line="2432"/>
<source>Failed to create backup.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2447"/>
+ <location filename="mainwindow.cpp" line="2449"/>
<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="2463"/>
- <location filename="mainwindow.cpp" line="2490"/>
+ <location filename="mainwindow.cpp" line="2465"/>
+ <location filename="mainwindow.cpp" line="2492"/>
<source>You need to be logged in with Nexus to endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2546"/>
+ <location filename="mainwindow.cpp" line="2548"/>
<source>Failed to display overwrite dialog: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2732"/>
+ <location filename="mainwindow.cpp" line="2736"/>
<source>Nexus ID for this Mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2742"/>
+ <location filename="mainwindow.cpp" line="2746"/>
<source>Web page for this mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2820"/>
- <location filename="mainwindow.cpp" line="2849"/>
- <location filename="mainwindow.cpp" line="3619"/>
+ <location filename="mainwindow.cpp" line="2824"/>
+ <location filename="mainwindow.cpp" line="2922"/>
+ <location filename="mainwindow.cpp" line="3695"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2821"/>
+ <location filename="mainwindow.cpp" line="2825"/>
<source>This will create an empty mod.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2830"/>
- <location filename="mainwindow.cpp" line="2859"/>
+ <location filename="mainwindow.cpp" line="2834"/>
+ <location filename="mainwindow.cpp" line="2932"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2850"/>
+ <location filename="mainwindow.cpp" line="2853"/>
+ <source>Create Separator...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2854"/>
+ <source>This will create a new separator.
+Please enter a name:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2861"/>
+ <source>A separator with this name already exists</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="2923"/>
<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="2891"/>
- <location filename="mainwindow.cpp" line="4756"/>
+ <location filename="mainwindow.cpp" line="2964"/>
+ <location filename="mainwindow.cpp" line="4860"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2892"/>
+ <location filename="mainwindow.cpp" line="2965"/>
<source>About to recursively delete:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3206"/>
+ <location filename="mainwindow.cpp" line="3279"/>
<source>Not logged in, endorsement information will be wrong</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3214"/>
+ <location filename="mainwindow.cpp" line="3287"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3215"/>
+ <location filename="mainwindow.cpp" line="3288"/>
<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="3235"/>
- <location filename="mainwindow.cpp" line="4325"/>
+ <location filename="mainwindow.cpp" line="3308"/>
+ <location filename="mainwindow.cpp" line="4429"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3236"/>
+ <location filename="mainwindow.cpp" line="3309"/>
<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="3312"/>
+ <location filename="mainwindow.cpp" line="3385"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3320"/>
+ <location filename="mainwindow.cpp" line="3393"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3385"/>
+ <location filename="mainwindow.cpp" line="3458"/>
<source>Export to csv</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3388"/>
+ <location filename="mainwindow.cpp" line="3461"/>
<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="3391"/>
+ <location filename="mainwindow.cpp" line="3464"/>
<source>Select what mods you want export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3392"/>
+ <location filename="mainwindow.cpp" line="3465"/>
<source>All installed mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3393"/>
+ <location filename="mainwindow.cpp" line="3466"/>
<source>Only active (checked) mods from your current profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3394"/>
+ <location filename="mainwindow.cpp" line="3467"/>
<source>All currently visible mods in the mod list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3415"/>
+ <location filename="mainwindow.cpp" line="3488"/>
<source>Choose what Columns to export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3418"/>
+ <location filename="mainwindow.cpp" line="3491"/>
<source>Mod_Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3420"/>
+ <location filename="mainwindow.cpp" line="3493"/>
<source>Mod_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3422"/>
+ <location filename="mainwindow.cpp" line="3495"/>
<source>Mod_Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3423"/>
+ <location filename="mainwindow.cpp" line="3496"/>
<source>Primary_Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3424"/>
+ <location filename="mainwindow.cpp" line="3497"/>
<source>Nexus_ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3425"/>
+ <location filename="mainwindow.cpp" line="3498"/>
<source>Mod_Nexus_URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3426"/>
+ <location filename="mainwindow.cpp" line="3499"/>
<source>Mod_Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3427"/>
+ <location filename="mainwindow.cpp" line="3500"/>
<source>Install_Date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3428"/>
+ <location filename="mainwindow.cpp" line="3501"/>
<source>Download_File_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3530"/>
+ <location filename="mainwindow.cpp" line="3603"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3549"/>
+ <location filename="mainwindow.cpp" line="3622"/>
<source>Open Game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3551"/>
+ <location filename="mainwindow.cpp" line="3624"/>
<source>Open MyGames folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3555"/>
+ <location filename="mainwindow.cpp" line="3628"/>
<source>Open Instance folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3557"/>
+ <location filename="mainwindow.cpp" line="3630"/>
<source>Open Mods folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3559"/>
+ <location filename="mainwindow.cpp" line="3632"/>
<source>Open Profile folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3561"/>
+ <location filename="mainwindow.cpp" line="3634"/>
<source>Open Downloads folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3565"/>
+ <location filename="mainwindow.cpp" line="3638"/>
<source>Open MO2 Install folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3567"/>
+ <location filename="mainwindow.cpp" line="3640"/>
<source>Open MO2 Plugins folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3569"/>
+ <location filename="mainwindow.cpp" line="3642"/>
<source>Open MO2 Logs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3578"/>
+ <location filename="mainwindow.cpp" line="3651"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3580"/>
+ <location filename="mainwindow.cpp" line="3653"/>
<source>Create empty mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3584"/>
+ <location filename="mainwindow.cpp" line="3655"/>
+ <source>Create Separator</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3659"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3585"/>
+ <location filename="mainwindow.cpp" line="3660"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3587"/>
+ <location filename="mainwindow.cpp" line="3662"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3591"/>
+ <location filename="mainwindow.cpp" line="3666"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3612"/>
+ <location filename="mainwindow.cpp" line="3687"/>
<source>All Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="3694"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3620"/>
+ <location filename="mainwindow.cpp" line="3696"/>
<source>Clear Overwrite...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3622"/>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3698"/>
+ <location filename="mainwindow.cpp" line="3804"/>
<source>Open in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3624"/>
+ <location filename="mainwindow.cpp" line="3700"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3625"/>
+ <location filename="mainwindow.cpp" line="3701"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3629"/>
+ <location filename="mainwindow.cpp" line="3703"/>
+ <source>Rename Separator...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3704"/>
+ <source>Remove Separator...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3706"/>
+ <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3755"/>
+ <source>Send to Top</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3715"/>
+ <location filename="mainwindow.cpp" line="3756"/>
+ <source>Send to Bottom</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3709"/>
+ <source>Select Color...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3711"/>
+ <source>Reset Color</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="3717"/>
<source>Change Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3642"/>
+ <location filename="mainwindow.cpp" line="3730"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3648"/>
+ <location filename="mainwindow.cpp" line="3737"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3652"/>
+ <location filename="mainwindow.cpp" line="3742"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3654"/>
+ <location filename="mainwindow.cpp" line="3744"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3660"/>
- <location filename="mainwindow.cpp" line="4867"/>
+ <location filename="mainwindow.cpp" line="3750"/>
+ <location filename="mainwindow.cpp" line="4971"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3661"/>
- <location filename="mainwindow.cpp" line="4868"/>
+ <location filename="mainwindow.cpp" line="3751"/>
+ <location filename="mainwindow.cpp" line="4972"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3665"/>
+ <location filename="mainwindow.cpp" line="3760"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3666"/>
+ <location filename="mainwindow.cpp" line="3761"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3667"/>
+ <location filename="mainwindow.cpp" line="3762"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3676"/>
+ <location filename="mainwindow.cpp" line="3770"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3679"/>
- <location filename="mainwindow.cpp" line="3683"/>
+ <location filename="mainwindow.cpp" line="3773"/>
+ <location filename="mainwindow.cpp" line="3777"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3774"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3686"/>
+ <location filename="mainwindow.cpp" line="3780"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3697"/>
+ <location filename="mainwindow.cpp" line="3791"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3701"/>
+ <location filename="mainwindow.cpp" line="3795"/>
<source>Mark as converted/working</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3705"/>
+ <location filename="mainwindow.cpp" line="3799"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3801"/>
<source>Visit web page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3808"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3721"/>
- <location filename="mainwindow.cpp" line="4901"/>
+ <location filename="mainwindow.cpp" line="3815"/>
+ <location filename="mainwindow.cpp" line="5010"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3723"/>
- <location filename="mainwindow.cpp" line="4903"/>
+ <location filename="mainwindow.cpp" line="3817"/>
+ <location filename="mainwindow.cpp" line="5012"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3754"/>
+ <location filename="mainwindow.cpp" line="3848"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3756"/>
+ <location filename="mainwindow.cpp" line="3850"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3791"/>
+ <location filename="mainwindow.cpp" line="3885"/>
<source>%1 more</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="3795"/>
+ <location filename="mainwindow.cpp" line="3889"/>
<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>
@@ -2739,12 +2794,12 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3840"/>
+ <location filename="mainwindow.cpp" line="3934"/>
<source>Enable Mods...</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="3855"/>
+ <location filename="mainwindow.cpp" line="3949"/>
<source>Delete %n save(s)</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2752,319 +2807,329 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3897"/>
+ <location filename="mainwindow.cpp" line="3991"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3919"/>
+ <location filename="mainwindow.cpp" line="4013"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3961"/>
+ <location filename="mainwindow.cpp" line="4055"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4082"/>
+ <location filename="mainwindow.cpp" line="4176"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4088"/>
+ <location filename="mainwindow.cpp" line="4182"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4129"/>
+ <location filename="mainwindow.cpp" line="4223"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4129"/>
+ <location filename="mainwindow.cpp" line="4223"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4155"/>
+ <location filename="mainwindow.cpp" line="4249"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4156"/>
+ <location filename="mainwindow.cpp" line="4250"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="4264"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4170"/>
+ <location filename="mainwindow.cpp" line="4264"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4195"/>
- <location filename="mainwindow.cpp" line="4220"/>
+ <location filename="mainwindow.cpp" line="4289"/>
+ <location filename="mainwindow.cpp" line="4314"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4195"/>
+ <location filename="mainwindow.cpp" line="4289"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4198"/>
- <location filename="mainwindow.cpp" line="4223"/>
+ <location filename="mainwindow.cpp" line="4292"/>
+ <location filename="mainwindow.cpp" line="4317"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4198"/>
- <location filename="mainwindow.cpp" line="4223"/>
+ <location filename="mainwindow.cpp" line="4292"/>
+ <location filename="mainwindow.cpp" line="4317"/>
<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="4220"/>
+ <location filename="mainwindow.cpp" line="4314"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4292"/>
+ <location filename="mainwindow.cpp" line="4396"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4305"/>
+ <location filename="mainwindow.cpp" line="4409"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4325"/>
+ <location filename="mainwindow.cpp" line="4429"/>
<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="4359"/>
+ <location filename="mainwindow.cpp" line="4463"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4396"/>
+ <location filename="mainwindow.cpp" line="4500"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4397"/>
+ <location filename="mainwindow.cpp" line="4501"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4401"/>
+ <location filename="mainwindow.cpp" line="4505"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4407"/>
+ <location filename="mainwindow.cpp" line="4511"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4409"/>
+ <location filename="mainwindow.cpp" line="4513"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4415"/>
+ <location filename="mainwindow.cpp" line="4519"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4440"/>
+ <location filename="mainwindow.cpp" line="4544"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4565"/>
+ <location filename="mainwindow.cpp" line="4669"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4565"/>
+ <location filename="mainwindow.cpp" line="4669"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4600"/>
+ <location filename="mainwindow.cpp" line="4704"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4615"/>
- <location filename="mainwindow.cpp" line="4677"/>
+ <location filename="mainwindow.cpp" line="4719"/>
+ <location filename="mainwindow.cpp" line="4781"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
- <location filename="mainwindow.cpp" line="5091"/>
+ <location filename="mainwindow.cpp" line="4731"/>
+ <location filename="mainwindow.cpp" line="5200"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4627"/>
+ <location filename="mainwindow.cpp" line="4731"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4763"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4688"/>
+ <location filename="mainwindow.cpp" line="4792"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4734"/>
+ <location filename="mainwindow.cpp" line="4838"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4861"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4804"/>
+ <location filename="mainwindow.cpp" line="4908"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4805"/>
+ <location filename="mainwindow.cpp" line="4909"/>
<source>Deselect filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4856"/>
+ <location filename="mainwindow.cpp" line="4960"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4872"/>
+ <location filename="mainwindow.cpp" line="4976"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4873"/>
+ <location filename="mainwindow.cpp" line="4977"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4892"/>
+ <location filename="mainwindow.cpp" line="4981"/>
+ <source>Send to top</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="4982"/>
+ <source>Send to bottom</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="mainwindow.cpp" line="5001"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4895"/>
+ <location filename="mainwindow.cpp" line="5004"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5037"/>
+ <location filename="mainwindow.cpp" line="5146"/>
<source>depends on missing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5041"/>
+ <location filename="mainwindow.cpp" line="5150"/>
<source>incompatible with &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5067"/>
+ <location filename="mainwindow.cpp" line="5176"/>
<source>Please wait while LOOT is running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5164"/>
+ <location filename="mainwindow.cpp" line="5273"/>
<source>loot failed. Exit code was: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5186"/>
+ <location filename="mainwindow.cpp" line="5295"/>
<source>failed to start loot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5189"/>
+ <location filename="mainwindow.cpp" line="5298"/>
<source>failed to run loot: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5193"/>
+ <location filename="mainwindow.cpp" line="5302"/>
<source>Errors occured</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5240"/>
+ <location filename="mainwindow.cpp" line="5349"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5250"/>
+ <location filename="mainwindow.cpp" line="5359"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5263"/>
+ <location filename="mainwindow.cpp" line="5372"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5263"/>
+ <location filename="mainwindow.cpp" line="5372"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5284"/>
- <location filename="mainwindow.cpp" line="5306"/>
+ <location filename="mainwindow.cpp" line="5393"/>
+ <location filename="mainwindow.cpp" line="5415"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5285"/>
- <location filename="mainwindow.cpp" line="5307"/>
+ <location filename="mainwindow.cpp" line="5394"/>
+ <location filename="mainwindow.cpp" line="5416"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5296"/>
+ <location filename="mainwindow.cpp" line="5405"/>
<source>Backup of modlist created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5402"/>
+ <location filename="mainwindow.cpp" line="5511"/>
<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="5404"/>
+ <location filename="mainwindow.cpp" line="5513"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5405"/>
+ <location filename="mainwindow.cpp" line="5514"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5406"/>
+ <location filename="mainwindow.cpp" line="5515"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
@@ -3081,82 +3146,82 @@ You can also use online editors and converters instead.</source>
<context>
<name>ModInfo</name>
<message>
- <location filename="modinfo.cpp" line="95"/>
+ <location filename="modinfo.cpp" line="99"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="96"/>
+ <location filename="modinfo.cpp" line="100"/>
<source>Textures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="97"/>
+ <location filename="modinfo.cpp" line="101"/>
<source>Meshes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="98"/>
+ <location filename="modinfo.cpp" line="102"/>
<source>Bethesda Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="99"/>
+ <location filename="modinfo.cpp" line="103"/>
<source>UI Changes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="100"/>
+ <location filename="modinfo.cpp" line="104"/>
<source>Sound Effects</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="101"/>
+ <location filename="modinfo.cpp" line="105"/>
<source>Scripts</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="102"/>
+ <location filename="modinfo.cpp" line="106"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="103"/>
+ <location filename="modinfo.cpp" line="107"/>
<source>Script Extender Files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="104"/>
+ <location filename="modinfo.cpp" line="108"/>
<source>SkyProc Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="105"/>
+ <location filename="modinfo.cpp" line="109"/>
<source>MCM Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="106"/>
+ <location filename="modinfo.cpp" line="110"/>
<source>INI files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="107"/>
+ <location filename="modinfo.cpp" line="111"/>
<source>ModGroup files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="109"/>
+ <location filename="modinfo.cpp" line="113"/>
<source>invalid content type %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="132"/>
+ <location filename="modinfo.cpp" line="136"/>
<source>invalid mod index %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfo.cpp" line="162"/>
+ <location filename="modinfo.cpp" line="166"/>
<source>remove: invalid mod index %1</source>
<translation type="unfinished"></translation>
</message>
@@ -3481,273 +3546,273 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="211"/>
+ <location filename="modinfodialog.cpp" line="226"/>
<source>&amp;Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="212"/>
+ <location filename="modinfodialog.cpp" line="227"/>
<source>&amp;Rename</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="213"/>
+ <location filename="modinfodialog.cpp" line="228"/>
<source>&amp;Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="214"/>
+ <location filename="modinfodialog.cpp" line="229"/>
<source>&amp;Unhide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="215"/>
+ <location filename="modinfodialog.cpp" line="230"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="216"/>
+ <location filename="modinfodialog.cpp" line="231"/>
<source>&amp;New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="468"/>
<location filename="modinfodialog.cpp" line="483"/>
+ <location filename="modinfodialog.cpp" line="498"/>
<source>Save changes?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="468"/>
<location filename="modinfodialog.cpp" line="483"/>
+ <location filename="modinfodialog.cpp" line="498"/>
<source>Save changes to &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="673"/>
+ <location filename="modinfodialog.cpp" line="688"/>
<source>File Exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="673"/>
+ <location filename="modinfodialog.cpp" line="688"/>
<source>A file with that name exists, please enter a new one</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="690"/>
+ <location filename="modinfodialog.cpp" line="705"/>
<source>failed to move file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="715"/>
+ <location filename="modinfodialog.cpp" line="730"/>
<source>failed to create directory &quot;optional&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="759"/>
- <location filename="modinfodialog.cpp" line="1483"/>
+ <location filename="modinfodialog.cpp" line="774"/>
+ <location filename="modinfodialog.cpp" line="1498"/>
<source>Info requested, please wait</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="813"/>
+ <location filename="modinfodialog.cpp" line="828"/>
<source>Main</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="814"/>
+ <location filename="modinfodialog.cpp" line="829"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="815"/>
+ <location filename="modinfodialog.cpp" line="830"/>
<source>Optional</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="816"/>
+ <location filename="modinfodialog.cpp" line="831"/>
<source>Old</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="817"/>
+ <location filename="modinfodialog.cpp" line="832"/>
<source>Misc</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="818"/>
+ <location filename="modinfodialog.cpp" line="833"/>
<source>Unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="829"/>
+ <location filename="modinfodialog.cpp" line="844"/>
<source>Current Version: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="833"/>
+ <location filename="modinfodialog.cpp" line="848"/>
<source>No update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="876"/>
+ <location filename="modinfodialog.cpp" line="891"/>
<source>(description incomplete, please visit nexus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="891"/>
+ <location filename="modinfodialog.cpp" line="906"/>
<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="984"/>
+ <location filename="modinfodialog.cpp" line="999"/>
<source>Failed to delete %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1006"/>
- <location filename="modinfodialog.cpp" line="1025"/>
- <location filename="modinfodialog.cpp" line="1030"/>
+ <location filename="modinfodialog.cpp" line="1015"/>
+ <location filename="modinfodialog.cpp" line="1021"/>
+ <location filename="modinfodialog.cpp" line="1040"/>
+ <location filename="modinfodialog.cpp" line="1045"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1000"/>
- <location filename="modinfodialog.cpp" line="1025"/>
+ <location filename="modinfodialog.cpp" line="1015"/>
+ <location filename="modinfodialog.cpp" line="1040"/>
<source>Are sure you want to delete &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1006"/>
- <location filename="modinfodialog.cpp" line="1030"/>
+ <location filename="modinfodialog.cpp" line="1021"/>
+ <location filename="modinfodialog.cpp" line="1045"/>
<source>Are sure you want to delete the selected files?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1104"/>
- <location filename="modinfodialog.cpp" line="1110"/>
+ <location filename="modinfodialog.cpp" line="1119"/>
+ <location filename="modinfodialog.cpp" line="1125"/>
<source>New Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1116"/>
+ <location filename="modinfodialog.cpp" line="1131"/>
<source>Failed to create &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1220"/>
- <location filename="modinfodialog.cpp" line="1244"/>
+ <location filename="modinfodialog.cpp" line="1235"/>
+ <location filename="modinfodialog.cpp" line="1259"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1220"/>
+ <location filename="modinfodialog.cpp" line="1235"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1223"/>
- <location filename="modinfodialog.cpp" line="1247"/>
+ <location filename="modinfodialog.cpp" line="1238"/>
+ <location filename="modinfodialog.cpp" line="1262"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1223"/>
- <location filename="modinfodialog.cpp" line="1247"/>
+ <location filename="modinfodialog.cpp" line="1238"/>
+ <location filename="modinfodialog.cpp" line="1262"/>
<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="1234"/>
- <location filename="modinfodialog.cpp" line="1257"/>
+ <location filename="modinfodialog.cpp" line="1249"/>
+ <location filename="modinfodialog.cpp" line="1272"/>
<source>failed to rename %1 to %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1244"/>
+ <location filename="modinfodialog.cpp" line="1259"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1320"/>
+ <location filename="modinfodialog.cpp" line="1335"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1320"/>
+ <location filename="modinfodialog.cpp" line="1335"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1392"/>
+ <location filename="modinfodialog.cpp" line="1407"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1405"/>
+ <location filename="modinfodialog.cpp" line="1420"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1421"/>
+ <location filename="modinfodialog.cpp" line="1436"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1421"/>
+ <location filename="modinfodialog.cpp" line="1436"/>
<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="1435"/>
+ <location filename="modinfodialog.cpp" line="1450"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1437"/>
+ <location filename="modinfodialog.cpp" line="1452"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1440"/>
- <location filename="modinfodialog.cpp" line="1460"/>
+ <location filename="modinfodialog.cpp" line="1455"/>
+ <location filename="modinfodialog.cpp" line="1475"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1444"/>
- <location filename="modinfodialog.cpp" line="1464"/>
+ <location filename="modinfodialog.cpp" line="1459"/>
+ <location filename="modinfodialog.cpp" line="1479"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1512"/>
+ <location filename="modinfodialog.cpp" line="1527"/>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1512"/>
+ <location filename="modinfodialog.cpp" line="1527"/>
<source>Please enter a name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1516"/>
- <location filename="modinfodialog.cpp" line="1519"/>
+ <location filename="modinfodialog.cpp" line="1531"/>
+ <location filename="modinfodialog.cpp" line="1534"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1516"/>
+ <location filename="modinfodialog.cpp" line="1531"/>
<source>Invalid name. Must be a valid file name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1519"/>
+ <location filename="modinfodialog.cpp" line="1534"/>
<source>A tweak by that name exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinfodialog.cpp" line="1533"/>
+ <location filename="modinfodialog.cpp" line="1548"/>
<source>Create Tweak</source>
<translation type="unfinished"></translation>
</message>
@@ -3786,272 +3851,285 @@ p, li { white-space: pre-wrap; }
<context>
<name>ModInfoRegular</name>
<message>
- <location filename="modinforegular.cpp" line="174"/>
- <location filename="modinforegular.cpp" line="177"/>
+ <location filename="modinforegular.cpp" line="176"/>
+ <location filename="modinforegular.cpp" line="179"/>
<source>failed to write %1/meta.ini: error %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinforegular.cpp" line="539"/>
+ <location filename="modinforegular.cpp" line="552"/>
<source>%1 contains no esp/esm/esl and no asset (textures, meshes, interface, ...) directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modinforegular.cpp" line="543"/>
+ <location filename="modinforegular.cpp" line="556"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
+ <name>ModInfoSeparator</name>
+ <message>
+ <location filename="modinfoseparator.cpp" line="24"/>
+ <source>This is a Separator</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>ModList</name>
<message>
- <location filename="modlist.cpp" line="66"/>
+ <location filename="modlist.cpp" line="67"/>
<source>Game Plugins (ESP/ESM/ESL)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="67"/>
+ <location filename="modlist.cpp" line="68"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="68"/>
+ <location filename="modlist.cpp" line="69"/>
<source>Meshes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="69"/>
+ <location filename="modlist.cpp" line="70"/>
<source>Bethesda Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="70"/>
+ <location filename="modlist.cpp" line="71"/>
<source>Scripts (Papyrus)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="71"/>
+ <location filename="modlist.cpp" line="72"/>
<source>Script Extender Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="72"/>
+ <location filename="modlist.cpp" line="73"/>
<source>SkyProc Patcher</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="73"/>
+ <location filename="modlist.cpp" line="74"/>
<source>Sound or Music</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="74"/>
+ <location filename="modlist.cpp" line="75"/>
<source>Textures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="75"/>
+ <location filename="modlist.cpp" line="76"/>
<source>MCM Configuration</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="76"/>
+ <location filename="modlist.cpp" line="77"/>
<source>INI files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="77"/>
+ <location filename="modlist.cpp" line="78"/>
<source>ModGroup files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="138"/>
+ <location filename="modlist.cpp" line="139"/>
<source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="147"/>
+ <location filename="modlist.cpp" line="148"/>
<source>Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="148"/>
+ <location filename="modlist.cpp" line="149"/>
+ <source>Separator</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="modlist.cpp" line="150"/>
<source>No valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="149"/>
+ <location filename="modlist.cpp" line="151"/>
<source>Not endorsed yet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="151"/>
+ <location filename="modlist.cpp" line="153"/>
<source>Overwrites files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="152"/>
+ <location filename="modlist.cpp" line="154"/>
<source>Overwritten files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="153"/>
+ <location filename="modlist.cpp" line="155"/>
<source>Overwrites &amp; Overwritten</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="154"/>
+ <location filename="modlist.cpp" line="156"/>
<source>Redundant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="155"/>
+ <location filename="modlist.cpp" line="157"/>
<source>Alternate game source</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="241"/>
+ <location filename="modlist.cpp" line="249"/>
<source>Non-MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="271"/>
+ <location filename="modlist.cpp" line="279"/>
<source>invalid</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="399"/>
+ <location filename="modlist.cpp" line="419"/>
<source>installed version: &quot;%1&quot;, newest version: &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="401"/>
+ <location filename="modlist.cpp" line="421"/>
<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>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="409"/>
+ <location filename="modlist.cpp" line="429"/>
<source>Categories: &lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="438"/>
+ <location filename="modlist.cpp" line="458"/>
<source>Invalid name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="443"/>
+ <location filename="modlist.cpp" line="463"/>
<source>Name is already in use by another mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="942"/>
+ <location filename="modlist.cpp" line="991"/>
<source>drag&amp;drop failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1021"/>
+ <location filename="modlist.cpp" line="1070"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1022"/>
+ <location filename="modlist.cpp" line="1071"/>
<source>Are you sure you want to remove &quot;%1&quot;?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1085"/>
+ <location filename="modlist.cpp" line="1134"/>
<source>Flags</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1086"/>
+ <location filename="modlist.cpp" line="1135"/>
<source>Content</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1087"/>
+ <location filename="modlist.cpp" line="1136"/>
<source>Mod Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1088"/>
+ <location filename="modlist.cpp" line="1137"/>
<source>Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1089"/>
+ <location filename="modlist.cpp" line="1138"/>
<source>Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1090"/>
+ <location filename="modlist.cpp" line="1139"/>
<source>Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1091"/>
+ <location filename="modlist.cpp" line="1140"/>
<source>Source Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1092"/>
+ <location filename="modlist.cpp" line="1141"/>
<source>Nexus ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1093"/>
+ <location filename="modlist.cpp" line="1142"/>
<source>Installation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1094"/>
- <location filename="modlist.cpp" line="1129"/>
+ <location filename="modlist.cpp" line="1143"/>
+ <location filename="modlist.cpp" line="1178"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1102"/>
+ <location filename="modlist.cpp" line="1151"/>
<source>Name of your mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1103"/>
+ <location filename="modlist.cpp" line="1152"/>
<source>Version of the mod (if available)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1104"/>
+ <location filename="modlist.cpp" line="1153"/>
<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="1106"/>
+ <location filename="modlist.cpp" line="1155"/>
<source>Category of the mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1107"/>
+ <location filename="modlist.cpp" line="1156"/>
<source>The source game which was the origin of this mod.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1108"/>
+ <location filename="modlist.cpp" line="1157"/>
<source>Id of the mod as used on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1109"/>
+ <location filename="modlist.cpp" line="1158"/>
<source>Emblemes to highlight things that might require attention.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="modlist.cpp" line="1110"/>
+ <location filename="modlist.cpp" line="1159"/>
<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="1128"/>
+ <location filename="modlist.cpp" line="1177"/>
<source>Time this mod was installed</source>
<translation type="unfinished"></translation>
</message>
@@ -4225,123 +4303,123 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1264"/>
+ <location filename="organizercore.cpp" line="1266"/>
<source>Executable &quot;%1&quot; not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1291"/>
+ <location filename="organizercore.cpp" line="1293"/>
<source>Start Steam?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1292"/>
+ <location filename="organizercore.cpp" line="1294"/>
<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="1318"/>
+ <location filename="organizercore.cpp" line="1320"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1326"/>
+ <location filename="organizercore.cpp" line="1328"/>
<source>Windows Event Log Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1327"/>
+ <location filename="organizercore.cpp" line="1329"/>
<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="1415"/>
+ <location filename="organizercore.cpp" line="1417"/>
<source>No profile set</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1701"/>
+ <location filename="organizercore.cpp" line="1703"/>
<source>Failed to refresh list of esps: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1785"/>
+ <location filename="organizercore.cpp" line="1787"/>
<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="1860"/>
+ <location filename="organizercore.cpp" line="1862"/>
<source>Download?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="1861"/>
+ <location filename="organizercore.cpp" line="1863"/>
<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="1995"/>
+ <location filename="organizercore.cpp" line="1997"/>
<source>failed to update mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2002"/>
- <location filename="organizercore.cpp" line="2019"/>
+ <location filename="organizercore.cpp" line="2004"/>
+ <location filename="organizercore.cpp" line="2021"/>
<source>login successful</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2026"/>
+ <location filename="organizercore.cpp" line="2028"/>
<source>Login failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2027"/>
+ <location filename="organizercore.cpp" line="2029"/>
<source>Login failed, try again?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2036"/>
+ <location filename="organizercore.cpp" line="2038"/>
<source>login failed: %1. Download will not be associated with an account</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2044"/>
+ <location filename="organizercore.cpp" line="2046"/>
<source>login failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2054"/>
+ <location filename="organizercore.cpp" line="2056"/>
<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="2107"/>
+ <location filename="organizercore.cpp" line="2109"/>
<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="2110"/>
- <location filename="organizercore.cpp" line="2126"/>
+ <location filename="organizercore.cpp" line="2112"/>
+ <location filename="organizercore.cpp" line="2128"/>
<source>Description missing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2119"/>
+ <location filename="organizercore.cpp" line="2121"/>
<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="2153"/>
+ <location filename="organizercore.cpp" line="2155"/>
<source>failed to save load order: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="organizercore.cpp" line="2225"/>
+ <location filename="organizercore.cpp" line="2227"/>
<source>The designated write target &quot;%1&quot; is not enabled.</source>
<translation type="unfinished"></translation>
</message>
@@ -4514,68 +4592,68 @@ Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="438"/>
+ <location filename="pluginlist.cpp" line="472"/>
<source>The file containing locked plugin indices is broken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="934"/>
- <location filename="pluginlist.cpp" line="938"/>
+ <location filename="pluginlist.cpp" line="968"/>
+ <location filename="pluginlist.cpp" line="972"/>
<source>&lt;b&gt;Origin&lt;/b&gt;: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="935"/>
+ <location filename="pluginlist.cpp" line="969"/>
<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="940"/>
+ <location filename="pluginlist.cpp" line="974"/>
<source>Author</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="943"/>
+ <location filename="pluginlist.cpp" line="977"/>
<source>Description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="946"/>
+ <location filename="pluginlist.cpp" line="980"/>
<source>Missing Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="953"/>
+ <location filename="pluginlist.cpp" line="987"/>
<source>Enabled Masters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="956"/>
+ <location filename="pluginlist.cpp" line="990"/>
<source>Loads Archives</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="957"/>
+ <location filename="pluginlist.cpp" line="991"/>
<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="962"/>
+ <location filename="pluginlist.cpp" line="996"/>
<source>Loads INI settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="963"/>
+ <location filename="pluginlist.cpp" line="997"/>
<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="967"/>
+ <location filename="pluginlist.cpp" line="1001"/>
<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="1142"/>
+ <location filename="pluginlist.cpp" line="1176"/>
<source>failed to restore load order for %1</source>
<translation type="unfinished"></translation>
</message>
@@ -4647,56 +4725,56 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="211"/>
+ <location filename="profile.cpp" line="212"/>
<source>failed to write mod list: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="222"/>
+ <location filename="profile.cpp" line="223"/>
<source>failed to update tweaked ini file, wrong settings may be used: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="242"/>
+ <location filename="profile.cpp" line="243"/>
<source>failed to create tweaked ini: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="267"/>
+ <location filename="profile.cpp" line="268"/>
<source>failed to open %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="326"/>
+ <location filename="profile.cpp" line="327"/>
<source>&quot;%1&quot; is missing or inaccessible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="371"/>
- <location filename="profile.cpp" line="410"/>
- <location filename="profile.cpp" line="512"/>
- <location filename="profile.cpp" line="531"/>
- <location filename="profile.cpp" line="541"/>
+ <location filename="profile.cpp" line="372"/>
+ <location filename="profile.cpp" line="411"/>
+ <location filename="profile.cpp" line="508"/>
+ <location filename="profile.cpp" line="527"/>
+ <location filename="profile.cpp" line="537"/>
<source>invalid index %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="493"/>
+ <location filename="profile.cpp" line="489"/>
<source>Overwrite directory couldn&apos;t be parsed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="502"/>
+ <location filename="profile.cpp" line="500"/>
<source>invalid priority %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="725"/>
+ <location filename="profile.cpp" line="717"/>
<source>Delete savegames?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="profile.cpp" line="726"/>
+ <location filename="profile.cpp" line="718"/>
<source>Do you want to delete local savegames? (If you select &quot;No&quot;, the save games will show up again if you re-enable local savegames)</source>
<translation type="unfinished"></translation>
</message>
@@ -5302,7 +5380,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="977"/>
+ <location filename="settings.cpp" line="1061"/>
<source>Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -5317,18 +5395,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="870"/>
+ <location filename="mainwindow.cpp" line="872"/>
<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="1277"/>
- <location filename="mainwindow.cpp" line="4039"/>
+ <location filename="mainwindow.cpp" line="1279"/>
+ <location filename="mainwindow.cpp" line="4133"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="1289"/>
+ <location filename="mainwindow.cpp" line="1291"/>
<source>failed to parse profile %1: %2</source>
<translation type="unfinished"></translation>
</message>
@@ -5364,12 +5442,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="514"/>
+ <location filename="pluginlist.cpp" line="548"/>
<source>failed to access %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="pluginlist.cpp" line="528"/>
+ <location filename="pluginlist.cpp" line="562"/>
<source>failed to set file time %1</source>
<translation type="unfinished"></translation>
</message>
@@ -5379,12 +5457,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="984"/>
+ <location filename="settings.cpp" line="1068"/>
<source>Script Extender</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="991"/>
+ <location filename="settings.cpp" line="1075"/>
<source>Proxy DLL</source>
<translation type="unfinished"></translation>
</message>
@@ -5588,28 +5666,28 @@ Select Show Details option to see the full change-log.</source>
<context>
<name>Settings</name>
<message>
- <location filename="settings.cpp" line="143"/>
+ <location filename="settings.cpp" line="146"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="144"/>
+ <location filename="settings.cpp" line="147"/>
<source>Sorry, failed to start the helper application</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="435"/>
- <location filename="settings.cpp" line="454"/>
+ <location filename="settings.cpp" line="466"/>
+ <location filename="settings.cpp" line="485"/>
<source>attempt to store setting for unknown plugin &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="766"/>
+ <location filename="settings.cpp" line="850"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settings.cpp" line="767"/>
+ <location filename="settings.cpp" line="851"/>
<source>Failed to create &quot;%1&quot;, you may not have the necessary permission. path remains unchanged.</source>
<translation type="unfinished"></translation>
</message>
@@ -5686,136 +5764,167 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
</message>
<message>
<location filename="settingsdialog.ui" line="99"/>
+ <source>Colors</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="112"/>
+ <source>Plugin is Contained in selected Mod</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="119"/>
+ <source>Reset Colors</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="175"/>
<source>If checked, the download interface will be more compact.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="102"/>
+ <location filename="settingsdialog.ui" line="178"/>
<source>Compact Download Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="109"/>
+ <location filename="settingsdialog.ui" line="198"/>
<source>If checked, the download list will display meta information instead of file names.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="112"/>
+ <location filename="settingsdialog.ui" line="201"/>
<source>Download Meta Information</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="125"/>
+ <location filename="settingsdialog.ui" line="162"/>
<source>Reset stored information from dialogs.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="128"/>
+ <location filename="settingsdialog.ui" line="105"/>
+ <source>Mod Contains selected Plugin</source>
+ <oldsource>Is contained in selected Mod</oldsource>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="165"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="131"/>
+ <location filename="settingsdialog.ui" line="168"/>
<source>Reset Dialogs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="151"/>
- <location filename="settingsdialog.ui" line="154"/>
+ <location filename="settingsdialog.ui" line="143"/>
+ <location filename="settingsdialog.ui" line="146"/>
<source>Modify the categories available to arrange your mods.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="157"/>
+ <location filename="settingsdialog.ui" line="149"/>
<source>Configure Mod Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="168"/>
+ <location filename="settingsdialog.ui" line="133"/>
+ <source>Is overwriting (loose files)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="126"/>
+ <source>Is overwritten (loose files)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="212"/>
<source>Paths</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="176"/>
- <location filename="settingsdialog.ui" line="193"/>
- <location filename="settingsdialog.ui" line="290"/>
+ <location filename="settingsdialog.ui" line="220"/>
+ <location filename="settingsdialog.ui" line="237"/>
+ <location filename="settingsdialog.ui" line="334"/>
<source>...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="203"/>
+ <location filename="settingsdialog.ui" line="247"/>
<source>Caches</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="210"/>
+ <location filename="settingsdialog.ui" line="254"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="217"/>
- <location filename="settingsdialog.ui" line="220"/>
+ <location filename="settingsdialog.ui" line="261"/>
+ <location filename="settingsdialog.ui" line="264"/>
<source>Directory where downloads are stored.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="237"/>
+ <location filename="settingsdialog.ui" line="281"/>
<source>Downloads</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="257"/>
+ <location filename="settingsdialog.ui" line="301"/>
<source>Profiles</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="280"/>
+ <location filename="settingsdialog.ui" line="324"/>
<source>Directory where mods are stored.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="283"/>
+ <location filename="settingsdialog.ui" line="327"/>
<source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don&apos;t exist in the new location (with the same name).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="307"/>
+ <location filename="settingsdialog.ui" line="351"/>
<source>Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="327"/>
+ <location filename="settingsdialog.ui" line="371"/>
<source>Managed Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="334"/>
+ <location filename="settingsdialog.ui" line="378"/>
<source>Base Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="341"/>
+ <location filename="settingsdialog.ui" line="385"/>
<source>Use %BASE_DIR% to refer to the Base Directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="363"/>
+ <location filename="settingsdialog.ui" line="407"/>
<source>Important: All directories have to be writeable!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="371"/>
- <location filename="settingsdialog.ui" line="387"/>
+ <location filename="settingsdialog.ui" line="415"/>
+ <location filename="settingsdialog.ui" line="431"/>
<source>Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="377"/>
+ <location filename="settingsdialog.ui" line="421"/>
<source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="380"/>
+ <location filename="settingsdialog.ui" line="424"/>
<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; }
@@ -5824,144 +5933,144 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="396"/>
+ <location filename="settingsdialog.ui" line="440"/>
<source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="399"/>
+ <location filename="settingsdialog.ui" line="443"/>
<source>Automatically Log-In to Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="408"/>
- <location filename="settingsdialog.ui" line="594"/>
+ <location filename="settingsdialog.ui" line="452"/>
+ <location filename="settingsdialog.ui" line="638"/>
<source>Username</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="422"/>
- <location filename="settingsdialog.ui" line="604"/>
+ <location filename="settingsdialog.ui" line="466"/>
+ <location filename="settingsdialog.ui" line="648"/>
<source>Password</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="443"/>
+ <location filename="settingsdialog.ui" line="487"/>
<source>Remove cache and cookies. Forces a new login.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="446"/>
+ <location filename="settingsdialog.ui" line="490"/>
<source>Clear Cache</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="475"/>
+ <location filename="settingsdialog.ui" line="519"/>
<source>Disable automatic internet features</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="478"/>
+ <location filename="settingsdialog.ui" line="522"/>
<source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="481"/>
+ <location filename="settingsdialog.ui" line="525"/>
<source>Offline Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="488"/>
+ <location filename="settingsdialog.ui" line="532"/>
<source>Use a proxy for network connections.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="491"/>
+ <location filename="settingsdialog.ui" line="535"/>
<source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="494"/>
+ <location filename="settingsdialog.ui" line="538"/>
<source>Use HTTP Proxy (Uses System Settings)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="503"/>
+ <location filename="settingsdialog.ui" line="547"/>
<source>Associate with &quot;Download with manager&quot; links</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="532"/>
+ <location filename="settingsdialog.ui" line="576"/>
<source>Known Servers (updated on download)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="553"/>
+ <location filename="settingsdialog.ui" line="597"/>
<source>Preferred Servers (Drag &amp; Drop)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="588"/>
+ <location filename="settingsdialog.ui" line="632"/>
<source>Steam</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="634"/>
+ <location filename="settingsdialog.ui" line="678"/>
<source>If you save your steam user ID and password here, they will be used when logging into steam. Note, however, your password will be stored unencrypted, so make sure your computer is secure.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="661"/>
+ <location filename="settingsdialog.ui" line="705"/>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="683"/>
+ <location filename="settingsdialog.ui" line="727"/>
<source>Author:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="697"/>
+ <location filename="settingsdialog.ui" line="741"/>
<source>Version:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="711"/>
+ <location filename="settingsdialog.ui" line="755"/>
<source>Description:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="749"/>
+ <location filename="settingsdialog.ui" line="793"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="754"/>
+ <location filename="settingsdialog.ui" line="798"/>
<source>Value</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="766"/>
+ <location filename="settingsdialog.ui" line="810"/>
<source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="777"/>
+ <location filename="settingsdialog.ui" line="821"/>
<source>Workarounds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="785"/>
+ <location filename="settingsdialog.ui" line="829"/>
<source>Steam App ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="805"/>
+ <location filename="settingsdialog.ui" line="849"/>
<source>The Steam AppID for your game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="808"/>
+ <location filename="settingsdialog.ui" line="852"/>
<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; }
@@ -5977,17 +6086,17 @@ p, li { white-space: pre-wrap; }
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="839"/>
+ <location filename="settingsdialog.ui" line="883"/>
<source>Load Mechanism</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="859"/>
+ <location filename="settingsdialog.ui" line="903"/>
<source>Select loading mechanism. See help for details.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="862"/>
+ <location filename="settingsdialog.ui" line="906"/>
<source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
@@ -5998,17 +6107,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="879"/>
+ <location filename="settingsdialog.ui" line="923"/>
<source>NMM Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="899"/>
+ <location filename="settingsdialog.ui" line="943"/>
<source>The Version of Nexus Mod Manager to impersonate.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="902"/>
+ <location filename="settingsdialog.ui" line="946"/>
<source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn&apos;t need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it&apos;s not lying about what it is. It is merely adding a &quot;compatible&quot; NMM version to the user agent.
@@ -6017,44 +6126,44 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="927"/>
+ <location filename="settingsdialog.ui" line="971"/>
<source>Enforces that inactive ESPs and ESMs are never loaded.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="930"/>
+ <location filename="settingsdialog.ui" line="974"/>
<source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="934"/>
+ <location filename="settingsdialog.ui" line="978"/>
<source>Hide inactive ESPs/ESMs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="941"/>
+ <location filename="settingsdialog.ui" line="985"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="944"/>
+ <location filename="settingsdialog.ui" line="988"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="948"/>
+ <location filename="settingsdialog.ui" line="992"/>
<source>Force-enable game files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="958"/>
+ <location filename="settingsdialog.ui" line="1002"/>
<source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="961"/>
+ <location filename="settingsdialog.ui" line="1005"/>
<source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods.
However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can&apos;t be resolved correctly.
@@ -6062,44 +6171,44 @@ If you disable this feature, MO will only display official DLCs this way. Please
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="967"/>
+ <location filename="settingsdialog.ui" line="1011"/>
<source>Display mods installed outside MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="977"/>
- <location filename="settingsdialog.ui" line="981"/>
+ <location filename="settingsdialog.ui" line="1021"/>
+ <location filename="settingsdialog.ui" line="1025"/>
<source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="985"/>
+ <location filename="settingsdialog.ui" line="1029"/>
<source>Back-date BSAs</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1009"/>
+ <location filename="settingsdialog.ui" line="1053"/>
<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="1020"/>
+ <location filename="settingsdialog.ui" line="1064"/>
<source>Diagnostics</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1028"/>
+ <location filename="settingsdialog.ui" line="1072"/>
<source>Log Level</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1035"/>
+ <location filename="settingsdialog.ui" line="1079"/>
<source>Decides the amount of data printed to &quot;ModOrganizer.log&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1038"/>
+ <location filename="settingsdialog.ui" line="1082"/>
<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.
@@ -6107,37 +6216,37 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1045"/>
+ <location filename="settingsdialog.ui" line="1089"/>
<source>Debug</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1050"/>
+ <location filename="settingsdialog.ui" line="1094"/>
<source>Info (recommended)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1055"/>
+ <location filename="settingsdialog.ui" line="1099"/>
<source>Warning</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1060"/>
+ <location filename="settingsdialog.ui" line="1104"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1085"/>
+ <location filename="settingsdialog.ui" line="1129"/>
<source>Crash Dumps</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1092"/>
+ <location filename="settingsdialog.ui" line="1136"/>
<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="1095"/>
+ <location filename="settingsdialog.ui" line="1139"/>
<source>
Decides which type of crash dumps are collected when injected processes crash.
&quot;None&quot; Disables the generation of crash dumps by MO.
@@ -6148,37 +6257,37 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1105"/>
+ <location filename="settingsdialog.ui" line="1149"/>
<source>None</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1110"/>
+ <location filename="settingsdialog.ui" line="1154"/>
<source>Mini (recommended)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1115"/>
+ <location filename="settingsdialog.ui" line="1159"/>
<source>Data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1120"/>
+ <location filename="settingsdialog.ui" line="1164"/>
<source>Full</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1132"/>
+ <location filename="settingsdialog.ui" line="1176"/>
<source>Max Dumps To Keep</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1152"/>
+ <location filename="settingsdialog.ui" line="1196"/>
<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="1155"/>
+ <location filename="settingsdialog.ui" line="1199"/>
<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.
@@ -6186,12 +6295,12 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1167"/>
+ <location filename="settingsdialog.ui" line="1211"/>
<source>Hint: right click link and copy link location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1170"/>
+ <location filename="settingsdialog.ui" line="1214"/>
<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.
@@ -6201,52 +6310,52 @@ For the other games this is not a sufficient replacement for AI!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="70"/>
+ <location filename="settingsdialog.cpp" line="71"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="71"/>
+ <location filename="settingsdialog.cpp" line="72"/>
<source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="119"/>
+ <location filename="settingsdialog.cpp" line="120"/>
<source>Select base directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="130"/>
+ <location filename="settingsdialog.cpp" line="131"/>
<source>Select download directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="141"/>
+ <location filename="settingsdialog.cpp" line="142"/>
<source>Select mod directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="152"/>
+ <location filename="settingsdialog.cpp" line="153"/>
<source>Select cache directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="163"/>
+ <location filename="settingsdialog.cpp" line="164"/>
<source>Select profiles directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="174"/>
+ <location filename="settingsdialog.cpp" line="175"/>
<source>Select overwrite directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="182"/>
+ <location filename="settingsdialog.cpp" line="286"/>
<source>Confirm?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.cpp" line="183"/>
+ <location filename="settingsdialog.cpp" line="287"/>
<source>This will make all dialogs show up again where you checked the &quot;Remember selection&quot;-box. Continue?</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index 8f714afd..d56a4bde 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -936,7 +936,7 @@ QVariant PluginList::data(const QModelIndex &modelIndex, int role) const
} else if (role == Qt::BackgroundRole
|| (role == ViewMarkingScrollBar::DEFAULT_ROLE)) {
if (m_ESPs[index].m_ModSelected) {
- return QColor(0, 0, 255, 64);
+ return Settings::instance().pluginListContainedColor();
} else {
return QVariant();
}
diff --git a/src/settings.cpp b/src/settings.cpp
index 2dbca0eb..0ecbaa23 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -50,6 +50,8 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QStringList>
#include <QVariantMap>
#include <QLabel>
+#include <QPushButton>
+#include <QPalette>
#include <Qt> // for Qt::UserRole, etc
#include <QtDebug> // for qDebug, qWarning
@@ -62,6 +64,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <string>
#include <utility> // for pair, make_pair
+
using namespace MOBase;
template <typename T>
@@ -189,6 +192,14 @@ QString Settings::deObfuscate(const QString &password)
return QString::fromUtf8(buffer.constData());
}
+QColor Settings::getIdealTextColor(const QColor& rBackgroundColor)
+{
+ const int THRESHOLD = 105;
+ int BackgroundDelta = (rBackgroundColor.red() * 0.299) + (rBackgroundColor.green() * 0.587) + (rBackgroundColor.blue() * 0.114);
+ return QColor((255 - BackgroundDelta < THRESHOLD) ? Qt::black : Qt::white);
+}
+
+
bool Settings::hideUncheckedPlugins() const
{
return m_Settings.value("Settings/hide_unchecked_plugins", false).toBool();
@@ -355,6 +366,26 @@ int Settings::crashDumpsMax() const
return m_Settings.value("Settings/crash_dumps_max", 5).toInt();
}
+QColor Settings::modlistOverwrittenLooseColor() const
+{
+ return m_Settings.value("Settings/overwrittenLooseFilesColor", QColor(0, 255, 0, 64)).value<QColor>();
+}
+
+QColor Settings::modlistOverwritingLooseColor() const
+{
+ return m_Settings.value("Settings/overwritingLooseFilesColor", QColor(255, 0, 0, 64)).value<QColor>();
+}
+
+QColor Settings::modlistContainsPluginColor() const
+{
+ return m_Settings.value("Settings/containsPluginColor", QColor(0, 0, 255, 64)).value<QColor>();
+}
+
+QColor Settings::pluginListContainedColor() const
+{
+ return m_Settings.value("Settings/containedColor", QColor(0, 0, 255, 64)).value<QColor>();
+}
+
void Settings::setNexusLogin(QString username, QString password)
{
m_Settings.setValue("Settings/nexus_login", true);
@@ -587,13 +618,14 @@ void Settings::resetDialogs()
QuestionBoxMemory::resetDialogs();
}
-
void Settings::query(PluginContainer *pluginContainer, QWidget *parent)
{
SettingsDialog dialog(pluginContainer, parent);
connect(&dialog, SIGNAL(resetDialogs()), this, SLOT(resetDialogs()));
+ connect(&dialog, SIGNAL(resetColorSettings()), this, SLOT(resetColorSettings()));
+
std::vector<std::unique_ptr<SettingsTab>> tabs;
tabs.push_back(std::unique_ptr<SettingsTab>(new GeneralTab(this, dialog)));
@@ -658,6 +690,10 @@ Settings::GeneralTab::GeneralTab(Settings *m_parent, SettingsDialog &m_dialog)
, m_compactBox(m_dialog.findChild<QCheckBox *>("compactBox"))
, m_showMetaBox(m_dialog.findChild<QCheckBox *>("showMetaBox"))
, m_usePrereleaseBox(m_dialog.findChild<QCheckBox *>("usePrereleaseBox"))
+ , m_overwritingBtn(m_dialog.findChild<QPushButton *>("overwritingBtn"))
+ , m_overwrittenBtn(m_dialog.findChild<QPushButton *>("overwrittenBtn"))
+ , m_containsBtn(m_dialog.findChild<QPushButton *>("containsBtn"))
+ , m_containedBtn(m_dialog.findChild<QPushButton *>("containedBtn"))
{
// FIXME I think 'addLanguages' lives in here not in parent
m_parent->addLanguages(m_languageBox);
@@ -685,6 +721,50 @@ Settings::GeneralTab::GeneralTab(Settings *m_parent, SettingsDialog &m_dialog)
m_styleBox->setCurrentIndex(currentID);
}
}
+ /* verision using palette only works with fusion theme for some stupid reason...
+ m_overwritingBtn->setAutoFillBackground(true);
+ m_overwrittenBtn->setAutoFillBackground(true);
+ m_containsBtn->setAutoFillBackground(true);
+ m_containedBtn->setAutoFillBackground(true);
+ m_overwritingBtn->setPalette(QPalette(m_parent->modlistOverwritingLooseColor()));
+ m_overwrittenBtn->setPalette(QPalette(m_parent->modlistOverwrittenLooseColor()));
+ m_containsBtn->setPalette(QPalette(m_parent->modlistContainsPluginColor()));
+ m_containedBtn->setPalette(QPalette(m_parent->pluginListContainedColor()));
+ QPalette palette1 = m_overwritingBtn->palette();
+ QPalette palette2 = m_overwrittenBtn->palette();
+ QPalette palette3 = m_containsBtn->palette();
+ QPalette palette4 = m_containedBtn->palette();
+ palette1.setColor(QPalette::Background, m_parent->modlistOverwritingLooseColor());
+ palette2.setColor(QPalette::Background, m_parent->modlistOverwrittenLooseColor());
+ palette3.setColor(QPalette::Background, m_parent->modlistContainsPluginColor());
+ palette4.setColor(QPalette::Background, m_parent->pluginListContainedColor());
+ m_overwritingBtn->setPalette(palette1);
+ m_overwrittenBtn->setPalette(palette2);
+ m_containsBtn->setPalette(palette3);
+ m_containedBtn->setPalette(palette4);
+ */
+
+ //version with stylesheet
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+
+
+ m_overwritingBtn->setStyleSheet(COLOR_STYLE.arg(
+ m_parent->modlistOverwritingLooseColor().name()).arg(getIdealTextColor(
+ m_parent->modlistOverwritingLooseColor()).name()));
+ m_overwrittenBtn->setStyleSheet(COLOR_STYLE.arg(
+ m_parent->modlistOverwrittenLooseColor().name()).arg(getIdealTextColor(
+ m_parent->modlistOverwrittenLooseColor()).name()));
+ m_containsBtn->setStyleSheet(COLOR_STYLE.arg(
+ m_parent->modlistContainsPluginColor().name()).arg(getIdealTextColor(
+ m_parent->modlistContainsPluginColor()).name()));
+ m_containedBtn->setStyleSheet(COLOR_STYLE.arg(
+ m_parent->pluginListContainedColor().name()).arg(getIdealTextColor(
+ m_parent->pluginListContainedColor()).name()));
+
+ m_dialog.setOverwritingColor(m_parent->modlistOverwritingLooseColor());
+ m_dialog.setOverwrittenColor(m_parent->modlistOverwrittenLooseColor());
+ m_dialog.setContainsColor(m_parent->modlistContainsPluginColor());
+ m_dialog.setContainedColor(m_parent->pluginListContainedColor());
m_compactBox->setChecked(m_parent->compactDownloads());
m_showMetaBox->setChecked(m_parent->metaDownloads());
@@ -707,6 +787,10 @@ void Settings::GeneralTab::update()
emit m_parent->styleChanged(newStyle);
}
+ m_Settings.setValue("Settings/overwritingLooseFilesColor", m_dialog.getOverwritingColor());
+ m_Settings.setValue("Settings/overwrittenLooseFilesColor", m_dialog.getOverwrittenColor());
+ m_Settings.setValue("Settings/containsPluginColor", m_dialog.getContainsColor());
+ m_Settings.setValue("Settings/containedColor", m_dialog.getContainedColor());
m_Settings.setValue("Settings/compact_downloads", m_compactBox->isChecked());
m_Settings.setValue("Settings/meta_downloads", m_showMetaBox->isChecked());
m_Settings.setValue("Settings/use_prereleases", m_usePrereleaseBox->isChecked());
diff --git a/src/settings.h b/src/settings.h
index c49edfcb..8fe053e8 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -29,6 +29,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QSettings>
#include <QString>
#include <QVariant>
+#include <QColor>
#include <QtGlobal> //for uint
@@ -42,6 +43,7 @@ class QSpinBox;
class QListWidget;
class QWidget;
class QLabel;
+class QPushButton;
struct ServerInfo;
@@ -217,6 +219,15 @@ public:
*/
int crashDumpsMax() const;
+ QColor modlistOverwrittenLooseColor() const;
+
+ QColor modlistOverwritingLooseColor() const;
+
+ QColor modlistContainsPluginColor() const;
+
+ QColor pluginListContainedColor() const;
+
+
/**
* @brief set the nexus login information
*
@@ -346,7 +357,8 @@ public:
public slots:
void managedGameChanged(MOBase::IPluginGame const *gamePlugin);
-
+public:
+ static QColor getIdealTextColor(const QColor& rBackgroundColor);
private:
static QString obfuscate(const QString &password);
@@ -387,6 +399,10 @@ private:
QCheckBox *m_compactBox;
QCheckBox *m_showMetaBox;
QCheckBox *m_usePrereleaseBox;
+ QPushButton *m_overwritingBtn;
+ QPushButton *m_overwrittenBtn;
+ QPushButton *m_containsBtn;
+ QPushButton *m_containedBtn;
};
class PathsTab : public SettingsTab
diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp
index 058d082a..7f484830 100644
--- a/src/settingsdialog.cpp
+++ b/src/settingsdialog.cpp
@@ -33,6 +33,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QFileDialog>
#include <QMessageBox>
#include <QShortcut>
+#include <QColorDialog>
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
@@ -177,6 +178,109 @@ void SettingsDialog::on_browseOverwriteDirBtn_clicked()
}
}
+void SettingsDialog::on_containsBtn_clicked()
+{
+ QColor result = QColorDialog::getColor(m_ContainsColor, this);
+ if (result.isValid()) {
+ m_ContainsColor = result;
+
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+ ui->containsBtn->setStyleSheet(COLOR_STYLE.arg(
+ result.name()).arg(Settings::getIdealTextColor(
+ result).name()));
+
+ /*ui->containsBtn->setAutoFillBackground(true);
+ ui->containsBtn->setPalette(QPalette(result));
+ QPalette palette = ui->containsBtn->palette();
+ palette.setColor(QPalette::Background, result);
+ ui->containsBtn->setPalette(palette);*/
+ }
+}
+
+void SettingsDialog::on_containedBtn_clicked()
+{
+ QColor result = QColorDialog::getColor(m_ContainedColor, this);
+ if (result.isValid()) {
+ m_ContainedColor = result;
+
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+ ui->containedBtn->setStyleSheet(COLOR_STYLE.arg(
+ result.name()).arg(Settings::getIdealTextColor(
+ result).name()));
+
+ /*ui->containedBtn->setAutoFillBackground(true);
+ ui->containedBtn->setPalette(QPalette(result));
+ QPalette palette = ui->containedBtn->palette();
+ palette.setColor(QPalette::Background, result);
+ ui->containedBtn->setPalette(palette);*/
+ }
+}
+
+void SettingsDialog::on_overwrittenBtn_clicked()
+{
+ QColor result = QColorDialog::getColor(m_OverwrittenColor, this);
+ if (result.isValid()) {
+ m_OverwrittenColor = result;
+
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+ ui->overwrittenBtn->setStyleSheet(COLOR_STYLE.arg(
+ result.name()).arg(Settings::getIdealTextColor(
+ result).name()));
+
+ /*ui->overwrittenBtn->setAutoFillBackground(true);
+ ui->overwrittenBtn->setPalette(QPalette(result));
+ QPalette palette = ui->overwrittenBtn->palette();
+ palette.setColor(QPalette::Background, result);
+ ui->overwrittenBtn->setPalette(palette);*/
+ }
+}
+
+void SettingsDialog::on_overwritingBtn_clicked()
+{
+ QColor result = QColorDialog::getColor(m_OverwritingColor, this);
+ if (result.isValid()) {
+ m_OverwritingColor = result;
+
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+ ui->overwritingBtn->setStyleSheet(COLOR_STYLE.arg(
+ result.name()).arg(Settings::getIdealTextColor(
+ result).name()));
+
+ /*ui->overwritingBtn->setAutoFillBackground(true);
+ ui->overwritingBtn->setPalette(QPalette(result));
+ QPalette palette = ui->overwritingBtn->palette();
+ palette.setColor(QPalette::Background, result);
+ ui->overwritingBtn->setPalette(palette);*/
+ }
+}
+
+void SettingsDialog::on_resetColorsBtn_clicked()
+{
+ m_OverwritingColor = QColor(255, 0, 0, 64);
+ m_OverwrittenColor = QColor(0, 255, 0, 64);
+ m_ContainsColor = QColor(0, 0, 255, 64);
+ m_ContainedColor = QColor(0, 0, 255, 64);
+
+ QString COLOR_STYLE("QPushButton { background-color : %1; color : %2; }");
+
+ ui->overwritingBtn->setStyleSheet(COLOR_STYLE.arg(
+ QColor(255, 0, 0, 64).name()).arg(Settings::getIdealTextColor(
+ QColor(255, 0, 0, 64)).name()));
+
+ ui->overwrittenBtn->setStyleSheet(COLOR_STYLE.arg(
+ QColor(0, 255, 0, 64).name()).arg(Settings::getIdealTextColor(
+ QColor(0, 255, 0, 64)).name()));
+
+ ui->containsBtn->setStyleSheet(COLOR_STYLE.arg(
+ QColor(0, 0, 255, 64).name()).arg(Settings::getIdealTextColor(
+ QColor(0, 0, 255, 64)).name()));
+
+ ui->containedBtn->setStyleSheet(COLOR_STYLE.arg(
+ QColor(0, 0, 255, 64).name()).arg(Settings::getIdealTextColor(
+ QColor(0, 0, 255, 64)).name()));
+
+}
+
void SettingsDialog::on_resetDialogsButton_clicked()
{
if (QMessageBox::question(this, tr("Confirm?"),
diff --git a/src/settingsdialog.h b/src/settingsdialog.h
index 2e270131..c678ec78 100644
--- a/src/settingsdialog.h
+++ b/src/settingsdialog.h
@@ -56,6 +56,18 @@ private:
void storeSettings(QListWidgetItem *pluginItem);
+public:
+
+ QColor getOverwritingColor() { return m_OverwritingColor; }
+ QColor getOverwrittenColor() { return m_OverwrittenColor; }
+ QColor getContainsColor() { return m_ContainsColor; }
+ QColor getContainedColor() { return m_ContainedColor; }
+
+ void setOverwritingColor(QColor col) { m_OverwritingColor = col; }
+ void setOverwrittenColor(QColor col) { m_OverwrittenColor = col; }
+ void setContainsColor(QColor col) { m_ContainsColor = col; }
+ void setContainedColor(QColor col) { m_ContainedColor = col; }
+
private slots:
void on_loginCheckBox_toggled(bool checked);
@@ -85,9 +97,24 @@ private slots:
void on_browseProfilesDirBtn_clicked();
+ void on_overwritingBtn_clicked();
+
+ void on_overwrittenBtn_clicked();
+
+ void on_containsBtn_clicked();
+
+ void on_containedBtn_clicked();
+
+ void on_resetColorsBtn_clicked();
+
private:
Ui::SettingsDialog *ui;
PluginContainer *m_PluginContainer;
+
+ QColor m_OverwritingColor;
+ QColor m_OverwrittenColor;
+ QColor m_ContainsColor;
+ QColor m_ContainedColor;
};
diff --git a/src/settingsdialog.ui b/src/settingsdialog.ui
index 05814091..4d6535dc 100644
--- a/src/settingsdialog.ui
+++ b/src/settingsdialog.ui
@@ -92,28 +92,65 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
<property name="title">
<string>User interface</string>
</property>
- <layout class="QVBoxLayout" name="verticalLayout_11">
- <item>
- <widget class="QCheckBox" name="compactBox">
- <property name="toolTip">
- <string>If checked, the download interface will be more compact.</string>
- </property>
- <property name="text">
- <string>Compact Download Interface</string>
+ <layout class="QGridLayout" name="gridLayout">
+ <item row="2" column="0" colspan="2">
+ <widget class="QGroupBox" name="ModlistGroupBox">
+ <property name="title">
+ <string>Colors</string>
</property>
+ <layout class="QGridLayout" name="gridLayout_5">
+ <item row="2" column="0" colspan="2">
+ <widget class="QPushButton" name="containsBtn">
+ <property name="text">
+ <string>Mod Contains selected Plugin</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="0" colspan="2">
+ <widget class="QPushButton" name="containedBtn">
+ <property name="text">
+ <string>Plugin is Contained in selected Mod</string>
+ </property>
+ </widget>
+ </item>
+ <item row="4" column="0" colspan="2">
+ <widget class="QPushButton" name="resetColorsBtn">
+ <property name="text">
+ <string>Reset Colors</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QPushButton" name="overwrittenBtn">
+ <property name="text">
+ <string>Is overwritten (loose files)</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QPushButton" name="overwritingBtn">
+ <property name="text">
+ <string>Is overwriting (loose files)</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
</widget>
</item>
- <item>
- <widget class="QCheckBox" name="showMetaBox">
+ <item row="6" column="0" colspan="2">
+ <widget class="QPushButton" name="categoriesBtn">
<property name="toolTip">
- <string>If checked, the download list will display meta information instead of file names.</string>
+ <string>Modify the categories available to arrange your mods.</string>
+ </property>
+ <property name="whatsThis">
+ <string>Modify the categories available to arrange your mods.</string>
</property>
<property name="text">
- <string>Download Meta Information</string>
+ <string>Configure Mod Categories</string>
</property>
</widget>
</item>
- <item>
+ <item row="5" column="0" colspan="2">
<widget class="QPushButton" name="resetDialogsButton">
<property name="maximumSize">
<size>
@@ -132,7 +169,17 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
</property>
</widget>
</item>
- <item>
+ <item row="0" column="0">
+ <widget class="QCheckBox" name="compactBox">
+ <property name="toolTip">
+ <string>If checked, the download interface will be more compact.</string>
+ </property>
+ <property name="text">
+ <string>Compact Download Interface</string>
+ </property>
+ </widget>
+ </item>
+ <item row="4" column="0" colspan="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
@@ -145,16 +192,13 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
</property>
</spacer>
</item>
- <item>
- <widget class="QPushButton" name="categoriesBtn">
+ <item row="0" column="1">
+ <widget class="QCheckBox" name="showMetaBox">
<property name="toolTip">
- <string>Modify the categories available to arrange your mods.</string>
- </property>
- <property name="whatsThis">
- <string>Modify the categories available to arrange your mods.</string>
+ <string>If checked, the download list will display meta information instead of file names.</string>
</property>
<property name="text">
- <string>Configure Mod Categories</string>
+ <string>Download Meta Information</string>
</property>
</widget>
</item>
@@ -1217,8 +1261,6 @@ For the other games this is not a sufficient replacement for AI!</string>
<tabstop>logLevelBox</tabstop>
<tabstop>usePrereleaseBox</tabstop>
<tabstop>compactBox</tabstop>
- <tabstop>showMetaBox</tabstop>
- <tabstop>resetDialogsButton</tabstop>
<tabstop>categoriesBtn</tabstop>
<tabstop>baseDirEdit</tabstop>
<tabstop>browseBaseDirBtn</tabstop>