diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-20 20:27:06 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-20 20:27:06 -0500 |
| commit | a611c355ce732961c2a9ba1a8909f0c144afa860 (patch) | |
| tree | 3b7397dce252c5ceea73b367efc4e0313226da36 /src | |
| parent | 4689db76248166d8a4086952e4976bd6d74414fe (diff) | |
Basic ESL updates
Diffstat (limited to 'src')
| -rw-r--r-- | src/activatemodsdialog.ui | 4 | ||||
| -rw-r--r-- | src/mainwindow.ui | 2 | ||||
| -rw-r--r-- | src/modinfodialog.cpp | 3 | ||||
| -rw-r--r-- | src/modinfodialog.ui | 4 | ||||
| -rw-r--r-- | src/modinforegular.cpp | 4 | ||||
| -rw-r--r-- | src/modlist.cpp | 4 | ||||
| -rw-r--r-- | src/organizer_en.ts | 691 | ||||
| -rw-r--r-- | src/organizer_en_US.ts | 14 | ||||
| -rw-r--r-- | src/organizercore.cpp | 18 | ||||
| -rw-r--r-- | src/pluginlist.cpp | 2 | ||||
| -rw-r--r-- | src/settingsdialog.ui | 2 | ||||
| -rw-r--r-- | src/tutorials/tutorial_conflictresolution_main.js | 2 | ||||
| -rw-r--r-- | src/tutorials/tutorial_primer_main.js | 2 |
13 files changed, 384 insertions, 368 deletions
diff --git a/src/activatemodsdialog.ui b/src/activatemodsdialog.ui index f6124bbc..cd8b0eec 100644 --- a/src/activatemodsdialog.ui +++ b/src/activatemodsdialog.ui @@ -17,14 +17,14 @@ <item>
<widget class="QTableWidget" name="modsTable">
<property name="toolTip">
- <string>This is a list of esps and esms that were active when the save game was created.</string>
+ <string>This is a list of esps, esms, and esls that were active when the save game was created.</string>
</property>
<property name="whatsThis">
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps, esms, and esls that were active when the save game was created.</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html></string>
diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 4b5467ed..743ce012 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -846,7 +846,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></string>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps, esms, and esls contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></string>
</property>
<property name="dragEnabled">
<bool>true</bool>
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index 0e77859a..c96c2b4a 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -314,7 +314,8 @@ void ModInfoDialog::refreshLists() ui->iniFileList->addItem(namePart);
}
} else if (fileName.endsWith(".esp", Qt::CaseInsensitive) ||
- fileName.endsWith(".esm", Qt::CaseInsensitive)) {
+ fileName.endsWith(".esm", Qt::CaseInsensitive) ||
+ fileName.endsWith(".esl", Qt::CaseInsensitive)) {
QString relativePath = fileName.mid(m_RootPath.length() + 1);
if (relativePath.contains('/')) {
QFileInfo fileInfo(fileName);
diff --git a/src/modinfodialog.ui b/src/modinfodialog.ui index a452bc59..25822fd0 100644 --- a/src/modinfodialog.ui +++ b/src/modinfodialog.ui @@ -279,10 +279,10 @@ <item row="1" column="1">
<widget class="QListWidget" name="inactiveESPList">
<property name="toolTip">
- <string>List of esps and esms that can not be loaded by the game.</string>
+ <string>List of esps, esms, and esls that can not be loaded by the game.</string>
</property>
<property name="whatsThis">
- <string>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
+ <string>List of esps, esms, and esls contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.
Most mods do not have optional esps, so chances are good you are looking at an empty list.</string>
diff --git a/src/modinforegular.cpp b/src/modinforegular.cpp index 231e5497..bacc21f7 100644 --- a/src/modinforegular.cpp +++ b/src/modinforegular.cpp @@ -430,7 +430,7 @@ std::vector<ModInfo::EContent> ModInfoRegular::getContents() const if (m_LastContentCheck.isNull() || (m_LastContentCheck.secsTo(now) > 60)) { m_CachedContent.clear(); QDir dir(absolutePath()); - if (dir.entryList(QStringList() << "*.esp" << "*.esm").size() > 0) { + if (dir.entryList(QStringList() << "*.esp" << "*.esm" << "*.esl").size() > 0) { m_CachedContent.push_back(CONTENT_PLUGIN); } if (dir.entryList(QStringList() << "*.bsa" << "*.ba2").size() > 0) { @@ -476,7 +476,7 @@ int ModInfoRegular::getHighlight() const QString ModInfoRegular::getDescription() const { if (!isValid()) { - return tr("%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory").arg(name()); + return tr("%1 contains no esp/esm/esl and no asset (textures, meshes, interface, ...) directory").arg(name()); } else { const std::set<int> &categories = getCategories(); std::wostringstream categoryString; diff --git a/src/modlist.cpp b/src/modlist.cpp index fca98aac..0aea7a98 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -60,7 +60,7 @@ ModList::ModList(QObject *parent) , m_FontMetrics(QFont())
, m_DropOnItems(false)
{
- m_ContentIcons[ModInfo::CONTENT_PLUGIN] = std::make_tuple(":/MO/gui/content/plugin", tr("Game plugins (esp/esm)"));
+ m_ContentIcons[ModInfo::CONTENT_PLUGIN] = std::make_tuple(":/MO/gui/content/plugin", tr("Game plugins (esp/esm/esl)"));
m_ContentIcons[ModInfo::CONTENT_INTERFACE] = std::make_tuple(":/MO/gui/content/interface", tr("Interface"));
m_ContentIcons[ModInfo::CONTENT_MESH] = std::make_tuple(":/MO/gui/content/mesh", tr("Meshes"));
m_ContentIcons[ModInfo::CONTENT_BSA] = std::make_tuple(":/MO/gui/content/bsa", tr("BSA"));
@@ -1026,7 +1026,7 @@ QString ModList::getColumnToolTip(int column) case COL_FLAGS: return tr("Emblemes to highlight things that might require attention.");
case COL_CONTENT: return tr("Depicts the content of the mod:<br>"
"<table cellspacing=7>"
- "<tr><td><img src=\":/MO/gui/content/plugin\" width=32/></td><td>Game plugins (esp/esm)</tr>"
+ "<tr><td><img src=\":/MO/gui/content/plugin\" width=32/></td><td>Game plugins (esp/esm/esl)</tr>"
"<tr><td><img src=\":/MO/gui/content/interface\" width=32/></td><td>Interface</tr>"
"<tr><td><img src=\":/MO/gui/content/mesh\" width=32/></td><td>Meshes</tr>"
"<tr><td><img src=\":/MO/gui/content/bsa\" width=32/></td><td>BSA</tr>"
diff --git a/src/organizer_en.ts b/src/organizer_en.ts index da3a3c6e..f73717f2 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -64,7 +64,7 @@ </message> <message> <location filename="activatemodsdialog.ui" line="20"/> - <source>This is a list of esps and esms that were active when the save game was created.</source> + <source>This is a list of esps, esms, and esls that were active when the save game was created.</source> <translation type="unfinished"></translation> </message> <message> @@ -73,7 +73,7 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps, esms, and esls that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html></source> @@ -1325,13 +1325,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="253"/> - <location filename="mainwindow.ui" line="757"/> + <location filename="mainwindow.ui" line="760"/> <source>Restore Backup...</source> <translation type="unfinished"></translation> </message> <message> <location filename="mainwindow.ui" line="267"/> - <location filename="mainwindow.ui" line="777"/> + <location filename="mainwindow.ui" line="780"/> <source>Create Backup</source> <translation type="unfinished"></translation> </message> @@ -1362,8 +1362,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="513"/> - <location filename="mainwindow.ui" line="894"/> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="1138"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1431,74 +1431,74 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="842"/> <source>List of available esp/esm files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> + <location filename="mainwindow.ui" line="845"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps, esms, and esls contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="904"/> + <location filename="mainwindow.ui" line="907"/> <source>Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="922"/> + <location filename="mainwindow.ui" line="925"/> <source>refresh data-directory overview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="925"/> + <location filename="mainwindow.ui" line="928"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="928"/> - <location filename="mainwindow.cpp" line="2896"/> - <location filename="mainwindow.cpp" line="3651"/> + <location filename="mainwindow.ui" line="931"/> + <location filename="mainwindow.cpp" line="2906"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="944"/> + <location filename="mainwindow.ui" line="947"/> <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="954"/> + <location filename="mainwindow.ui" line="957"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="959"/> + <location filename="mainwindow.ui" line="962"/> <source>Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="969"/> <location filename="mainwindow.ui" line="972"/> + <location filename="mainwindow.ui" line="975"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="975"/> + <location filename="mainwindow.ui" line="978"/> <source>Show only conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="986"/> <source>Saves</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1007"/> + <location filename="mainwindow.ui" line="1010"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1509,155 +1509,155 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1030"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1062"/> + <location filename="mainwindow.ui" line="1065"/> <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="1115"/> + <location filename="mainwindow.ui" line="1118"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1177"/> + <location filename="mainwindow.ui" line="1180"/> <source>Tool Bar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> + <location filename="mainwindow.ui" line="1223"/> <source>Install Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1226"/> <source>Install &Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1226"/> + <location filename="mainwindow.ui" line="1229"/> <source>Install a new mod from an archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1229"/> + <location filename="mainwindow.ui" line="1232"/> <source>Ctrl+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1241"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1241"/> + <location filename="mainwindow.ui" line="1244"/> <source>&Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1244"/> + <location filename="mainwindow.ui" line="1247"/> <source>Configure Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1247"/> + <location filename="mainwindow.ui" line="1250"/> <source>Ctrl+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1259"/> <source>Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1259"/> + <location filename="mainwindow.ui" line="1262"/> <source>&Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1262"/> + <location filename="mainwindow.ui" line="1265"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1268"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1274"/> - <location filename="mainwindow.ui" line="1280"/> + <location filename="mainwindow.ui" line="1277"/> + <location filename="mainwindow.ui" line="1283"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1277"/> + <location filename="mainwindow.ui" line="1280"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1283"/> + <location filename="mainwindow.ui" line="1286"/> <source>Ctrl+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1292"/> + <location filename="mainwindow.ui" line="1295"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1295"/> + <location filename="mainwindow.ui" line="1298"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1298"/> + <location filename="mainwindow.ui" line="1301"/> <source>Configure settings and workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1301"/> + <location filename="mainwindow.ui" line="1304"/> <source>Ctrl+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1310"/> + <location filename="mainwindow.ui" line="1313"/> <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1313"/> + <location filename="mainwindow.ui" line="1316"/> <source>Search nexus network for more mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1316"/> + <location filename="mainwindow.ui" line="1319"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1328"/> - <location filename="mainwindow.cpp" line="3592"/> + <location filename="mainwindow.ui" line="1331"/> + <location filename="mainwindow.cpp" line="3602"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1331"/> + <location filename="mainwindow.ui" line="1334"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1343"/> + <location filename="mainwindow.ui" line="1346"/> <location filename="mainwindow.cpp" line="597"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1346"/> + <location filename="mainwindow.ui" line="1349"/> <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! @@ -1665,44 +1665,44 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1358"/> <location filename="mainwindow.ui" line="1361"/> + <location filename="mainwindow.ui" line="1364"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1364"/> + <location filename="mainwindow.ui" line="1367"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1373"/> + <location filename="mainwindow.ui" line="1376"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1376"/> - <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.ui" line="1379"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1381"/> + <location filename="mainwindow.ui" line="1384"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1384"/> + <location filename="mainwindow.ui" line="1387"/> <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1393"/> + <location filename="mainwindow.ui" line="1396"/> <source>Change Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1396"/> + <location filename="mainwindow.ui" line="1399"/> <source>Open the game selection dialog</source> <translation type="unfinished"></translation> </message> @@ -1817,469 +1817,469 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1120"/> + <location filename="mainwindow.cpp" line="1126"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1131"/> + <location filename="mainwindow.cpp" line="1137"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1243"/> + <location filename="mainwindow.cpp" line="1249"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1392"/> + <location filename="mainwindow.cpp" line="1398"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1525"/> + <location filename="mainwindow.cpp" line="1531"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1526"/> + <location filename="mainwindow.cpp" line="1532"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1684"/> + <location filename="mainwindow.cpp" line="1694"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1685"/> + <location filename="mainwindow.cpp" line="1695"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1820"/> + <location filename="mainwindow.cpp" line="1830"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1848"/> + <location filename="mainwindow.cpp" line="1858"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1922"/> + <location filename="mainwindow.cpp" line="1932"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1945"/> + <location filename="mainwindow.cpp" line="1955"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1969"/> + <location filename="mainwindow.cpp" line="1979"/> <source><Contains %1></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2004"/> + <location filename="mainwindow.cpp" line="2014"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2005"/> + <location filename="mainwindow.cpp" line="2015"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2006"/> + <location filename="mainwindow.cpp" line="2016"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2007"/> + <location filename="mainwindow.cpp" line="2017"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2008"/> + <location filename="mainwindow.cpp" line="2018"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2009"/> + <location filename="mainwindow.cpp" line="2019"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2010"/> + <location filename="mainwindow.cpp" line="2020"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2011"/> + <location filename="mainwindow.cpp" line="2021"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2057"/> + <location filename="mainwindow.cpp" line="2067"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2070"/> + <location filename="mainwindow.cpp" line="2080"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2071"/> + <location filename="mainwindow.cpp" line="2081"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2074"/> + <location filename="mainwindow.cpp" line="2084"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2078"/> - <location filename="mainwindow.cpp" line="3490"/> - <location filename="mainwindow.cpp" line="3514"/> + <location filename="mainwindow.cpp" line="2088"/> + <location filename="mainwindow.cpp" line="3500"/> + <location filename="mainwindow.cpp" line="3524"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2126"/> - <location filename="mainwindow.cpp" line="2807"/> - <location filename="mainwindow.cpp" line="2815"/> - <location filename="mainwindow.cpp" line="3073"/> + <location filename="mainwindow.cpp" line="2136"/> + <location filename="mainwindow.cpp" line="2817"/> + <location filename="mainwindow.cpp" line="2825"/> + <location filename="mainwindow.cpp" line="3083"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2127"/> + <location filename="mainwindow.cpp" line="2137"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2138"/> + <location filename="mainwindow.cpp" line="2148"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2173"/> - <location filename="mainwindow.cpp" line="2176"/> + <location filename="mainwindow.cpp" line="2183"/> + <location filename="mainwindow.cpp" line="2186"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2173"/> + <location filename="mainwindow.cpp" line="2183"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2177"/> + <location filename="mainwindow.cpp" line="2187"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2194"/> + <location filename="mainwindow.cpp" line="2204"/> <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="2210"/> - <location filename="mainwindow.cpp" line="2237"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2247"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2285"/> + <location filename="mainwindow.cpp" line="2295"/> <source>Failed to display overwrite dialog: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2414"/> + <location filename="mainwindow.cpp" line="2424"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2424"/> + <location filename="mainwindow.cpp" line="2434"/> <source>Web page for this mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2451"/> - <location filename="mainwindow.cpp" line="2478"/> - <location filename="mainwindow.cpp" line="2924"/> + <location filename="mainwindow.cpp" line="2461"/> + <location filename="mainwindow.cpp" line="2488"/> + <location filename="mainwindow.cpp" line="2934"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2452"/> + <location filename="mainwindow.cpp" line="2462"/> <source>This will create an empty mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2461"/> - <location filename="mainwindow.cpp" line="2488"/> + <location filename="mainwindow.cpp" line="2471"/> + <location filename="mainwindow.cpp" line="2498"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2479"/> + <location filename="mainwindow.cpp" line="2489"/> <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="2719"/> + <location filename="mainwindow.cpp" line="2729"/> <source>Not logged in, endorsement information will be wrong</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2727"/> + <location filename="mainwindow.cpp" line="2737"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2728"/> + <location filename="mainwindow.cpp" line="2738"/> <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="2748"/> - <location filename="mainwindow.cpp" line="3560"/> + <location filename="mainwindow.cpp" line="2758"/> + <location filename="mainwindow.cpp" line="3570"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2749"/> + <location filename="mainwindow.cpp" line="2759"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2807"/> + <location filename="mainwindow.cpp" line="2817"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2815"/> + <location filename="mainwindow.cpp" line="2825"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2833"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2825"/> + <location filename="mainwindow.cpp" line="2835"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2825"/> + <location filename="mainwindow.cpp" line="2835"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2826"/> + <location filename="mainwindow.cpp" line="2836"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2826"/> + <location filename="mainwindow.cpp" line="2836"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2827"/> + <location filename="mainwindow.cpp" line="2837"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2827"/> + <location filename="mainwindow.cpp" line="2837"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2880"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2887"/> + <location filename="mainwindow.cpp" line="2897"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2889"/> + <location filename="mainwindow.cpp" line="2899"/> <source>Create empty mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2891"/> + <location filename="mainwindow.cpp" line="2901"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2892"/> + <location filename="mainwindow.cpp" line="2902"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2894"/> + <location filename="mainwindow.cpp" line="2904"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2898"/> + <location filename="mainwindow.cpp" line="2908"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> + <location filename="mainwindow.cpp" line="2927"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2923"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2927"/> + <location filename="mainwindow.cpp" line="2937"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2928"/> + <location filename="mainwindow.cpp" line="2938"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="2942"/> <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> + <location filename="mainwindow.cpp" line="2947"/> <source>Replace Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2942"/> + <location filename="mainwindow.cpp" line="2952"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2948"/> + <location filename="mainwindow.cpp" line="2958"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2952"/> + <location filename="mainwindow.cpp" line="2962"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2954"/> + <location filename="mainwindow.cpp" line="2964"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2959"/> + <location filename="mainwindow.cpp" line="2969"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2970"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2971"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2965"/> + <location filename="mainwindow.cpp" line="2975"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="2972"/> + <location filename="mainwindow.cpp" line="2978"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2969"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2975"/> + <location filename="mainwindow.cpp" line="2985"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2984"/> + <location filename="mainwindow.cpp" line="2994"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2988"/> + <location filename="mainwindow.cpp" line="2998"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="3000"/> <source>Visit web page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2993"/> + <location filename="mainwindow.cpp" line="3003"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> + <location filename="mainwindow.cpp" line="3007"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3004"/> - <location filename="mainwindow.cpp" line="4067"/> + <location filename="mainwindow.cpp" line="3014"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="3016"/> + <location filename="mainwindow.cpp" line="4079"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3034"/> + <location filename="mainwindow.cpp" line="3044"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3046"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3070"/> + <location filename="mainwindow.cpp" line="3080"/> <source>%1 more</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3084"/> <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> <translation type="unfinished"> <numerusform></numerusform> @@ -2287,12 +2287,12 @@ This function will guess the versioning scheme under the assumption that the ins </translation> </message> <message> - <location filename="mainwindow.cpp" line="3119"/> + <location filename="mainwindow.cpp" line="3129"/> <source>Enable Mods...</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="3134"/> + <location filename="mainwindow.cpp" line="3144"/> <source>Delete %n save(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -2300,319 +2300,319 @@ This function will guess the versioning scheme under the assumption that the ins </translation> </message> <message> - <location filename="mainwindow.cpp" line="3176"/> + <location filename="mainwindow.cpp" line="3186"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3198"/> + <location filename="mainwindow.cpp" line="3208"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3240"/> + <location filename="mainwindow.cpp" line="3250"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3372"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3378"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3409"/> + <location filename="mainwindow.cpp" line="3419"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3409"/> + <location filename="mainwindow.cpp" line="3419"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3435"/> + <location filename="mainwindow.cpp" line="3445"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3436"/> + <location filename="mainwindow.cpp" line="3446"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3450"/> + <location filename="mainwindow.cpp" line="3460"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3450"/> + <location filename="mainwindow.cpp" line="3460"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3475"/> - <location filename="mainwindow.cpp" line="3500"/> + <location filename="mainwindow.cpp" line="3485"/> + <location filename="mainwindow.cpp" line="3510"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3475"/> + <location filename="mainwindow.cpp" line="3485"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3478"/> - <location filename="mainwindow.cpp" line="3503"/> + <location filename="mainwindow.cpp" line="3488"/> + <location filename="mainwindow.cpp" line="3513"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3478"/> - <location filename="mainwindow.cpp" line="3503"/> + <location filename="mainwindow.cpp" line="3488"/> + <location filename="mainwindow.cpp" line="3513"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3500"/> + <location filename="mainwindow.cpp" line="3510"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3533"/> + <location filename="mainwindow.cpp" line="3543"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3546"/> + <location filename="mainwindow.cpp" line="3556"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3560"/> + <location filename="mainwindow.cpp" line="3570"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3604"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3631"/> + <location filename="mainwindow.cpp" line="3641"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3632"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3636"/> + <location filename="mainwindow.cpp" line="3646"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3652"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3644"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3650"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3671"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3784"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3784"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3809"/> + <location filename="mainwindow.cpp" line="3819"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="3834"/> + <location filename="mainwindow.cpp" line="3885"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> - <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="3846"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="3846"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3867"/> + <location filename="mainwindow.cpp" line="3877"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3886"/> + <location filename="mainwindow.cpp" line="3896"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3934"/> + <location filename="mainwindow.cpp" line="3944"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3935"/> + <location filename="mainwindow.cpp" line="3945"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3975"/> + <location filename="mainwindow.cpp" line="3985"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3976"/> + <location filename="mainwindow.cpp" line="3986"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4037"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4048"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4039"/> + <location filename="mainwindow.cpp" line="4049"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4068"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4061"/> + <location filename="mainwindow.cpp" line="4071"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4213"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4207"/> + <location filename="mainwindow.cpp" line="4217"/> <source>incompatible with "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4229"/> + <location filename="mainwindow.cpp" line="4243"/> <source>Please wait while LOOT is running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4327"/> + <location filename="mainwindow.cpp" line="4337"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4349"/> + <location filename="mainwindow.cpp" line="4359"/> <source>failed to start loot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4362"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4356"/> + <location filename="mainwindow.cpp" line="4366"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4409"/> + <location filename="mainwindow.cpp" line="4420"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4419"/> + <location filename="mainwindow.cpp" line="4430"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4432"/> + <location filename="mainwindow.cpp" line="4443"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4432"/> + <location filename="mainwindow.cpp" line="4443"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4453"/> - <location filename="mainwindow.cpp" line="4475"/> + <location filename="mainwindow.cpp" line="4464"/> + <location filename="mainwindow.cpp" line="4486"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4454"/> - <location filename="mainwindow.cpp" line="4476"/> + <location filename="mainwindow.cpp" line="4465"/> + <location filename="mainwindow.cpp" line="4487"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4465"/> + <location filename="mainwindow.cpp" line="4476"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4576"/> <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="4567"/> + <location filename="mainwindow.cpp" line="4578"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4568"/> + <location filename="mainwindow.cpp" line="4579"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4569"/> + <location filename="mainwindow.cpp" line="4580"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> @@ -2793,12 +2793,12 @@ This function will guess the versioning scheme under the assumption that the ins </message> <message> <location filename="modinfodialog.ui" line="282"/> - <source>List of esps and esms that can not be loaded by the game.</source> + <source>List of esps, esms, and esls that can not be loaded by the game.</source> <translation type="unfinished"></translation> </message> <message> <location filename="modinfodialog.ui" line="285"/> - <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. + <source>List of esps, esms, and esls contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> @@ -2989,227 +2989,227 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="175"/> + <location filename="modinfodialog.cpp" line="176"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="176"/> + <location filename="modinfodialog.cpp" line="177"/> <source>&Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="177"/> + <location filename="modinfodialog.cpp" line="178"/> <source>&Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="178"/> + <location filename="modinfodialog.cpp" line="179"/> <source>&Unhide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="179"/> + <location filename="modinfodialog.cpp" line="180"/> <source>&Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="180"/> + <location filename="modinfodialog.cpp" line="181"/> <source>&New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="429"/> - <location filename="modinfodialog.cpp" line="444"/> + <location filename="modinfodialog.cpp" line="430"/> + <location filename="modinfodialog.cpp" line="445"/> <source>Save changes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="429"/> - <location filename="modinfodialog.cpp" line="444"/> + <location filename="modinfodialog.cpp" line="430"/> + <location filename="modinfodialog.cpp" line="445"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="634"/> + <location filename="modinfodialog.cpp" line="635"/> <source>File Exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="634"/> + <location filename="modinfodialog.cpp" line="635"/> <source>A file with that name exists, please enter a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="651"/> + <location filename="modinfodialog.cpp" line="652"/> <source>failed to move file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="676"/> + <location filename="modinfodialog.cpp" line="677"/> <source>failed to create directory "optional"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="716"/> - <location filename="modinfodialog.cpp" line="1220"/> + <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="1221"/> <source>Info requested, please wait</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="770"/> + <location filename="modinfodialog.cpp" line="771"/> <source>Main</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="771"/> + <location filename="modinfodialog.cpp" line="772"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="772"/> + <location filename="modinfodialog.cpp" line="773"/> <source>Optional</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="773"/> + <location filename="modinfodialog.cpp" line="774"/> <source>Old</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="774"/> + <location filename="modinfodialog.cpp" line="775"/> <source>Misc</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="775"/> + <location filename="modinfodialog.cpp" line="776"/> <source>Unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="786"/> + <location filename="modinfodialog.cpp" line="787"/> <source>Current Version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="790"/> + <location filename="modinfodialog.cpp" line="791"/> <source>No update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="831"/> + <location filename="modinfodialog.cpp" line="832"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="846"/> + <location filename="modinfodialog.cpp" line="847"/> <source><a href="%1">Visit on Nexus</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="924"/> + <location filename="modinfodialog.cpp" line="925"/> <source>Failed to delete %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="935"/> - <location filename="modinfodialog.cpp" line="940"/> + <location filename="modinfodialog.cpp" line="936"/> + <location filename="modinfodialog.cpp" line="941"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="935"/> + <location filename="modinfodialog.cpp" line="936"/> <source>Are sure you want to delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="940"/> + <location filename="modinfodialog.cpp" line="941"/> <source>Are sure you want to delete the selected files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1014"/> - <location filename="modinfodialog.cpp" line="1020"/> + <location filename="modinfodialog.cpp" line="1015"/> + <location filename="modinfodialog.cpp" line="1021"/> <source>New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1026"/> + <location filename="modinfodialog.cpp" line="1027"/> <source>Failed to create "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1130"/> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1155"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1131"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1133"/> - <location filename="modinfodialog.cpp" line="1157"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1158"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1133"/> - <location filename="modinfodialog.cpp" line="1157"/> + <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1158"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1144"/> - <location filename="modinfodialog.cpp" line="1167"/> + <location filename="modinfodialog.cpp" line="1145"/> + <location filename="modinfodialog.cpp" line="1168"/> <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1154"/> + <location filename="modinfodialog.cpp" line="1155"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1200"/> + <location filename="modinfodialog.cpp" line="1201"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1202"/> + <location filename="modinfodialog.cpp" line="1203"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1243"/> + <location filename="modinfodialog.cpp" line="1244"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1243"/> + <location filename="modinfodialog.cpp" line="1244"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1247"/> - <location filename="modinfodialog.cpp" line="1250"/> + <location filename="modinfodialog.cpp" line="1248"/> + <location filename="modinfodialog.cpp" line="1251"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1247"/> + <location filename="modinfodialog.cpp" line="1248"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1250"/> + <location filename="modinfodialog.cpp" line="1251"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1264"/> + <location filename="modinfodialog.cpp" line="1265"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> @@ -3593,147 +3593,147 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="809"/> - <location filename="organizercore.cpp" line="864"/> + <location filename="organizercore.cpp" line="819"/> + <location filename="organizercore.cpp" line="874"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="817"/> - <location filename="organizercore.cpp" line="874"/> + <location filename="organizercore.cpp" line="827"/> + <location filename="organizercore.cpp" line="884"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="818"/> - <location filename="organizercore.cpp" line="875"/> + <location filename="organizercore.cpp" line="828"/> + <location filename="organizercore.cpp" line="885"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="828"/> - <location filename="organizercore.cpp" line="885"/> + <location filename="organizercore.cpp" line="838"/> + <location filename="organizercore.cpp" line="895"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="831"/> - <location filename="organizercore.cpp" line="892"/> + <location filename="organizercore.cpp" line="841"/> + <location filename="organizercore.cpp" line="902"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="832"/> - <location filename="organizercore.cpp" line="893"/> + <location filename="organizercore.cpp" line="842"/> + <location filename="organizercore.cpp" line="903"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1066"/> + <location filename="organizercore.cpp" line="1076"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1092"/> + <location filename="organizercore.cpp" line="1102"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1093"/> + <location filename="organizercore.cpp" line="1103"/> <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="1116"/> + <location filename="organizercore.cpp" line="1126"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1164"/> + <location filename="organizercore.cpp" line="1174"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1354"/> + <location filename="organizercore.cpp" line="1366"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1420"/> + <location filename="organizercore.cpp" line="1432"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1487"/> + <location filename="organizercore.cpp" line="1499"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1488"/> + <location filename="organizercore.cpp" line="1500"/> <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="1619"/> + <location filename="organizercore.cpp" line="1631"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1626"/> - <location filename="organizercore.cpp" line="1643"/> + <location filename="organizercore.cpp" line="1638"/> + <location filename="organizercore.cpp" line="1655"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1650"/> + <location filename="organizercore.cpp" line="1662"/> <source>Login failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1651"/> + <location filename="organizercore.cpp" line="1663"/> <source>Login failed, try again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1660"/> + <location filename="organizercore.cpp" line="1672"/> <source>login failed: %1. Download will not be associated with an account</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1668"/> + <location filename="organizercore.cpp" line="1680"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1678"/> + <location filename="organizercore.cpp" line="1690"/> <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="1714"/> - <source>Too many esps and esms enabled</source> + <location filename="organizercore.cpp" line="1726"/> + <source>Too many esps, esms, and esls enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1717"/> - <location filename="organizercore.cpp" line="1735"/> + <location filename="organizercore.cpp" line="1729"/> + <location filename="organizercore.cpp" line="1747"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1726"/> + <location filename="organizercore.cpp" line="1738"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1759"/> + <location filename="organizercore.cpp" line="1771"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1831"/> + <location filename="organizercore.cpp" line="1843"/> <source>The designated write target "%1" is not enabled.</source> <translation type="unfinished"></translation> </message> @@ -4338,7 +4338,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="gameinfoimpl.cpp" line="42"/> + <location filename="gameinfoimpl.cpp" line="43"/> <source>invalid game type %1</source> <translation type="unfinished"></translation> </message> @@ -4509,7 +4509,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="main.cpp" line="150"/> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> + <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to modorganizer@gmail.com, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> + <oldsource>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</oldsource> <translation type="unfinished"></translation> </message> <message> @@ -4570,13 +4571,13 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1207"/> - <location filename="mainwindow.cpp" line="3322"/> + <location filename="mainwindow.cpp" line="1213"/> + <location filename="mainwindow.cpp" line="3332"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1219"/> + <location filename="mainwindow.cpp" line="1225"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> @@ -4764,52 +4765,52 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="165"/> + <location filename="selfupdater.cpp" line="166"/> <source>New update available (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="170"/> + <location filename="selfupdater.cpp" line="171"/> <source>Install</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="187"/> + <location filename="selfupdater.cpp" line="188"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="188"/> + <location filename="selfupdater.cpp" line="189"/> <source>Failed to find correct download, please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="203"/> + <location filename="selfupdater.cpp" line="204"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="204"/> + <location filename="selfupdater.cpp" line="205"/> <source>Download in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="295"/> + <location filename="selfupdater.cpp" line="296"/> <source>Download failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="306"/> + <location filename="selfupdater.cpp" line="307"/> <source>Failed to install update: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="329"/> + <location filename="selfupdater.cpp" line="330"/> <source>Failed to start %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="339"/> + <location filename="selfupdater.cpp" line="340"/> <source>Error</source> <translation type="unfinished"></translation> </message> @@ -5318,7 +5319,7 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. -If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps, esms, and esls) displayed in the right pane are completely unaffected by this feature.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/src/organizer_en_US.ts b/src/organizer_en_US.ts index 075132c2..4e657785 100644 --- a/src/organizer_en_US.ts +++ b/src/organizer_en_US.ts @@ -54,7 +54,7 @@ </message> <message> <location filename="activatemodsdialog.ui" line="20"/> - <source>This is a list of esps and esms that were active when the save game was created.</source> + <source>This is a list of esps, esms, and esls that were active when the save game was created.</source> <translation type="unfinished"></translation> </message> <message> @@ -63,7 +63,7 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps, esms, and esls that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html></source> @@ -1467,7 +1467,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps, esms, and esls contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> <translation type="unfinished"></translation> </message> <message> @@ -1993,7 +1993,7 @@ Continue?</source> </message> <message> <location filename="mainwindow.cpp" line="2240"/> - <source>Too many esps and esms enabled</source> + <source>Too many esps, esms, and esls enabled</source> <translation type="unfinished"></translation> </message> <message> @@ -2937,12 +2937,12 @@ This function will guess the versioning scheme under the assumption that the ins </message> <message> <location filename="modinfodialog.ui" line="282"/> - <source>List of esps and esms that can not be loaded by the game.</source> + <source>List of esps, esms, and esls that can not be loaded by the game.</source> <translation type="unfinished"></translation> </message> <message> <location filename="modinfodialog.ui" line="285"/> - <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. + <source>List of esps, esms, and esls contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> @@ -5177,7 +5177,7 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. -If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps, esms, and esls) displayed in the right pane are completely unaffected by this feature.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/src/organizercore.cpp b/src/organizercore.cpp index d9ed6ab6..c55504a8 100644 --- a/src/organizercore.cpp +++ b/src/organizercore.cpp @@ -1413,6 +1413,20 @@ void OrganizerCore::updateModActiveState(int index, bool active) m_PluginList.enableESP(esm, active);
}
int enabled = 0;
+ for (const QString &esl :
+ dir.entryList(QStringList() << "*.esl", QDir::Files)) {
+ const FileEntry::Ptr file = m_DirectoryStructure->findFile(ToWString(esl));
+ if (file.get() == nullptr) {
+ qWarning("failed to activate %s", qPrintable(esl));
+ continue;
+ }
+
+ if (active != m_PluginList.isEnabled(esl)
+ && file->getAlternatives().empty()) {
+ m_PluginList.enableESP(esl, active);
+ ++enabled;
+ }
+ }
QStringList esps = dir.entryList(QStringList() << "*.esp", QDir::Files);
for (const QString &esp : esps) {
const FileEntry::Ptr file = m_DirectoryStructure->findFile(ToWString(esp));
@@ -1429,7 +1443,7 @@ void OrganizerCore::updateModActiveState(int index, bool active) }
if (active && (enabled > 1)) {
MessageDialog::showMessage(
- tr("Multiple esps activated, please check that they don't conflict."),
+ tr("Multiple esps/esls activated, please check that they don't conflict."),
qApp->activeWindow());
}
m_PluginList.refreshLoadOrder();
@@ -1723,7 +1737,7 @@ QString OrganizerCore::shortDescription(unsigned int key) const {
switch (key) {
case PROBLEM_TOOMANYPLUGINS: {
- return tr("Too many esps and esms enabled");
+ return tr("Too many esps, esms, and esls enabled");
} break;
default: {
return tr("Description missing");
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index a4d8561c..f2c52d5b 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -135,7 +135,7 @@ void PluginList::refresh(const QString &profileName QString extension = filename.right(3).toLower();
- if ((extension == "esp") || (extension == "esm")) {
+ if ((extension == "esp") || (extension == "esm") || (extension == "esl")) {
bool forceEnabled = Settings::instance().forceEnableCoreFiles() &&
std::find(primaryPlugins.begin(), primaryPlugins.end(), filename.toLower()) != primaryPlugins.end();
diff --git a/src/settingsdialog.ui b/src/settingsdialog.ui index a38530da..f5e37ea6 100644 --- a/src/settingsdialog.ui +++ b/src/settingsdialog.ui @@ -970,7 +970,7 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri <string>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods.
However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly.
-If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</string>
+If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps, esms, and esls) displayed in the right pane are completely unaffected by this feature.</string>
</property>
<property name="text">
<string>Display mods installed outside MO</string>
diff --git a/src/tutorials/tutorial_conflictresolution_main.js b/src/tutorials/tutorial_conflictresolution_main.js index 3a7160c6..00ca8d67 100644 --- a/src/tutorials/tutorial_conflictresolution_main.js +++ b/src/tutorials/tutorial_conflictresolution_main.js @@ -93,7 +93,7 @@ function getTutorialSteps() { waitForClick()
},
function() {
- tutorial.text = qsTr("I told you in the \"First Steps\" tutorial how the esp/esm plugins contain changes to the game world "
+ tutorial.text = qsTr("I told you in the \"First Steps\" tutorial how the esp/esm/esl plugins contain changes to the game world "
+"like modifications to the terrain or existing NPCs. Each change like this is stored in a record, hence the "
+"name \"record conflict\". For example when two mods try to change the same location, only one change can become active.")
waitForClick()
diff --git a/src/tutorials/tutorial_primer_main.js b/src/tutorials/tutorial_primer_main.js index 12df2c86..7ef65df9 100644 --- a/src/tutorials/tutorial_primer_main.js +++ b/src/tutorials/tutorial_primer_main.js @@ -75,7 +75,7 @@ function setupTooptips() { switch (manager.findControl("tabWidget").currentIndex) {
case 0:
- tooltipWidget("espList", qsTr("Plugins (esp/esm files) of the mods in the current profile. They need to be checked to be loaded."))
+ tooltipWidget("espList", qsTr("Plugins (esp/esm/esl files) of the mods in the current profile. They need to be checked to be loaded."))
tooltipWidget("bossButton", qsTr("Automatically sort plugins using the bundled LOOT application."))
tooltipWidget("espFilterEdit", qsTr("Quickly filter plugin list as you type."))
break
|
