diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2018-12-24 22:37:32 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2018-12-24 22:37:53 -0600 |
| commit | 22f40072cf7782e6f3484a58347381310b40c6cc (patch) | |
| tree | 15d7d09b0404ed42d23b1a0c02c4016add0e7bc3 /src | |
| parent | 40a3e93c4698f31494df6483ff964a535342e177 (diff) | |
Allow user to "won't endorse" MO itself
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 40 | ||||
| -rw-r--r-- | src/mainwindow.h | 2 | ||||
| -rw-r--r-- | src/organizer_en.ts | 877 |
3 files changed, 475 insertions, 444 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 10b91c7c..3e8323e5 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -245,8 +245,6 @@ MainWindow::MainWindow(QSettings &initSettings statusBar()->clearMessage();
statusBar()->hide();
- ui->actionEndorseMO->setVisible(false);
-
updateProblemsButton();
// Setup toolbar
@@ -262,6 +260,10 @@ MainWindow::MainWindow(QSettings &initSettings actionToToolButton(ui->actionHelp);
createHelpWidget();
+ actionToToolButton(ui->actionEndorseMO);
+ createEndorseWidget();
+ ui->actionEndorseMO->setVisible(false);
+
for (QAction *action : ui->toolBar->actions()) {
if (action->isSeparator()) {
// insert spacers
@@ -707,6 +709,25 @@ void MainWindow::about() }
+void MainWindow::createEndorseWidget()
+{
+ QToolButton *toolBtn = qobject_cast<QToolButton*>(ui->toolBar->widgetForAction(ui->actionEndorseMO));
+ QMenu *buttonMenu = toolBtn->menu();
+ if (buttonMenu == nullptr) {
+ return;
+ }
+ buttonMenu->clear();
+
+ QAction *endorseAction = new QAction(tr("Endorse"), buttonMenu);
+ connect(endorseAction, SIGNAL(triggered()), this, SLOT(on_actionEndorseMO_triggered()));
+ buttonMenu->addAction(endorseAction);
+
+ QAction *wontEndorseAction = new QAction(tr("Won't Endorse"), buttonMenu);
+ connect(wontEndorseAction, SIGNAL(triggered()), this, SLOT(on_actionWontEndorseMO_triggered()));
+ buttonMenu->addAction(wontEndorseAction);
+}
+
+
void MainWindow::createHelpWidget()
{
QToolButton *toolBtn = qobject_cast<QToolButton*>(ui->toolBar->widgetForAction(ui->actionHelp));
@@ -5012,7 +5033,9 @@ void MainWindow::motdReceived(const QString &motd) void MainWindow::notEndorsedYet()
{
- ui->actionEndorseMO->setVisible(true);
+ if (!Settings::instance().directInterface().value("wont_endorse_MO", false).toBool()) {
+ ui->actionEndorseMO->setVisible(true);
+ }
}
@@ -5077,6 +5100,13 @@ void MainWindow::on_actionEndorseMO_triggered() }
+void MainWindow::on_actionWontEndorseMO_triggered()
+{
+ Settings::instance().directInterface().setValue("wont_endorse_MO", true);
+ ui->actionEndorseMO->setVisible(false);
+}
+
+
void MainWindow::updateDownloadListDelegate()
{
if (m_OrganizerCore.settings().compactDownloads()) {
@@ -5143,7 +5173,9 @@ void MainWindow::nxmUpdatesAvailable(const std::vector<int> &modIDs, QVariant us if (game
&& result["id"].toInt() == game->nexusModOrganizerID()
&& result["game_id"].toInt() == game->nexusGameID()) {
- if (!result["voted_by_user"].toBool() && Settings::instance().endorsementIntegration()) {
+ if (!result["voted_by_user"].toBool() &&
+ Settings::instance().endorsementIntegration() &&
+ !Settings::instance().directInterface().value("wont_endorse_MO", false).toBool()) {
ui->actionEndorseMO->setVisible(true);
}
} else {
diff --git a/src/mainwindow.h b/src/mainwindow.h index 3bf0397a..b041b65e 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -251,6 +251,7 @@ private: // remove invalid category-references from mods
void fixCategories();
+ void createEndorseWidget();
void createHelpWidget();
bool extractProgress(QProgressDialog &extractProgress, int percentage, std::string fileName);
@@ -600,6 +601,7 @@ private slots: // ui slots void on_actionSettings_triggered();
void on_actionUpdate_triggered();
void on_actionEndorseMO_triggered();
+ void on_actionWontEndorseMO_triggered();
void on_bsaList_customContextMenuRequested(const QPoint &pos);
void on_clearFiltersButton_clicked();
diff --git a/src/organizer_en.ts b/src/organizer_en.ts index 59125574..9b2d82ae 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -1547,7 +1547,7 @@ This is likely due to a corrupted or incompatible download or unrecognized archi <name>MainWindow</name> <message> <location filename="mainwindow.ui" line="46"/> - <location filename="mainwindow.ui" line="596"/> + <location filename="mainwindow.ui" line="616"/> <source>Categories</source> <translation type="unfinished"></translation> </message> @@ -1613,66 +1613,63 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="273"/> - <location filename="mainwindow.ui" line="859"/> + <location filename="mainwindow.ui" line="879"/> <source>Restore Backup...</source> <translation type="unfinished"></translation> </message> <message> <location filename="mainwindow.ui" line="287"/> - <location filename="mainwindow.ui" line="879"/> - <location filename="mainwindow.cpp" line="4081"/> + <location filename="mainwindow.ui" line="899"/> + <location filename="mainwindow.cpp" line="4092"/> <source>Create Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="403"/> + <location filename="mainwindow.ui" line="301"/> + <location filename="mainwindow.ui" line="913"/> + <source>Active:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="423"/> <source>List of available mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="406"/> + <location filename="mainwindow.ui" line="426"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <location filename="mainwindow.ui" line="615"/> - <location filename="mainwindow.ui" line="1002"/> - <location filename="mainwindow.ui" line="1341"/> + <location filename="mainwindow.ui" line="514"/> + <location filename="mainwindow.ui" line="635"/> + <location filename="mainwindow.ui" line="1042"/> + <location filename="mainwindow.ui" line="1381"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="551"/> + <location filename="mainwindow.ui" line="571"/> <source>Clear all Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="591"/> + <location filename="mainwindow.ui" line="611"/> <source>No groups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="601"/> + <location filename="mainwindow.ui" line="621"/> <source>Nexus IDs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> - <location filename="mainwindow.ui" line="615"/> - <location filename="mainwindow.ui" line="1002"/> - <location filename="mainwindow.ui" line="1341"/> - <source>Filter</source> - <oldsource>Namefilter</oldsource> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="650"/> + <location filename="mainwindow.ui" line="670"/> <source>Pick a program to run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="653"/> + <location filename="mainwindow.ui" line="673"/> <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; } @@ -1682,12 +1679,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="701"/> + <location filename="mainwindow.ui" line="721"/> <source>Run program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="704"/> + <location filename="mainwindow.ui" line="724"/> <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; } @@ -1696,17 +1693,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="714"/> + <location filename="mainwindow.ui" line="734"/> <source>Run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="755"/> + <location filename="mainwindow.ui" line="775"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="758"/> + <location filename="mainwindow.ui" line="778"/> <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; } @@ -1715,27 +1712,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="785"/> <source>Shortcut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="815"/> + <location filename="mainwindow.ui" line="835"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="835"/> + <location filename="mainwindow.ui" line="855"/> <source>Sort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="941"/> + <location filename="mainwindow.ui" line="981"/> <source>List of available esp/esm files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="944"/> + <location filename="mainwindow.ui" line="984"/> <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; } @@ -1744,27 +1741,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1015"/> + <location filename="mainwindow.ui" line="1055"/> <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1035"/> + <location filename="mainwindow.ui" line="1075"/> <source><html><head/><body><p>BSAs / BA2s are bundles of game assets (textures, scripts, etc.). By default, the engine loads these bundles in a separate step from loose files. <p>Their load order is specified by the priority of the corresponding plugin (right pane, plugins tab).</p><p>If there is a matching plugin, the game will load them no matter what.</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1038"/> + <location filename="mainwindow.ui" line="1078"/> <source><html><head/><body><p>Currently detected archives. (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">What is an archive?</span></a>)</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1053"/> + <location filename="mainwindow.ui" line="1093"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1056"/> + <location filename="mainwindow.ui" line="1096"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1772,61 +1769,61 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1090"/> + <location filename="mainwindow.ui" line="1130"/> <source>Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1108"/> + <location filename="mainwindow.ui" line="1148"/> <source>refresh data-directory overview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1151"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> - <location filename="mainwindow.ui" line="1237"/> - <location filename="mainwindow.cpp" line="3956"/> - <location filename="mainwindow.cpp" line="4859"/> + <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1277"/> + <location filename="mainwindow.cpp" line="3967"/> + <location filename="mainwindow.cpp" line="4870"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1170"/> <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="1143"/> + <location filename="mainwindow.ui" line="1183"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1188"/> <source>Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1158"/> - <location filename="mainwindow.ui" line="1161"/> + <location filename="mainwindow.ui" line="1198"/> + <location filename="mainwindow.ui" line="1201"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1164"/> + <location filename="mainwindow.ui" line="1204"/> <source>Show only conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1212"/> <source>Saves</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1196"/> + <location filename="mainwindow.ui" line="1236"/> <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; } @@ -1837,160 +1834,160 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> + <location filename="mainwindow.ui" line="1256"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1274"/> <source>Refresh downloads view</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1305"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it. You can also drag an archive into here.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1321"/> + <location filename="mainwindow.ui" line="1361"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1386"/> + <location filename="mainwindow.ui" line="1426"/> <source>Tool Bar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1429"/> + <location filename="mainwindow.ui" line="1469"/> <source>Install Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1432"/> + <location filename="mainwindow.ui" line="1472"/> <source>Install &Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1435"/> + <location filename="mainwindow.ui" line="1475"/> <source>Install a new mod from an archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1438"/> + <location filename="mainwindow.ui" line="1478"/> <source>Ctrl+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1447"/> + <location filename="mainwindow.ui" line="1487"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1450"/> + <location filename="mainwindow.ui" line="1490"/> <source>&Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1453"/> + <location filename="mainwindow.ui" line="1493"/> <source>Configure Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1456"/> + <location filename="mainwindow.ui" line="1496"/> <source>Ctrl+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1465"/> + <location filename="mainwindow.ui" line="1505"/> <source>Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1468"/> + <location filename="mainwindow.ui" line="1508"/> <source>&Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1471"/> + <location filename="mainwindow.ui" line="1511"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1474"/> + <location filename="mainwindow.ui" line="1514"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1483"/> - <location filename="mainwindow.ui" line="1489"/> + <location filename="mainwindow.ui" line="1523"/> + <location filename="mainwindow.ui" line="1529"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1486"/> + <location filename="mainwindow.ui" line="1526"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1492"/> + <location filename="mainwindow.ui" line="1532"/> <source>Ctrl+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1501"/> + <location filename="mainwindow.ui" line="1541"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1504"/> + <location filename="mainwindow.ui" line="1544"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1507"/> + <location filename="mainwindow.ui" line="1547"/> <source>Configure settings and workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1510"/> + <location filename="mainwindow.ui" line="1550"/> <source>Ctrl+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1519"/> + <location filename="mainwindow.ui" line="1559"/> <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1522"/> + <location filename="mainwindow.ui" line="1562"/> <source>Search nexus network for more mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1525"/> + <location filename="mainwindow.ui" line="1565"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1537"/> - <location filename="mainwindow.cpp" line="4799"/> + <location filename="mainwindow.ui" line="1577"/> + <location filename="mainwindow.cpp" line="4810"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1540"/> + <location filename="mainwindow.ui" line="1580"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1552"/> - <location filename="mainwindow.cpp" line="654"/> + <location filename="mainwindow.ui" line="1592"/> + <location filename="mainwindow.cpp" line="659"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1555"/> + <location filename="mainwindow.ui" line="1595"/> <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! @@ -1998,39 +1995,39 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1567"/> - <location filename="mainwindow.ui" line="1570"/> + <location filename="mainwindow.ui" line="1607"/> + <location filename="mainwindow.ui" line="1610"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1573"/> + <location filename="mainwindow.ui" line="1613"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1582"/> + <location filename="mainwindow.ui" line="1622"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1585"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.ui" line="1625"/> + <location filename="mainwindow.cpp" line="4893"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1590"/> + <location filename="mainwindow.ui" line="1630"/> <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1599"/> + <location filename="mainwindow.ui" line="1639"/> <source>Change Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1602"/> + <location filename="mainwindow.ui" line="1642"/> <source>Open the Instance selection dialog to manage a different Game</source> <translation type="unfinished"></translation> </message> @@ -2055,790 +2052,790 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="474"/> + <location filename="mainwindow.cpp" line="479"/> <source>Crash on exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="480"/> <source>MO crashed while exiting. Some settings may not be saved. Error: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="642"/> + <location filename="mainwindow.cpp" line="647"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="643"/> + <location filename="mainwindow.cpp" line="648"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="655"/> + <location filename="mainwindow.cpp" line="660"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="722"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="721"/> + <location filename="mainwindow.cpp" line="726"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="730"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="729"/> + <location filename="mainwindow.cpp" line="734"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="768"/> + <location filename="mainwindow.cpp" line="773"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="774"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="821"/> + <location filename="mainwindow.cpp" line="826"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="822"/> + <location filename="mainwindow.cpp" line="827"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="830"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="874"/> + <location filename="mainwindow.cpp" line="879"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="875"/> + <location filename="mainwindow.cpp" line="880"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="911"/> + <location filename="mainwindow.cpp" line="916"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="912"/> + <location filename="mainwindow.cpp" line="917"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1029"/> + <location filename="mainwindow.cpp" line="1034"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1031"/> + <location filename="mainwindow.cpp" line="1036"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1109"/> + <location filename="mainwindow.cpp" line="1114"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1305"/> + <location filename="mainwindow.cpp" line="1310"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1316"/> + <location filename="mainwindow.cpp" line="1321"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1401"/> + <location filename="mainwindow.cpp" line="1406"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1679"/> + <location filename="mainwindow.cpp" line="1684"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1741"/> + <location filename="mainwindow.cpp" line="1746"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1802"/> + <location filename="mainwindow.cpp" line="1807"/> <source>Notice: Your current MO version (%1) is lower than the previous version (%2).<br>The GUI may not downgrade gracefully, so you may experience oddities.<br>However, there should be no serious issues.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1906"/> + <location filename="mainwindow.cpp" line="1911"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1907"/> + <location filename="mainwindow.cpp" line="1912"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2082"/> + <location filename="mainwindow.cpp" line="2087"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2083"/> + <location filename="mainwindow.cpp" line="2088"/> <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="2237"/> + <location filename="mainwindow.cpp" line="2247"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2277"/> + <location filename="mainwindow.cpp" line="2287"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2301"/> + <location filename="mainwindow.cpp" line="2311"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2325"/> + <location filename="mainwindow.cpp" line="2335"/> <source><Contains %1></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> + <location filename="mainwindow.cpp" line="2370"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2361"/> + <location filename="mainwindow.cpp" line="2371"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2362"/> + <location filename="mainwindow.cpp" line="2372"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2363"/> + <location filename="mainwindow.cpp" line="2373"/> <source><Mod Backup></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2364"/> + <location filename="mainwindow.cpp" line="2374"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2365"/> + <location filename="mainwindow.cpp" line="2375"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2366"/> + <location filename="mainwindow.cpp" line="2376"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2367"/> + <location filename="mainwindow.cpp" line="2377"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2368"/> + <location filename="mainwindow.cpp" line="2378"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2414"/> + <location filename="mainwindow.cpp" line="2424"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2427"/> + <location filename="mainwindow.cpp" line="2437"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2428"/> + <location filename="mainwindow.cpp" line="2438"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2431"/> + <location filename="mainwindow.cpp" line="2441"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2435"/> - <location filename="mainwindow.cpp" line="4631"/> - <location filename="mainwindow.cpp" line="4655"/> + <location filename="mainwindow.cpp" line="2445"/> + <location filename="mainwindow.cpp" line="4642"/> + <location filename="mainwindow.cpp" line="4666"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2501"/> - <location filename="mainwindow.cpp" line="3660"/> - <location filename="mainwindow.cpp" line="3668"/> - <location filename="mainwindow.cpp" line="4206"/> + <location filename="mainwindow.cpp" line="2512"/> + <location filename="mainwindow.cpp" line="3671"/> + <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="4217"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2502"/> + <location filename="mainwindow.cpp" line="2513"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2515"/> + <location filename="mainwindow.cpp" line="2526"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2547"/> - <location filename="mainwindow.cpp" line="2550"/> - <location filename="mainwindow.cpp" line="2560"/> + <location filename="mainwindow.cpp" line="2558"/> + <location filename="mainwindow.cpp" line="2561"/> + <location filename="mainwindow.cpp" line="2571"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2547"/> + <location filename="mainwindow.cpp" line="2558"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2551"/> + <location filename="mainwindow.cpp" line="2562"/> <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="2561"/> + <location filename="mainwindow.cpp" line="2572"/> <source>Failed to create backup.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2578"/> + <location filename="mainwindow.cpp" line="2589"/> <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="2594"/> - <location filename="mainwindow.cpp" line="2621"/> + <location filename="mainwindow.cpp" line="2605"/> + <location filename="mainwindow.cpp" line="2632"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2677"/> + <location filename="mainwindow.cpp" line="2688"/> <source>Failed to display overwrite dialog: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2865"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2875"/> + <location filename="mainwindow.cpp" line="2886"/> <source>Web page for this mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3012"/> - <location filename="mainwindow.cpp" line="3149"/> - <location filename="mainwindow.cpp" line="4018"/> + <location filename="mainwindow.cpp" line="3023"/> + <location filename="mainwindow.cpp" line="3160"/> + <location filename="mainwindow.cpp" line="4029"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3013"/> + <location filename="mainwindow.cpp" line="3024"/> <source>This will create an empty mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3022"/> - <location filename="mainwindow.cpp" line="3159"/> + <location filename="mainwindow.cpp" line="3033"/> + <location filename="mainwindow.cpp" line="3170"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3050"/> + <location filename="mainwindow.cpp" line="3061"/> <source>Create Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3051"/> + <location filename="mainwindow.cpp" line="3062"/> <source>This will create a new separator. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3058"/> + <location filename="mainwindow.cpp" line="3069"/> <source>A separator with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3150"/> + <location filename="mainwindow.cpp" line="3161"/> <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="3191"/> - <location filename="mainwindow.cpp" line="5199"/> + <location filename="mainwindow.cpp" line="3202"/> + <location filename="mainwindow.cpp" line="5210"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3192"/> + <location filename="mainwindow.cpp" line="3203"/> <source>About to recursively delete: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3554"/> + <location filename="mainwindow.cpp" line="3565"/> <source>Not logged in, endorsement information will be wrong</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3562"/> + <location filename="mainwindow.cpp" line="3573"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> + <location filename="mainwindow.cpp" line="3574"/> <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="3583"/> - <location filename="mainwindow.cpp" line="4767"/> + <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="4778"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3584"/> + <location filename="mainwindow.cpp" line="3595"/> <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="3660"/> + <location filename="mainwindow.cpp" line="3671"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3748"/> + <location filename="mainwindow.cpp" line="3759"/> <source>Export to csv</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3751"/> + <location filename="mainwindow.cpp" line="3762"/> <source>CSV (Comma Separated Values) is a format that can be imported in programs like Excel to create a spreadsheet. You can also use online editors and converters instead.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3754"/> + <location filename="mainwindow.cpp" line="3765"/> <source>Select what mods you want export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="3766"/> <source>All installed mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3756"/> + <location filename="mainwindow.cpp" line="3767"/> <source>Only active (checked) mods from your current profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3757"/> + <location filename="mainwindow.cpp" line="3768"/> <source>All currently visible mods in the mod list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="3789"/> <source>Choose what Columns to export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="3792"/> <source>Mod_Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3794"/> <source>Mod_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3785"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Mod_Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3786"/> + <location filename="mainwindow.cpp" line="3797"/> <source>Primary_Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3787"/> + <location filename="mainwindow.cpp" line="3798"/> <source>Nexus_ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3788"/> + <location filename="mainwindow.cpp" line="3799"/> <source>Mod_Nexus_URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3789"/> + <location filename="mainwindow.cpp" line="3800"/> <source>Mod_Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3801"/> <source>Install_Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Download_File_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3893"/> + <location filename="mainwindow.cpp" line="3904"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3912"/> + <location filename="mainwindow.cpp" line="3923"/> <source>Open Game folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3914"/> + <location filename="mainwindow.cpp" line="3925"/> <source>Open MyGames folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3927"/> <source>Open INIs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3920"/> + <location filename="mainwindow.cpp" line="3931"/> <source>Open Instance folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3922"/> + <location filename="mainwindow.cpp" line="3933"/> <source>Open Mods folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3924"/> + <location filename="mainwindow.cpp" line="3935"/> <source>Open Profile folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3926"/> + <location filename="mainwindow.cpp" line="3937"/> <source>Open Downloads folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3930"/> + <location filename="mainwindow.cpp" line="3941"/> <source>Open MO2 Install folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3932"/> + <location filename="mainwindow.cpp" line="3943"/> <source>Open MO2 Plugins folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3934"/> + <location filename="mainwindow.cpp" line="3945"/> <source>Open MO2 Logs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3943"/> + <location filename="mainwindow.cpp" line="3954"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3945"/> + <location filename="mainwindow.cpp" line="3956"/> <source>Create empty mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3947"/> + <location filename="mainwindow.cpp" line="3958"/> <source>Create Separator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3951"/> + <location filename="mainwindow.cpp" line="3962"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3952"/> + <location filename="mainwindow.cpp" line="3963"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3954"/> + <location filename="mainwindow.cpp" line="3965"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3958"/> + <location filename="mainwindow.cpp" line="3969"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3970"/> - <location filename="mainwindow.cpp" line="3986"/> + <location filename="mainwindow.cpp" line="3981"/> + <location filename="mainwindow.cpp" line="3997"/> <source>Send to</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3971"/> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3982"/> + <location filename="mainwindow.cpp" line="3998"/> <source>Top</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3972"/> - <location filename="mainwindow.cpp" line="3988"/> + <location filename="mainwindow.cpp" line="3983"/> + <location filename="mainwindow.cpp" line="3999"/> <source>Bottom</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3973"/> - <location filename="mainwindow.cpp" line="3989"/> + <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="4000"/> <source>Priority...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3974"/> + <location filename="mainwindow.cpp" line="3985"/> <source>Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4010"/> + <location filename="mainwindow.cpp" line="4021"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4017"/> + <location filename="mainwindow.cpp" line="4028"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4019"/> + <location filename="mainwindow.cpp" line="4030"/> <source>Clear Overwrite...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4021"/> - <location filename="mainwindow.cpp" line="4122"/> + <location filename="mainwindow.cpp" line="4032"/> + <location filename="mainwindow.cpp" line="4133"/> <source>Open in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4023"/> + <location filename="mainwindow.cpp" line="4034"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="4035"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4027"/> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4038"/> + <location filename="mainwindow.cpp" line="4057"/> <source>Change Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4031"/> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4042"/> + <location filename="mainwindow.cpp" line="4062"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4035"/> + <location filename="mainwindow.cpp" line="4046"/> <source>Rename Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4036"/> + <location filename="mainwindow.cpp" line="4047"/> <source>Remove Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4039"/> + <location filename="mainwindow.cpp" line="4050"/> <source>Select Color...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4041"/> + <location filename="mainwindow.cpp" line="4052"/> <source>Reset Color</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4063"/> + <location filename="mainwindow.cpp" line="4073"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4065"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4071"/> - <location filename="mainwindow.cpp" line="5310"/> + <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="5321"/> <source>Enable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4072"/> - <location filename="mainwindow.cpp" line="5311"/> + <location filename="mainwindow.cpp" line="4083"/> + <location filename="mainwindow.cpp" line="5322"/> <source>Disable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4078"/> + <location filename="mainwindow.cpp" line="4089"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4079"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4080"/> + <location filename="mainwindow.cpp" line="4091"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4099"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4091"/> - <location filename="mainwindow.cpp" line="4095"/> + <location filename="mainwindow.cpp" line="4102"/> + <location filename="mainwindow.cpp" line="4106"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4092"/> + <location filename="mainwindow.cpp" line="4103"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4098"/> + <location filename="mainwindow.cpp" line="4109"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4109"/> + <location filename="mainwindow.cpp" line="4120"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4113"/> + <location filename="mainwindow.cpp" line="4124"/> <source>Mark as converted/working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4117"/> + <location filename="mainwindow.cpp" line="4128"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4119"/> + <location filename="mainwindow.cpp" line="4130"/> <source>Visit web page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4126"/> + <location filename="mainwindow.cpp" line="4137"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4133"/> - <location filename="mainwindow.cpp" line="5358"/> + <location filename="mainwindow.cpp" line="4144"/> + <location filename="mainwindow.cpp" line="5369"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4135"/> - <location filename="mainwindow.cpp" line="5360"/> + <location filename="mainwindow.cpp" line="4146"/> + <location filename="mainwindow.cpp" line="5371"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4166"/> + <location filename="mainwindow.cpp" line="4177"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4168"/> + <location filename="mainwindow.cpp" line="4179"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4214"/> <source>%1 more</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4207"/> + <location filename="mainwindow.cpp" line="4218"/> <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> @@ -2846,12 +2843,12 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="4252"/> + <location filename="mainwindow.cpp" line="4263"/> <source>Enable Mods...</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4278"/> <source>Delete %n save(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -2859,22 +2856,22 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="4309"/> + <location filename="mainwindow.cpp" line="4320"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4331"/> + <location filename="mainwindow.cpp" line="4342"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4361"/> + <location filename="mainwindow.cpp" line="4372"/> <source>Restarting MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4362"/> + <location filename="mainwindow.cpp" line="4373"/> <source>Changing the managed game directory requires restarting MO. Any pending downloads will be paused. @@ -2882,335 +2879,335 @@ Click OK to restart MO now.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4382"/> + <location filename="mainwindow.cpp" line="4393"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4503"/> + <location filename="mainwindow.cpp" line="4514"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4509"/> + <location filename="mainwindow.cpp" line="4520"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4561"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4561"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4576"/> + <location filename="mainwindow.cpp" line="4587"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4577"/> + <location filename="mainwindow.cpp" line="4588"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4591"/> + <location filename="mainwindow.cpp" line="4602"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4591"/> + <location filename="mainwindow.cpp" line="4602"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4616"/> - <location filename="mainwindow.cpp" line="4641"/> + <location filename="mainwindow.cpp" line="4627"/> + <location filename="mainwindow.cpp" line="4652"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4616"/> + <location filename="mainwindow.cpp" line="4627"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4619"/> - <location filename="mainwindow.cpp" line="4644"/> + <location filename="mainwindow.cpp" line="4630"/> + <location filename="mainwindow.cpp" line="4655"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4619"/> - <location filename="mainwindow.cpp" line="4644"/> + <location filename="mainwindow.cpp" line="4630"/> + <location filename="mainwindow.cpp" line="4655"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4641"/> + <location filename="mainwindow.cpp" line="4652"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4685"/> - <location filename="mainwindow.cpp" line="5971"/> + <location filename="mainwindow.cpp" line="4696"/> + <location filename="mainwindow.cpp" line="5982"/> <source>Set Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4685"/> + <location filename="mainwindow.cpp" line="4696"/> <source>Set the priority of the selected plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4734"/> + <location filename="mainwindow.cpp" line="4745"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4747"/> + <location filename="mainwindow.cpp" line="4758"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4767"/> + <location filename="mainwindow.cpp" line="4778"/> <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="4801"/> + <location filename="mainwindow.cpp" line="4812"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4839"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4840"/> + <location filename="mainwindow.cpp" line="4851"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="4855"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4850"/> + <location filename="mainwindow.cpp" line="4861"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4852"/> + <location filename="mainwindow.cpp" line="4863"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4858"/> + <location filename="mainwindow.cpp" line="4869"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4883"/> + <location filename="mainwindow.cpp" line="4894"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5008"/> + <location filename="mainwindow.cpp" line="5019"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5008"/> + <location filename="mainwindow.cpp" line="5019"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5043"/> + <location filename="mainwindow.cpp" line="5054"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <location filename="mainwindow.cpp" line="5120"/> + <location filename="mainwindow.cpp" line="5069"/> + <location filename="mainwindow.cpp" line="5131"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5070"/> - <location filename="mainwindow.cpp" line="5548"/> + <location filename="mainwindow.cpp" line="5081"/> + <location filename="mainwindow.cpp" line="5559"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5070"/> + <location filename="mainwindow.cpp" line="5081"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5102"/> + <location filename="mainwindow.cpp" line="5113"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5131"/> + <location filename="mainwindow.cpp" line="5142"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5177"/> + <location filename="mainwindow.cpp" line="5188"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5200"/> + <location filename="mainwindow.cpp" line="5211"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5247"/> + <location filename="mainwindow.cpp" line="5258"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5248"/> + <location filename="mainwindow.cpp" line="5259"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5299"/> + <location filename="mainwindow.cpp" line="5310"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5315"/> + <location filename="mainwindow.cpp" line="5326"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5316"/> + <location filename="mainwindow.cpp" line="5327"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5337"/> + <location filename="mainwindow.cpp" line="5348"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5340"/> + <location filename="mainwindow.cpp" line="5351"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5344"/> + <location filename="mainwindow.cpp" line="5355"/> <source>Open Origin in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5351"/> + <location filename="mainwindow.cpp" line="5362"/> <source>Open Origin Info...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5494"/> + <location filename="mainwindow.cpp" line="5505"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5498"/> + <location filename="mainwindow.cpp" line="5509"/> <source>incompatible with "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5524"/> + <location filename="mainwindow.cpp" line="5535"/> <source>Please wait while LOOT is running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5621"/> + <location filename="mainwindow.cpp" line="5632"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5643"/> + <location filename="mainwindow.cpp" line="5654"/> <source>failed to start loot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5646"/> + <location filename="mainwindow.cpp" line="5657"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5650"/> + <location filename="mainwindow.cpp" line="5661"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5697"/> + <location filename="mainwindow.cpp" line="5708"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5707"/> + <location filename="mainwindow.cpp" line="5718"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5720"/> + <location filename="mainwindow.cpp" line="5731"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5720"/> + <location filename="mainwindow.cpp" line="5731"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5741"/> - <location filename="mainwindow.cpp" line="5763"/> + <location filename="mainwindow.cpp" line="5752"/> + <location filename="mainwindow.cpp" line="5774"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5742"/> - <location filename="mainwindow.cpp" line="5764"/> + <location filename="mainwindow.cpp" line="5753"/> + <location filename="mainwindow.cpp" line="5775"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5753"/> + <location filename="mainwindow.cpp" line="5764"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5859"/> + <location filename="mainwindow.cpp" line="5870"/> <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="5861"/> + <location filename="mainwindow.cpp" line="5872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5862"/> + <location filename="mainwindow.cpp" line="5873"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5863"/> + <location filename="mainwindow.cpp" line="5874"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5971"/> + <location filename="mainwindow.cpp" line="5982"/> <source>Set the priority of the selected mods</source> <translation type="unfinished"></translation> </message> @@ -4079,7 +4076,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="modlist.cpp" line="165"/> - <source>Alternate game source</source> + <source>This mod targets a different game</source> <translation type="unfinished"></translation> </message> <message> @@ -4118,123 +4115,123 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1022"/> + <location filename="modlist.cpp" line="1026"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1101"/> + <location filename="modlist.cpp" line="1105"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1102"/> + <location filename="modlist.cpp" line="1106"/> <source>Are you sure you want to remove "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1165"/> + <location filename="modlist.cpp" line="1169"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1166"/> + <location filename="modlist.cpp" line="1170"/> <source>Content</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1167"/> + <location filename="modlist.cpp" line="1171"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1168"/> + <location filename="modlist.cpp" line="1172"/> <source>Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1169"/> + <location filename="modlist.cpp" line="1173"/> <source>Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1170"/> + <location filename="modlist.cpp" line="1174"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1171"/> + <location filename="modlist.cpp" line="1175"/> <source>Source Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1172"/> + <location filename="modlist.cpp" line="1176"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1173"/> + <location filename="modlist.cpp" line="1177"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1174"/> + <location filename="modlist.cpp" line="1178"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1175"/> - <location filename="modlist.cpp" line="1211"/> + <location filename="modlist.cpp" line="1179"/> + <location filename="modlist.cpp" line="1215"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1183"/> + <location filename="modlist.cpp" line="1187"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1184"/> + <location filename="modlist.cpp" line="1188"/> <source>Version of the mod (if available)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1185"/> + <location filename="modlist.cpp" line="1189"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1187"/> + <location filename="modlist.cpp" line="1191"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1188"/> + <location filename="modlist.cpp" line="1192"/> <source>The source game which was the origin of this mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1189"/> + <location filename="modlist.cpp" line="1193"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1190"/> + <location filename="modlist.cpp" line="1194"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1191"/> + <location filename="modlist.cpp" line="1195"/> <source>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/esl)</td></tr><tr><td><img src=":/MO/gui/content/interface" width=32/></td><td>Interface</td></tr><tr><td><img src=":/MO/gui/content/mesh" width=32/></td><td>Meshes</td></tr><tr><td><img src=":/MO/gui/content/bsa" width=32/></td><td>BSA</td></tr><tr><td><img src=":/MO/gui/content/texture" width=32/></td><td>Textures</td></tr><tr><td><img src=":/MO/gui/content/sound" width=32/></td><td>Sounds</td></tr><tr><td><img src=":/MO/gui/content/music" width=32/></td><td>Music</td></tr><tr><td><img src=":/MO/gui/content/string" width=32/></td><td>Strings</td></tr><tr><td><img src=":/MO/gui/content/script" width=32/></td><td>Scripts (Papyrus)</td></tr><tr><td><img src=":/MO/gui/content/skse" width=32/></td><td>Script Extender plugins</td></tr><tr><td><img src=":/MO/gui/content/skyproc" width=32/></td><td>SkyProc Patcher</td></tr><tr><td><img src=":/MO/gui/content/menu" width=32/></td><td>Mod Configuration Menu</td></tr><tr><td><img src=":/MO/gui/content/inifile" width=32/></td><td>INI files</td></tr><tr><td><img src=":/MO/gui/content/modgroup" width=32/></td><td>ModGroup files</td></tr></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1209"/> + <location filename="modlist.cpp" line="1213"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="1210"/> + <location filename="modlist.cpp" line="1214"/> <source>User notes about the mod</source> <translation type="unfinished"></translation> </message> @@ -4242,7 +4239,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModListSortProxy</name> <message> - <location filename="modlistsortproxy.cpp" line="445"/> + <location filename="modlistsortproxy.cpp" line="461"/> <source>Drag&Drop is only supported when sorting by priority</source> <translation type="unfinished"></translation> </message> @@ -4361,182 +4358,182 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="695"/> - <location filename="organizercore.cpp" line="706"/> + <location filename="organizercore.cpp" line="699"/> + <location filename="organizercore.cpp" line="710"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="709"/> + <location filename="organizercore.cpp" line="713"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="975"/> - <location filename="organizercore.cpp" line="1033"/> + <location filename="organizercore.cpp" line="979"/> + <location filename="organizercore.cpp" line="1037"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="983"/> - <location filename="organizercore.cpp" line="1043"/> + <location filename="organizercore.cpp" line="987"/> + <location filename="organizercore.cpp" line="1047"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="984"/> - <location filename="organizercore.cpp" line="1044"/> + <location filename="organizercore.cpp" line="988"/> + <location filename="organizercore.cpp" line="1048"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="996"/> - <location filename="organizercore.cpp" line="1054"/> + <location filename="organizercore.cpp" line="1000"/> + <location filename="organizercore.cpp" line="1058"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="999"/> - <location filename="organizercore.cpp" line="1061"/> + <location filename="organizercore.cpp" line="1003"/> + <location filename="organizercore.cpp" line="1065"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1000"/> - <location filename="organizercore.cpp" line="1062"/> + <location filename="organizercore.cpp" line="1004"/> + <location filename="organizercore.cpp" line="1066"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1266"/> + <location filename="organizercore.cpp" line="1270"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1294"/> + <location filename="organizercore.cpp" line="1298"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1295"/> + <location filename="organizercore.cpp" line="1299"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1324"/> + <location filename="organizercore.cpp" line="1328"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1332"/> + <location filename="organizercore.cpp" line="1336"/> <source>Windows Event Log Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1333"/> + <location filename="organizercore.cpp" line="1337"/> <source>The Windows Event Log service is disabled and/or not running. This prevents USVFS from running properly. Your mods may not be working in the executable that you are launching. Note that you may have to restart MO and/or your PC after the service is fixed. Continue launching %1?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1345"/> + <location filename="organizercore.cpp" line="1349"/> <source>Blacklisted Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1346"/> + <location filename="organizercore.cpp" line="1350"/> <source>The executable you are attempted to launch is blacklisted in the virtual file system. This will likely prevent the executable, and any executables that are launched by this one, from seeing any mods. This could extend to INI files, save games and any other virtualized files. Continue launching %1?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1435"/> + <location filename="organizercore.cpp" line="1439"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1724"/> + <location filename="organizercore.cpp" line="1728"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1817"/> + <location filename="organizercore.cpp" line="1821"/> <source>Multiple esps/esls activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1892"/> + <location filename="organizercore.cpp" line="1896"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1893"/> + <location filename="organizercore.cpp" line="1897"/> <source>A download has been started but no installed page plugin recognizes it. If you download anyway no information (i.e. version) will be associated with the download. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2027"/> + <location filename="organizercore.cpp" line="2031"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2034"/> - <location filename="organizercore.cpp" line="2051"/> + <location filename="organizercore.cpp" line="2038"/> + <location filename="organizercore.cpp" line="2055"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2058"/> + <location filename="organizercore.cpp" line="2062"/> <source>Login failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2059"/> + <location filename="organizercore.cpp" line="2063"/> <source>Login failed, try again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2068"/> + <location filename="organizercore.cpp" line="2072"/> <source>login failed: %1. Download will not be associated with an account</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2076"/> + <location filename="organizercore.cpp" line="2080"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2086"/> + <location filename="organizercore.cpp" line="2090"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2139"/> + <location filename="organizercore.cpp" line="2143"/> <source>MO1 "Script Extender" load mechanism has left hook.dll in your game folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2142"/> - <location filename="organizercore.cpp" line="2158"/> + <location filename="organizercore.cpp" line="2146"/> + <location filename="organizercore.cpp" line="2162"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2151"/> + <location filename="organizercore.cpp" line="2155"/> <source><a href="%1">hook.dll</a> has been found in your game folder (right click to copy the full path). This is most likely a leftover of setting the ModOrganizer 1 load mechanism to "Script Extender", in which case you must remove this file either by changing the load mechanism in ModOrganizer 1 or manually removing the file, otherwise the game is likely to crash and burn.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2185"/> + <location filename="organizercore.cpp" line="2189"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2257"/> + <location filename="organizercore.cpp" line="2261"/> <source>The designated write target "%1" is not enabled.</source> <translation type="unfinished"></translation> </message> @@ -4714,63 +4711,63 @@ Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="955"/> - <location filename="pluginlist.cpp" line="959"/> + <location filename="pluginlist.cpp" line="956"/> + <location filename="pluginlist.cpp" line="960"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="956"/> + <location filename="pluginlist.cpp" line="957"/> <source><br><b><i>This plugin can't be disabled (enforced by the game).</i></b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="961"/> + <location filename="pluginlist.cpp" line="962"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="964"/> + <location filename="pluginlist.cpp" line="965"/> <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="967"/> + <location filename="pluginlist.cpp" line="968"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="974"/> + <location filename="pluginlist.cpp" line="975"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="977"/> + <location filename="pluginlist.cpp" line="978"/> <source>Loads Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="978"/> + <location filename="pluginlist.cpp" line="979"/> <source>There are Archives connected to this plugin. Their assets will be added to your game, overwriting in case of conflicts following the plugin order. Loose files will always overwrite assets from Archives. (This flag only checks for Archives from the same mod as the plugin)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="984"/> <source>Loads INI settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="984"/> + <location filename="pluginlist.cpp" line="985"/> <source>There is an ini file connected to this plugin. Its settings will be added to your game settings, overwriting in case of conflicts.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="988"/> + <location filename="pluginlist.cpp" line="989"/> <source>This ESP is flagged as an ESL. It will adhere to the ESP load order but the records will be loaded in ESL space.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1163"/> + <location filename="pluginlist.cpp" line="1164"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -5170,7 +5167,7 @@ p, li { white-space: pre-wrap; } <location filename="../../uibase/src/report.cpp" line="34"/> <location filename="../../uibase/src/report.cpp" line="37"/> <location filename="main.cpp" line="98"/> - <location filename="organizercore.cpp" line="733"/> + <location filename="organizercore.cpp" line="737"/> <source>Error</source> <translation type="unfinished"></translation> </message> @@ -5490,7 +5487,7 @@ If the folder was still in use, restart MO and try again.</source> </message> <message> <location filename="main.cpp" line="99"/> - <location filename="organizercore.cpp" line="734"/> + <location filename="organizercore.cpp" line="738"/> <source>Failed to create "%1". Your user account probably lacks permission.</source> <translation type="unfinished"></translation> </message> @@ -5547,18 +5544,18 @@ If the folder was still in use, restart MO and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="887"/> + <location filename="mainwindow.cpp" line="892"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1365"/> - <location filename="mainwindow.cpp" line="4460"/> + <location filename="mainwindow.cpp" line="1370"/> + <location filename="mainwindow.cpp" line="4471"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1377"/> + <location filename="mainwindow.cpp" line="1382"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> |
