diff options
| author | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:29:03 +0100 |
|---|---|---|
| committer | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:29:03 +0100 |
| commit | fd6345cd4e49a135dd833e8567cb5bbe6887ebb9 (patch) | |
| tree | 12027bdf3c766e1ec2ec8dbbd4b6763b8f31d106 | |
| parent | f3ee7a0566a92037223c8528340d697a6ef2499e (diff) | |
Add 'download meta information' support to download tab
| -rw-r--r-- | src/downloadlist.cpp | 7 | ||||
| -rw-r--r-- | src/downloadlist.h | 3 | ||||
| -rw-r--r-- | src/downloadlistwidget.cpp | 10 | ||||
| -rw-r--r-- | src/downloadlistwidget.h | 4 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 7 | ||||
| -rw-r--r-- | src/organizer_en.ts | 502 |
6 files changed, 279 insertions, 254 deletions
diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp index fa2cc077..a0286aef 100644 --- a/src/downloadlist.cpp +++ b/src/downloadlist.cpp @@ -33,6 +33,11 @@ DownloadList::DownloadList(DownloadManager *manager, QObject *parent) connect(m_Manager, SIGNAL(aboutToUpdate()), this, SLOT(aboutToUpdate()));
}
+void DownloadList::setMetaDisplay(bool metaDisplay)
+{
+ m_MetaDisplay = metaDisplay;
+}
+
int DownloadList::rowCount(const QModelIndex&) const
{
@@ -86,7 +91,7 @@ QVariant DownloadList::data(const QModelIndex &index, int role) const }
} else {
switch (index.column()) {
- case COL_NAME: return m_Manager->getFileName(index.row());
+ case COL_NAME: return m_MetaDisplay ? m_Manager->getDisplayName(index.row()) : m_Manager->getFileName(index.row());
case COL_SIZE: return sizeFormat(m_Manager->getFileSize(index.row()));
case COL_STATUS:
switch (m_Manager->getState(index.row())) {
diff --git a/src/downloadlist.h b/src/downloadlist.h index 4e0b5ef4..a504f209 100644 --- a/src/downloadlist.h +++ b/src/downloadlist.h @@ -52,6 +52,8 @@ public: **/
explicit DownloadList(DownloadManager *manager, QObject *parent = 0);
+ void setMetaDisplay(bool metaDisplay);
+
/**
* @brief retrieve the number of rows to display. Invoked by Qt
*
@@ -90,6 +92,7 @@ public slots: private:
DownloadManager *m_Manager;
+ bool m_MetaDisplay;
QString sizeFormat(quint64 size) const;
};
diff --git a/src/downloadlistwidget.cpp b/src/downloadlistwidget.cpp index f69f9e9f..6c7447c8 100644 --- a/src/downloadlistwidget.cpp +++ b/src/downloadlistwidget.cpp @@ -84,6 +84,16 @@ void DownloadListWidget::setManager(DownloadManager *manager) m_Manager = manager;
}
+void DownloadListWidget::setSourceModel(DownloadList *sourceModel)
+{
+ m_SourceModel = sourceModel;
+}
+
+void DownloadListWidget::setMetaDisplay(bool metaDisplay)
+{
+ m_SourceModel->setMetaDisplay(metaDisplay);
+}
+
void DownloadListWidget::onDoubleClick(const QModelIndex &index)
{
QModelIndex sourceIndex = qobject_cast<QSortFilterProxyModel*>(model())->mapToSource(index);
diff --git a/src/downloadlistwidget.h b/src/downloadlistwidget.h index 93ece07a..c8d4fe6e 100644 --- a/src/downloadlistwidget.h +++ b/src/downloadlistwidget.h @@ -21,6 +21,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #define DOWNLOADLISTWIDGET_H
#include "downloadmanager.h"
+#include "downloadlist.h"
#include "downloadlistsortproxy.h"
#include <QWidget>
#include <QItemDelegate>
@@ -58,6 +59,8 @@ public: ~DownloadListWidget();
void setManager(DownloadManager *manager);
+ void setSourceModel(DownloadList *sourceModel);
+ void setMetaDisplay(bool metaDisplay);
signals:
void installDownload(int index);
@@ -95,6 +98,7 @@ private slots: private:
DownloadManager *m_Manager;
+ DownloadList *m_SourceModel;
int m_ContextRow;
};
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2fcec086..63606833 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -5150,12 +5150,14 @@ void MainWindow::on_actionEndorseMO_triggered() void MainWindow::initDownloadView()
{
+ DownloadList *sourceModel = new DownloadList(m_OrganizerCore.downloadManager(), ui->downloadView);
DownloadListSortProxy *sortProxy = new DownloadListSortProxy(m_OrganizerCore.downloadManager(), ui->downloadView);
- sortProxy->setSourceModel(new DownloadList(m_OrganizerCore.downloadManager(), ui->downloadView));
+ sortProxy->setSourceModel(sourceModel);
connect(ui->downloadFilterEdit, SIGNAL(textChanged(QString)), sortProxy, SLOT(updateFilter(QString)));
connect(ui->downloadFilterEdit, SIGNAL(textChanged(QString)), this, SLOT(downloadFilterChanged(QString)));
- ui->downloadView->setModel(sortProxy);
+ ui->downloadView->setSourceModel(sourceModel);
+ ui->downloadView->setModel(sortProxy);
ui->downloadView->setManager(m_OrganizerCore.downloadManager());
ui->downloadView->setItemDelegate(new DownloadProgressDelegate(m_OrganizerCore.downloadManager(), sortProxy, ui->downloadView));
ui->downloadView->setUniformRowHeights(true);
@@ -5183,6 +5185,7 @@ void MainWindow::updateDownloadView() ui->downloadView->setProperty("downloadView", "compact");
else
ui->downloadView->setProperty("downloadView", "standard");
+ ui->downloadView->setMetaDisplay(m_OrganizerCore.settings().metaDownloads());
ui->downloadView->style()->unpolish(ui->downloadView);
ui->downloadView->style()->polish(ui->downloadView);
m_OrganizerCore.downloadManager()->refreshList();
diff --git a/src/organizer_en.ts b/src/organizer_en.ts index 6c1488eb..48936ca9 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -292,97 +292,97 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadList</name> <message> - <location filename="downloadlist.cpp" line="65"/> + <location filename="downloadlist.cpp" line="71"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="66"/> + <location filename="downloadlist.cpp" line="72"/> <source>Size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="67"/> + <location filename="downloadlist.cpp" line="73"/> <source>Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="83"/> + <location filename="downloadlist.cpp" line="88"/> <source>< game %1 mod %2 file %3 ></source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="85"/> + <location filename="downloadlist.cpp" line="89"/> <source>Unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="87"/> + <location filename="downloadlist.cpp" line="90"/> <source>Pending</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="100"/> + <location filename="downloadlist.cpp" line="99"/> <source>Started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="104"/> + <location filename="downloadlist.cpp" line="100"/> <source>Canceling</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="106"/> + <location filename="downloadlist.cpp" line="101"/> <source>Pausing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="108"/> + <location filename="downloadlist.cpp" line="102"/> <source>Canceled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="110"/> + <location filename="downloadlist.cpp" line="103"/> <source>Paused</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="112"/> + <location filename="downloadlist.cpp" line="104"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="114"/> + <location filename="downloadlist.cpp" line="105"/> <source>Fetching Info 1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="116"/> + <location filename="downloadlist.cpp" line="106"/> <source>Fetching Info 2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="118"/> + <location filename="downloadlist.cpp" line="107"/> <source>Downloaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="120"/> + <location filename="downloadlist.cpp" line="108"/> <source>Installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="122"/> + <location filename="downloadlist.cpp" line="109"/> <source>Uninstalled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="145"/> - <source>pending download</source> + <location filename="downloadlist.cpp" line="127"/> + <source>Pending download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="149"/> + <location filename="downloadlist.cpp" line="131"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation type="unfinished"></translation> </message> @@ -390,145 +390,145 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidget</name> <message> - <location filename="downloadlistwidget.cpp" line="64"/> + <location filename="downloadlistwidget.cpp" line="109"/> <source>Install</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="66"/> + <location filename="downloadlistwidget.cpp" line="111"/> <source>Query Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="69"/> + <location filename="downloadlistwidget.cpp" line="113"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="72"/> + <location filename="downloadlistwidget.cpp" line="114"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="73"/> - <location filename="downloadlistwidget.cpp" line="88"/> - <location filename="downloadlistwidget.cpp" line="93"/> + <location filename="downloadlistwidget.cpp" line="115"/> + <location filename="downloadlistwidget.cpp" line="127"/> + <location filename="downloadlistwidget.cpp" line="132"/> <source>Show in Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="77"/> - <location filename="downloadlistwidget.cpp" line="91"/> + <location filename="downloadlistwidget.cpp" line="119"/> + <location filename="downloadlistwidget.cpp" line="130"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="79"/> + <location filename="downloadlistwidget.cpp" line="121"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="82"/> + <location filename="downloadlistwidget.cpp" line="123"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="86"/> + <location filename="downloadlistwidget.cpp" line="125"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="87"/> + <location filename="downloadlistwidget.cpp" line="126"/> <source>Pause</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="92"/> + <location filename="downloadlistwidget.cpp" line="131"/> <source>Resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="98"/> + <location filename="downloadlistwidget.cpp" line="137"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="99"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Delete Uninstalled...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="100"/> + <location filename="downloadlistwidget.cpp" line="139"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="104"/> + <location filename="downloadlistwidget.cpp" line="143"/> <source>Hide Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="105"/> + <location filename="downloadlistwidget.cpp" line="144"/> <source>Hide Uninstalled...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="106"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Hide All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="110"/> + <location filename="downloadlistwidget.cpp" line="147"/> <source>Un-Hide All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="128"/> - <location filename="downloadlistwidget.cpp" line="183"/> - <location filename="downloadlistwidget.cpp" line="192"/> - <location filename="downloadlistwidget.cpp" line="201"/> + <location filename="downloadlistwidget.cpp" line="165"/> + <location filename="downloadlistwidget.cpp" line="220"/> + <location filename="downloadlistwidget.cpp" line="229"/> + <location filename="downloadlistwidget.cpp" line="238"/> <source>Delete Files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="129"/> + <location filename="downloadlistwidget.cpp" line="166"/> <source>This will permanently delete the selected download.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="184"/> + <location filename="downloadlistwidget.cpp" line="221"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="193"/> + <location filename="downloadlistwidget.cpp" line="230"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="202"/> + <location filename="downloadlistwidget.cpp" line="239"/> <source>This will remove all uninstalled downloads from this list and from disk.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="210"/> - <location filename="downloadlistwidget.cpp" line="219"/> - <location filename="downloadlistwidget.cpp" line="228"/> + <location filename="downloadlistwidget.cpp" line="247"/> + <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="265"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="211"/> + <location filename="downloadlistwidget.cpp" line="248"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="220"/> + <location filename="downloadlistwidget.cpp" line="257"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="229"/> + <location filename="downloadlistwidget.cpp" line="266"/> <source>This will remove all uninstalled downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> @@ -1608,7 +1608,7 @@ p, li { white-space: pre-wrap; } <location filename="mainwindow.ui" line="1172"/> <location filename="mainwindow.ui" line="1295"/> <location filename="mainwindow.cpp" line="4211"/> - <location filename="mainwindow.cpp" line="5115"/> + <location filename="mainwindow.cpp" line="5118"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -1792,7 +1792,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1595"/> - <location filename="mainwindow.cpp" line="5046"/> + <location filename="mainwindow.cpp" line="5049"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1803,7 +1803,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1610"/> - <location filename="mainwindow.cpp" line="658"/> + <location filename="mainwindow.cpp" line="657"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1833,7 +1833,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1643"/> - <location filename="mainwindow.cpp" line="5138"/> + <location filename="mainwindow.cpp" line="5141"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1853,288 +1853,288 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="333"/> + <location filename="mainwindow.cpp" line="334"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="334"/> + <location filename="mainwindow.cpp" line="335"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="335"/> + <location filename="mainwindow.cpp" line="336"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="360"/> + <location filename="mainwindow.cpp" line="359"/> <source>There is no supported sort mechanism for this game. You will probably have to use a third-party tool.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.cpp" line="477"/> <source>Crash on exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="478"/> <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="646"/> + <location filename="mainwindow.cpp" line="645"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="647"/> + <location filename="mainwindow.cpp" line="646"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="659"/> + <location filename="mainwindow.cpp" line="658"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="721"/> + <location filename="mainwindow.cpp" line="720"/> <location filename="mainwindow.cpp" line="4346"/> <location filename="mainwindow.cpp" line="4350"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="725"/> + <location filename="mainwindow.cpp" line="724"/> <source>Won't Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="739"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="744"/> + <location filename="mainwindow.cpp" line="743"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="748"/> + <location filename="mainwindow.cpp" line="747"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="752"/> + <location filename="mainwindow.cpp" line="751"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="791"/> + <location filename="mainwindow.cpp" line="790"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="792"/> + <location filename="mainwindow.cpp" line="791"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="851"/> + <location filename="mainwindow.cpp" line="850"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="852"/> + <location filename="mainwindow.cpp" line="851"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="860"/> + <location filename="mainwindow.cpp" line="859"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="904"/> + <location filename="mainwindow.cpp" line="903"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="905"/> + <location filename="mainwindow.cpp" line="904"/> <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="941"/> + <location filename="mainwindow.cpp" line="940"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="942"/> + <location filename="mainwindow.cpp" line="941"/> <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="1059"/> + <location filename="mainwindow.cpp" line="1058"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1061"/> + <location filename="mainwindow.cpp" line="1060"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1139"/> + <location filename="mainwindow.cpp" line="1138"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1337"/> + <location filename="mainwindow.cpp" line="1336"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1348"/> + <location filename="mainwindow.cpp" line="1347"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1433"/> + <location filename="mainwindow.cpp" line="1432"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1711"/> + <location filename="mainwindow.cpp" line="1710"/> <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="1773"/> + <location filename="mainwindow.cpp" line="1772"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1834"/> + <location filename="mainwindow.cpp" line="1833"/> <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="1938"/> + <location filename="mainwindow.cpp" line="1937"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1939"/> + <location filename="mainwindow.cpp" line="1938"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2114"/> + <location filename="mainwindow.cpp" line="2113"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2115"/> + <location filename="mainwindow.cpp" line="2114"/> <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="2274"/> + <location filename="mainwindow.cpp" line="2273"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2314"/> + <location filename="mainwindow.cpp" line="2313"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2338"/> + <location filename="mainwindow.cpp" line="2337"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2362"/> + <location filename="mainwindow.cpp" line="2361"/> <source><Contains %1></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2397"/> + <location filename="mainwindow.cpp" line="2396"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2398"/> + <location filename="mainwindow.cpp" line="2397"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2399"/> + <location filename="mainwindow.cpp" line="2398"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2400"/> + <location filename="mainwindow.cpp" line="2399"/> <source><Mod Backup></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2401"/> + <location filename="mainwindow.cpp" line="2400"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2402"/> + <location filename="mainwindow.cpp" line="2401"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2403"/> + <location filename="mainwindow.cpp" line="2402"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2404"/> + <location filename="mainwindow.cpp" line="2403"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2405"/> + <location filename="mainwindow.cpp" line="2404"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2451"/> + <location filename="mainwindow.cpp" line="2450"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2464"/> + <location filename="mainwindow.cpp" line="2463"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2465"/> + <location filename="mainwindow.cpp" line="2464"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2468"/> + <location filename="mainwindow.cpp" line="2467"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2472"/> - <location filename="mainwindow.cpp" line="4878"/> - <location filename="mainwindow.cpp" line="4902"/> + <location filename="mainwindow.cpp" line="2471"/> + <location filename="mainwindow.cpp" line="4881"/> + <location filename="mainwindow.cpp" line="4905"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2539"/> + <location filename="mainwindow.cpp" line="2538"/> <location filename="mainwindow.cpp" line="3915"/> <location filename="mainwindow.cpp" line="3923"/> <location filename="mainwindow.cpp" line="4459"/> @@ -2142,129 +2142,129 @@ Error: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2540"/> + <location filename="mainwindow.cpp" line="2539"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2553"/> + <location filename="mainwindow.cpp" line="2552"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2585"/> - <location filename="mainwindow.cpp" line="2588"/> - <location filename="mainwindow.cpp" line="2598"/> + <location filename="mainwindow.cpp" line="2584"/> + <location filename="mainwindow.cpp" line="2587"/> + <location filename="mainwindow.cpp" line="2597"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2585"/> + <location filename="mainwindow.cpp" line="2584"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2588"/> <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="2599"/> + <location filename="mainwindow.cpp" line="2598"/> <source>Failed to create backup.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2616"/> + <location filename="mainwindow.cpp" line="2615"/> <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="2632"/> - <location filename="mainwindow.cpp" line="2658"/> - <location filename="mainwindow.cpp" line="2692"/> - <location filename="mainwindow.cpp" line="2718"/> + <location filename="mainwindow.cpp" line="2631"/> + <location filename="mainwindow.cpp" line="2657"/> + <location filename="mainwindow.cpp" line="2691"/> + <location filename="mainwindow.cpp" line="2717"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> - <location filename="mainwindow.cpp" line="2651"/> + <location filename="mainwindow.cpp" line="2642"/> + <location filename="mainwindow.cpp" line="2650"/> <source>Endorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2702"/> + <location filename="mainwindow.cpp" line="2710"/> <source>Unendorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2779"/> + <location filename="mainwindow.cpp" line="2778"/> <source>Failed to display overwrite dialog: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2965"/> <source>Opening Nexus Links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2967"/> + <location filename="mainwindow.cpp" line="2966"/> <source>You are trying to open %1 links to Nexus Mods. Are you sure you want to do this?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2987"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="2997"/> <source>Web page for this mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3180"/> + <location filename="mainwindow.cpp" line="3179"/> <source><table cellspacing="5"><tr><th>Type</th><th>All</th><th>Visible</th><tr><td>Enabled mods:&emsp;</td><td align=right>%1 / %2</td><td align=right>%3 / %4</td></tr><tr><td>Unmanaged/DLCs:&emsp;</td><td align=right>%5</td><td align=right>%6</td></tr><tr><td>Mod backups:&emsp;</td><td align=right>%7</td><td align=right>%8</td></tr><tr><td>Separators:&emsp;</td><td align=right>%9</td><td align=right>%10</td></tr></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3235"/> + <location filename="mainwindow.cpp" line="3234"/> <source><table cellspacing="4"><tr><th>Type</th><th>Active</th><th>Total</th></tr><tr><td>Active plugins:</td><td align=right>%1</td><td align=right>%2</td></tr><tr><td>Active ESMs:</td><td align=right>%3</td><td align=right>%4</td></tr><tr><td>Active ESPs:</td><td align=right>%7</td><td align=right>%8</td></tr><tr><td>Active ESMs+ESPs:</td><td align=right>%9</td><td align=right>%10</td></tr><tr><td>Active ESLs:</td><td align=right>%5</td><td align=right>%6</td></tr></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3267"/> + <location filename="mainwindow.cpp" line="3266"/> <location filename="mainwindow.cpp" line="3404"/> <location filename="mainwindow.cpp" line="4273"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3268"/> + <location filename="mainwindow.cpp" line="3267"/> <source>This will create an empty mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3277"/> + <location filename="mainwindow.cpp" line="3276"/> <location filename="mainwindow.cpp" line="3414"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3305"/> + <location filename="mainwindow.cpp" line="3304"/> <source>Create Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3305"/> <source>This will create a new separator. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3313"/> + <location filename="mainwindow.cpp" line="3312"/> <source>A separator with this name already exists</source> <translation type="unfinished"></translation> </message> @@ -2276,7 +2276,7 @@ Please enter a name:</source> </message> <message> <location filename="mainwindow.cpp" line="3446"/> - <location filename="mainwindow.cpp" line="5445"/> + <location filename="mainwindow.cpp" line="5463"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> @@ -2304,7 +2304,7 @@ This function will guess the versioning scheme under the assumption that the ins </message> <message> <location filename="mainwindow.cpp" line="3838"/> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5017"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> @@ -2603,13 +2603,13 @@ You can also use online editors and converters instead.</source> </message> <message> <location filename="mainwindow.cpp" line="4326"/> - <location filename="mainwindow.cpp" line="5556"/> + <location filename="mainwindow.cpp" line="5574"/> <source>Enable selected</source> <translation type="unfinished"></translation> </message> <message> <location filename="mainwindow.cpp" line="4327"/> - <location filename="mainwindow.cpp" line="5557"/> + <location filename="mainwindow.cpp" line="5575"/> <source>Disable selected</source> <translation type="unfinished"></translation> </message> @@ -2670,13 +2670,13 @@ You can also use online editors and converters instead.</source> </message> <message> <location filename="mainwindow.cpp" line="4388"/> - <location filename="mainwindow.cpp" line="5604"/> + <location filename="mainwindow.cpp" line="5622"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> <location filename="mainwindow.cpp" line="4390"/> - <location filename="mainwindow.cpp" line="5606"/> + <location filename="mainwindow.cpp" line="5624"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> @@ -2745,330 +2745,330 @@ Click OK to restart MO now.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4750"/> + <location filename="mainwindow.cpp" line="4753"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4756"/> + <location filename="mainwindow.cpp" line="4759"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4797"/> + <location filename="mainwindow.cpp" line="4800"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4797"/> + <location filename="mainwindow.cpp" line="4800"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4823"/> + <location filename="mainwindow.cpp" line="4826"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4824"/> + <location filename="mainwindow.cpp" line="4827"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4838"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4838"/> + <location filename="mainwindow.cpp" line="4841"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4863"/> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4866"/> + <location filename="mainwindow.cpp" line="4891"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4863"/> + <location filename="mainwindow.cpp" line="4866"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4866"/> - <location filename="mainwindow.cpp" line="4891"/> + <location filename="mainwindow.cpp" line="4869"/> + <location filename="mainwindow.cpp" line="4894"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4866"/> - <location filename="mainwindow.cpp" line="4891"/> + <location filename="mainwindow.cpp" line="4869"/> + <location filename="mainwindow.cpp" line="4894"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4888"/> + <location filename="mainwindow.cpp" line="4891"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4932"/> - <location filename="mainwindow.cpp" line="6218"/> + <location filename="mainwindow.cpp" line="4935"/> + <location filename="mainwindow.cpp" line="6236"/> <source>Set Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4932"/> + <location filename="mainwindow.cpp" line="4935"/> <source>Set the priority of the selected plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4981"/> + <location filename="mainwindow.cpp" line="4984"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4994"/> + <location filename="mainwindow.cpp" line="4997"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5014"/> + <location filename="mainwindow.cpp" line="5017"/> <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="5048"/> + <location filename="mainwindow.cpp" line="5051"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5095"/> + <location filename="mainwindow.cpp" line="5098"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5096"/> + <location filename="mainwindow.cpp" line="5099"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5100"/> + <location filename="mainwindow.cpp" line="5103"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="5109"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5108"/> + <location filename="mainwindow.cpp" line="5111"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5114"/> + <location filename="mainwindow.cpp" line="5117"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5139"/> + <location filename="mainwindow.cpp" line="5142"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5254"/> + <location filename="mainwindow.cpp" line="5272"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5254"/> + <location filename="mainwindow.cpp" line="5272"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5289"/> + <location filename="mainwindow.cpp" line="5307"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5304"/> - <location filename="mainwindow.cpp" line="5366"/> + <location filename="mainwindow.cpp" line="5322"/> + <location filename="mainwindow.cpp" line="5384"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5316"/> - <location filename="mainwindow.cpp" line="5794"/> + <location filename="mainwindow.cpp" line="5334"/> + <location filename="mainwindow.cpp" line="5812"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5316"/> + <location filename="mainwindow.cpp" line="5334"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5348"/> + <location filename="mainwindow.cpp" line="5366"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5377"/> + <location filename="mainwindow.cpp" line="5395"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5423"/> + <location filename="mainwindow.cpp" line="5441"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5446"/> + <location filename="mainwindow.cpp" line="5464"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5493"/> + <location filename="mainwindow.cpp" line="5511"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5494"/> + <location filename="mainwindow.cpp" line="5512"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5545"/> + <location filename="mainwindow.cpp" line="5563"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5561"/> + <location filename="mainwindow.cpp" line="5579"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5562"/> + <location filename="mainwindow.cpp" line="5580"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5583"/> + <location filename="mainwindow.cpp" line="5601"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5586"/> + <location filename="mainwindow.cpp" line="5604"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5590"/> + <location filename="mainwindow.cpp" line="5608"/> <source>Open Origin in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5597"/> + <location filename="mainwindow.cpp" line="5615"/> <source>Open Origin Info...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5740"/> + <location filename="mainwindow.cpp" line="5758"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5744"/> + <location filename="mainwindow.cpp" line="5762"/> <source>incompatible with "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5770"/> + <location filename="mainwindow.cpp" line="5788"/> <source>Please wait while LOOT is running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5867"/> + <location filename="mainwindow.cpp" line="5885"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5889"/> + <location filename="mainwindow.cpp" line="5907"/> <source>failed to start loot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5892"/> + <location filename="mainwindow.cpp" line="5910"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5896"/> + <location filename="mainwindow.cpp" line="5914"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5943"/> + <location filename="mainwindow.cpp" line="5961"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5953"/> + <location filename="mainwindow.cpp" line="5971"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5966"/> + <location filename="mainwindow.cpp" line="5984"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5966"/> + <location filename="mainwindow.cpp" line="5984"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5987"/> - <location filename="mainwindow.cpp" line="6009"/> + <location filename="mainwindow.cpp" line="6005"/> + <location filename="mainwindow.cpp" line="6027"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5988"/> - <location filename="mainwindow.cpp" line="6010"/> + <location filename="mainwindow.cpp" line="6006"/> + <location filename="mainwindow.cpp" line="6028"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5999"/> + <location filename="mainwindow.cpp" line="6017"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6105"/> + <location filename="mainwindow.cpp" line="6123"/> <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="6107"/> + <location filename="mainwindow.cpp" line="6125"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6108"/> + <location filename="mainwindow.cpp" line="6126"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6109"/> + <location filename="mainwindow.cpp" line="6127"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6218"/> + <location filename="mainwindow.cpp" line="6236"/> <source>Set the priority of the selected mods</source> <translation type="unfinished"></translation> </message> @@ -5410,7 +5410,7 @@ If the folder was still in use, restart MO and try again.</source> </message> <message> <location filename="main.cpp" line="682"/> - <location filename="settings.cpp" line="1103"/> + <location filename="settings.cpp" line="1098"/> <source>Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -5425,18 +5425,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="917"/> + <location filename="mainwindow.cpp" line="916"/> <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="1397"/> - <location filename="mainwindow.cpp" line="4709"/> + <location filename="mainwindow.cpp" line="1396"/> + <location filename="mainwindow.cpp" line="4711"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1409"/> + <location filename="mainwindow.cpp" line="1408"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> @@ -5487,12 +5487,12 @@ If the folder was still in use, restart MO and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="1110"/> + <location filename="settings.cpp" line="1105"/> <source>Script Extender</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="1117"/> + <location filename="settings.cpp" line="1112"/> <source>Proxy DLL</source> <translation type="unfinished"></translation> </message> @@ -5708,28 +5708,28 @@ Select Show Details option to see the full change-log.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="500"/> - <location filename="settings.cpp" line="519"/> + <location filename="settings.cpp" line="503"/> + <location filename="settings.cpp" line="522"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="882"/> + <location filename="settings.cpp" line="877"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="883"/> + <location filename="settings.cpp" line="878"/> <source>Failed to create "%1", you may not have the necessary permission. path remains unchanged.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="1154"/> + <location filename="settings.cpp" line="1149"/> <source>Restart Mod Organizer?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="1155"/> + <location filename="settings.cpp" line="1150"/> <source>In order to reset the window geometries, MO must be restarted. Restart it now?</source> <translation type="unfinished"></translation> @@ -6410,22 +6410,22 @@ programs you are intentionally running.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="83"/> + <location filename="settingsdialog.cpp" line="99"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="84"/> + <location filename="settingsdialog.cpp" line="100"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="128"/> + <location filename="settingsdialog.cpp" line="144"/> <source>Executables Blacklist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="129"/> + <location filename="settingsdialog.cpp" line="145"/> <source>Enter one executable per line to be blacklisted from the virtual file system. Mods and other virtualized files will not be visible to these executables and any executables launched by them. @@ -6436,47 +6436,47 @@ Example: <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="162"/> + <location filename="settingsdialog.cpp" line="178"/> <source>Select base directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="173"/> + <location filename="settingsdialog.cpp" line="189"/> <source>Select download directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="184"/> + <location filename="settingsdialog.cpp" line="200"/> <source>Select mod directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="195"/> + <location filename="settingsdialog.cpp" line="211"/> <source>Select cache directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="206"/> + <location filename="settingsdialog.cpp" line="222"/> <source>Select profiles directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="217"/> + <location filename="settingsdialog.cpp" line="233"/> <source>Select overwrite directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="227"/> + <location filename="settingsdialog.cpp" line="243"/> <source>Select game executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="332"/> + <location filename="settingsdialog.cpp" line="300"/> <source>Confirm?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="333"/> + <location filename="settingsdialog.cpp" line="301"/> <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> <translation type="unfinished"></translation> </message> |
