diff options
| author | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-30 12:07:40 +0100 |
|---|---|---|
| committer | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-30 12:26:34 +0100 |
| commit | 5920dc2cd14ef5dc6e3802939cbe6256ea13848b (patch) | |
| tree | 74eceba1e3a56c19e89f417b69020ae6426df6e2 /src | |
| parent | 7f0844bdd498ab3176fc79f24d9217d1c03d7e4c (diff) | |
Disable downloadlist widget delegates, port partial functionality to QTreeView
Diffstat (limited to 'src')
| -rw-r--r-- | src/downloadlist.cpp | 45 | ||||
| -rw-r--r-- | src/downloadlist.h | 2 | ||||
| -rw-r--r-- | src/downloadlistsortproxy.cpp | 14 | ||||
| -rw-r--r-- | src/downloadlistwidget.cpp | 10 | ||||
| -rw-r--r-- | src/downloadlistwidget.h | 16 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 6 | ||||
| -rw-r--r-- | src/mainwindow.ui | 2 | ||||
| -rw-r--r-- | src/organizer_en.ts | 657 |
8 files changed, 398 insertions, 354 deletions
diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp index f470e57b..503274e6 100644 --- a/src/downloadlist.cpp +++ b/src/downloadlist.cpp @@ -40,7 +40,7 @@ int DownloadList::rowCount(const QModelIndex&) const int DownloadList::columnCount(const QModelIndex&) const
{
- return 4;
+ return 3;
}
@@ -61,21 +61,34 @@ QVariant DownloadList::headerData(int section, Qt::Orientation orientation, int if ((role == Qt::DisplayRole) &&
(orientation == Qt::Horizontal)) {
switch (section) {
- case COL_NAME: return tr("Name");
- case COL_FILETIME: return tr("Filetime");
- case COL_SIZE: return tr("Size");
- default: return tr("Done");
+ case COL_NAME : return tr("Name");
+ case COL_SIZE : return tr("Size");
+ case COL_STATUS : return tr("Status");
+ default : return "-";
}
} else {
return QAbstractItemModel::headerData(section, orientation, role);
}
}
-
QVariant DownloadList::data(const QModelIndex &index, int role) const
{
if (role == Qt::DisplayRole) {
- return index.row();
+ if (index.column() == COL_NAME) {
+ return m_Manager->getFileName(index.row());
+ } else if (index.column() == COL_SIZE) {
+ return sizeFormat(m_Manager->getFileSize(index.row()));
+ } else if (index.column() == COL_STATUS) {
+ DownloadManager::DownloadState state = m_Manager->getState(index.row());
+ switch (state) {
+ case DownloadManager::STATE_INSTALLED : return tr("Installed");
+ case DownloadManager::STATE_READY : return tr("Downloaded");
+ case DownloadManager::STATE_DOWNLOADING : return m_Manager->getProgress(index.row()).second;
+ default : return state;
+ }
+ } else {
+ return index.row();
+ }
} else if (role == Qt::ToolTipRole) {
if (index.row() < m_Manager->numTotalDownloads()) {
QString text = m_Manager->getFileName(index.row()) + "\n";
@@ -112,3 +125,21 @@ void DownloadList::update(int row) }
}
+QString DownloadList::sizeFormat(quint64 size) const
+{
+ qreal calc = size;
+ QStringList list;
+ list << "MB" << "GB" << "TB";
+
+ QStringListIterator i(list);
+ QString unit("KB");
+
+ calc /= 1024.0;
+ while (calc >= 1024.0 && i.hasNext())
+ {
+ unit = i.next();
+ calc /= 1024.0;
+ }
+
+ return QString().setNum(calc, 'f', 2) + " " + unit;
+}
diff --git a/src/downloadlist.h b/src/downloadlist.h index e8833f0f..1a5ca0b2 100644 --- a/src/downloadlist.h +++ b/src/downloadlist.h @@ -38,7 +38,6 @@ public: enum EColumn {
COL_NAME = 0,
- COL_FILETIME,
COL_STATUS,
COL_SIZE
};
@@ -92,6 +91,7 @@ private: DownloadManager *m_Manager;
+ QString sizeFormat(quint64 size) const;
};
#endif // DOWNLOADLIST_H
diff --git a/src/downloadlistsortproxy.cpp b/src/downloadlistsortproxy.cpp index f791617a..ee16860a 100644 --- a/src/downloadlistsortproxy.cpp +++ b/src/downloadlistsortproxy.cpp @@ -42,13 +42,11 @@ bool DownloadListSortProxy::lessThan(const QModelIndex &left, if ((leftIndex < m_Manager->numTotalDownloads())
&& (rightIndex < m_Manager->numTotalDownloads())) {
if (left.column() == DownloadList::COL_NAME) {
- return m_Manager->getFileName(leftIndex).compare(m_Manager->getFileName(rightIndex), Qt::CaseInsensitive) < 0;
- } else if (left.column() == DownloadList::COL_FILETIME) {
- return m_Manager->getFileTime(leftIndex) < m_Manager->getFileTime(rightIndex);
+ return m_Manager->getFileName(left.row()).compare(m_Manager->getFileName(right.row()), Qt::CaseInsensitive) < 0;
} else if (left.column() == DownloadList::COL_STATUS) {
- return m_Manager->getState(leftIndex) < m_Manager->getState(rightIndex);
+ return m_Manager->getState(left.row()) < m_Manager->getState(right.row());
} else if(left.column() == DownloadList::COL_SIZE){
- return m_Manager->getFileSize(leftIndex) < m_Manager->getFileSize(rightIndex);
+ return m_Manager->getFileSize(left.row()) < m_Manager->getFileSize(right.row());
} else {
return leftIndex < rightIndex;
}
@@ -63,11 +61,9 @@ bool DownloadListSortProxy::filterAcceptsRow(int sourceRow, const QModelIndex&) if (m_CurrentFilter.length() == 0) {
return true;
} else if (sourceRow < m_Manager->numTotalDownloads()) {
- int downloadIndex = sourceModel()->index(sourceRow, 0).data().toInt();
-
QString displayedName = Settings::instance().metaDownloads()
- ? m_Manager->getDisplayName(downloadIndex)
- : m_Manager->getFileName(downloadIndex);
+ ? m_Manager->getDisplayName(sourceRow)
+ : m_Manager->getFileName(sourceRow);
return displayedName.contains(m_CurrentFilter, Qt::CaseInsensitive);
} else {
return false;
diff --git a/src/downloadlistwidget.cpp b/src/downloadlistwidget.cpp index c62d774c..b3d9b083 100644 --- a/src/downloadlistwidget.cpp +++ b/src/downloadlistwidget.cpp @@ -27,15 +27,19 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. DownloadListWidget::DownloadListWidget(QWidget *parent)
- : QWidget(parent), ui(new Ui::DownloadListWidget)
+ : QTreeView(parent)
{
- ui->setupUi(this);
+ connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(onDoubleClick(QModelIndex)));
}
DownloadListWidget::~DownloadListWidget()
{
- delete ui;
+}
+
+void DownloadListWidget::onDoubleClick(const QModelIndex &index)
+{
+ emit(resumeDownload(dynamic_cast<QSortFilterProxyModel*>(model())->mapToSource(index).row()));
}
diff --git a/src/downloadlistwidget.h b/src/downloadlistwidget.h index fe7f3b22..7a7a25f7 100644 --- a/src/downloadlistwidget.h +++ b/src/downloadlistwidget.h @@ -28,20 +28,22 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QTreeView>
namespace Ui {
- class DownloadListWidget;
+ class DownloadListWidget;
}
-class DownloadListWidget : public QWidget
+class DownloadListWidget : public QTreeView
{
- Q_OBJECT
+ Q_OBJECT
public:
- explicit DownloadListWidget(QWidget *parent = 0);
- ~DownloadListWidget();
+ explicit DownloadListWidget(QWidget *parent = 0);
+ ~DownloadListWidget();
+signals:
+ void resumeDownload(int index);
-private:
- Ui::DownloadListWidget *ui;
+private slots:
+ void onDoubleClick(const QModelIndex &index);
};
class DownloadManager;
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 27ffc71e..5ca60ef1 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -5152,6 +5152,7 @@ void MainWindow::on_actionEndorseMO_triggered() void MainWindow::updateDownloadListDelegate()
{
+ /*
if (m_OrganizerCore.settings().compactDownloads()) {
ui->downloadView->setItemDelegate(
new DownloadListWidgetCompactDelegate(m_OrganizerCore.downloadManager(),
@@ -5165,6 +5166,7 @@ void MainWindow::updateDownloadListDelegate() ui->downloadView,
ui->downloadView));
}
+ */
DownloadListSortProxy *sortProxy = new DownloadListSortProxy(m_OrganizerCore.downloadManager(), ui->downloadView);
sortProxy->setSourceModel(new DownloadList(m_OrganizerCore.downloadManager(), ui->downloadView));
@@ -5175,6 +5177,9 @@ void MainWindow::updateDownloadListDelegate() //ui->downloadView->sortByColumn(1, Qt::DescendingOrder);
ui->downloadView->header()->resizeSections(QHeaderView::Stretch);
+ connect(ui->downloadView, SIGNAL(resumeDownload(int)), m_OrganizerCore.downloadManager(), SLOT(resumeDownload(int)));
+
+ /*
connect(ui->downloadView->itemDelegate(), SIGNAL(installDownload(int)), &m_OrganizerCore, SLOT(installDownload(int)));
connect(ui->downloadView->itemDelegate(), SIGNAL(queryInfo(int)), m_OrganizerCore.downloadManager(), SLOT(queryInfo(int)));
connect(ui->downloadView->itemDelegate(), SIGNAL(visitOnNexus(int)), m_OrganizerCore.downloadManager(), SLOT(visitOnNexus(int)));
@@ -5185,6 +5190,7 @@ void MainWindow::updateDownloadListDelegate() connect(ui->downloadView->itemDelegate(), SIGNAL(cancelDownload(int)), m_OrganizerCore.downloadManager(), SLOT(cancelDownload(int)));
connect(ui->downloadView->itemDelegate(), SIGNAL(pauseDownload(int)), m_OrganizerCore.downloadManager(), SLOT(pauseDownload(int)));
connect(ui->downloadView->itemDelegate(), SIGNAL(resumeDownload(int)), this, SLOT(resumeDownload(int)));
+ */
}
diff --git a/src/mainwindow.ui b/src/mainwindow.ui index b1ed8e5a..5dfd075b 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -1303,7 +1303,7 @@ p, li { white-space: pre-wrap; } <item>
<layout class="QVBoxLayout" name="downloadLayout">
<item>
- <widget class="QTreeView" name="downloadView">
+ <widget class="DownloadListWidget" name="downloadView">
<property name="minimumSize">
<size>
<width>320</width>
diff --git a/src/organizer_en.ts b/src/organizer_en.ts index 46bb42cf..9b61eafc 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -298,26 +298,31 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlist.cpp" line="65"/> - <source>Filetime</source> + <source>Size</source> <translation type="unfinished"></translation> </message> <message> <location filename="downloadlist.cpp" line="66"/> - <source>Size</source> + <source>Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="67"/> - <source>Done</source> + <location filename="downloadlist.cpp" line="84"/> + <source>Installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="83"/> + <location filename="downloadlist.cpp" line="85"/> + <source>Downloaded</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlist.cpp" line="96"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="90"/> + <location filename="downloadlist.cpp" line="103"/> <source>pending download</source> <translation type="unfinished"></translation> </message> @@ -332,26 +337,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="102"/> - <location filename="downloadlistwidget.cpp" line="169"/> - <location filename="downloadlistwidget.cpp" line="171"/> + <location filename="downloadlistwidget.cpp" line="173"/> + <location filename="downloadlistwidget.cpp" line="175"/> <source>Done - Double Click to install</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="135"/> - <location filename="downloadlistwidget.cpp" line="137"/> + <location filename="downloadlistwidget.cpp" line="139"/> + <location filename="downloadlistwidget.cpp" line="141"/> <source>Paused - Double Click to resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="155"/> - <location filename="downloadlistwidget.cpp" line="157"/> + <location filename="downloadlistwidget.cpp" line="159"/> + <location filename="downloadlistwidget.cpp" line="161"/> <source>Installed - Double Click to re-install</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="162"/> - <location filename="downloadlistwidget.cpp" line="164"/> + <location filename="downloadlistwidget.cpp" line="166"/> + <location filename="downloadlistwidget.cpp" line="168"/> <source>Uninstalled - Double Click to re-install</source> <translation type="unfinished"></translation> </message> @@ -559,165 +564,165 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="112"/> + <location filename="downloadlistwidget.cpp" line="116"/> <source>< game %1 mod %2 file %3 ></source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="115"/> + <location filename="downloadlistwidget.cpp" line="119"/> <source>Pending</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="142"/> + <location filename="downloadlistwidget.cpp" line="146"/> <source>Fetching Info 1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="145"/> + <location filename="downloadlistwidget.cpp" line="149"/> <source>Fetching Info 2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="248"/> - <location filename="downloadlistwidget.cpp" line="302"/> - <location filename="downloadlistwidget.cpp" line="311"/> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="252"/> + <location filename="downloadlistwidget.cpp" line="306"/> + <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="324"/> <source>Delete Files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="249"/> + <location filename="downloadlistwidget.cpp" line="253"/> <source>This will permanently delete the selected download.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="303"/> + <location filename="downloadlistwidget.cpp" line="307"/> <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="312"/> + <location filename="downloadlistwidget.cpp" line="316"/> <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="321"/> + <location filename="downloadlistwidget.cpp" line="325"/> <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="329"/> - <location filename="downloadlistwidget.cpp" line="338"/> - <location filename="downloadlistwidget.cpp" line="347"/> + <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="342"/> + <location filename="downloadlistwidget.cpp" line="351"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="334"/> <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="339"/> + <location filename="downloadlistwidget.cpp" line="343"/> <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="348"/> + <location filename="downloadlistwidget.cpp" line="352"/> <source>This will remove all uninstalled downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="376"/> + <location filename="downloadlistwidget.cpp" line="380"/> <source>Install</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="378"/> + <location filename="downloadlistwidget.cpp" line="382"/> <source>Query Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="380"/> + <location filename="downloadlistwidget.cpp" line="384"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="383"/> + <location filename="downloadlistwidget.cpp" line="387"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="384"/> - <location filename="downloadlistwidget.cpp" line="397"/> + <location filename="downloadlistwidget.cpp" line="388"/> <location filename="downloadlistwidget.cpp" line="401"/> + <location filename="downloadlistwidget.cpp" line="405"/> <source>Show in Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="388"/> - <location filename="downloadlistwidget.cpp" line="399"/> + <location filename="downloadlistwidget.cpp" line="392"/> + <location filename="downloadlistwidget.cpp" line="403"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="390"/> + <location filename="downloadlistwidget.cpp" line="394"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="392"/> + <location filename="downloadlistwidget.cpp" line="396"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="395"/> + <location filename="downloadlistwidget.cpp" line="399"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="396"/> + <location filename="downloadlistwidget.cpp" line="400"/> <source>Pause</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="400"/> + <location filename="downloadlistwidget.cpp" line="404"/> <source>Resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="406"/> + <location filename="downloadlistwidget.cpp" line="410"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="407"/> + <location filename="downloadlistwidget.cpp" line="411"/> <source>Delete Uninstalled...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="408"/> + <location filename="downloadlistwidget.cpp" line="412"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="412"/> + <location filename="downloadlistwidget.cpp" line="416"/> <source>Hide Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="413"/> + <location filename="downloadlistwidget.cpp" line="417"/> <source>Hide Uninstalled...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="414"/> + <location filename="downloadlistwidget.cpp" line="418"/> <source>Hide All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="418"/> + <location filename="downloadlistwidget.cpp" line="422"/> <source>Un-Hide All...</source> <translation type="unfinished"></translation> </message> @@ -1620,7 +1625,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="287"/> <location filename="mainwindow.ui" line="908"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="4337"/> <source>Create Backup</source> <translation type="unfinished"></translation> </message> @@ -1796,8 +1801,8 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="1172"/> <location filename="mainwindow.ui" line="1295"/> - <location filename="mainwindow.cpp" line="4210"/> - <location filename="mainwindow.cpp" line="5113"/> + <location filename="mainwindow.cpp" line="4212"/> + <location filename="mainwindow.cpp" line="5120"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -2022,7 +2027,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1643"/> - <location filename="mainwindow.cpp" line="5136"/> + <location filename="mainwindow.cpp" line="5143"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -2090,8 +2095,8 @@ Error: %1</source> </message> <message> <location filename="mainwindow.cpp" line="722"/> - <location filename="mainwindow.cpp" line="4345"/> - <location filename="mainwindow.cpp" line="4349"/> + <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4351"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> @@ -2181,711 +2186,711 @@ Error: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1336"/> + <location filename="mainwindow.cpp" line="1338"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1347"/> + <location filename="mainwindow.cpp" line="1349"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1432"/> + <location filename="mainwindow.cpp" line="1434"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1710"/> + <location filename="mainwindow.cpp" line="1712"/> <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="1772"/> + <location filename="mainwindow.cpp" line="1774"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1833"/> + <location filename="mainwindow.cpp" line="1835"/> <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="1937"/> + <location filename="mainwindow.cpp" line="1939"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1938"/> + <location filename="mainwindow.cpp" line="1940"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2113"/> + <location filename="mainwindow.cpp" line="2115"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2114"/> + <location filename="mainwindow.cpp" line="2116"/> <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="2273"/> + <location filename="mainwindow.cpp" line="2275"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2313"/> + <location filename="mainwindow.cpp" line="2315"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2337"/> + <location filename="mainwindow.cpp" line="2339"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2361"/> + <location filename="mainwindow.cpp" line="2363"/> <source><Contains %1></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2396"/> + <location filename="mainwindow.cpp" line="2398"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2397"/> + <location filename="mainwindow.cpp" line="2399"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2398"/> + <location filename="mainwindow.cpp" line="2400"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2399"/> + <location filename="mainwindow.cpp" line="2401"/> <source><Mod Backup></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2400"/> + <location filename="mainwindow.cpp" line="2402"/> <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2401"/> + <location filename="mainwindow.cpp" line="2403"/> <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2402"/> + <location filename="mainwindow.cpp" line="2404"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2403"/> + <location filename="mainwindow.cpp" line="2405"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2404"/> + <location filename="mainwindow.cpp" line="2406"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2450"/> + <location filename="mainwindow.cpp" line="2452"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2463"/> + <location filename="mainwindow.cpp" line="2465"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2464"/> + <location filename="mainwindow.cpp" line="2466"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2467"/> + <location filename="mainwindow.cpp" line="2469"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2471"/> + <location filename="mainwindow.cpp" line="2473"/> <location filename="mainwindow.cpp" line="4883"/> <location filename="mainwindow.cpp" line="4907"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2538"/> - <location filename="mainwindow.cpp" line="3914"/> - <location filename="mainwindow.cpp" line="3922"/> - <location filename="mainwindow.cpp" line="4458"/> + <location filename="mainwindow.cpp" line="2540"/> + <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> + <location filename="mainwindow.cpp" line="4460"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2539"/> + <location filename="mainwindow.cpp" line="2541"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2552"/> + <location filename="mainwindow.cpp" line="2554"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2584"/> - <location filename="mainwindow.cpp" line="2587"/> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2586"/> + <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2599"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2584"/> + <location filename="mainwindow.cpp" line="2586"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2588"/> + <location filename="mainwindow.cpp" line="2590"/> <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="2598"/> + <location filename="mainwindow.cpp" line="2600"/> <source>Failed to create backup.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2615"/> + <location filename="mainwindow.cpp" line="2617"/> <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="2631"/> - <location filename="mainwindow.cpp" line="2657"/> - <location filename="mainwindow.cpp" line="2691"/> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2633"/> + <location filename="mainwindow.cpp" line="2659"/> + <location filename="mainwindow.cpp" line="2693"/> + <location filename="mainwindow.cpp" line="2719"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2642"/> - <location filename="mainwindow.cpp" line="2650"/> + <location filename="mainwindow.cpp" line="2644"/> + <location filename="mainwindow.cpp" line="2652"/> <source>Endorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="2710"/> + <location filename="mainwindow.cpp" line="2704"/> + <location filename="mainwindow.cpp" line="2712"/> <source>Unendorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2778"/> + <location filename="mainwindow.cpp" line="2780"/> <source>Failed to display overwrite dialog: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2965"/> + <location filename="mainwindow.cpp" line="2967"/> <source>Opening Nexus Links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2966"/> + <location filename="mainwindow.cpp" line="2968"/> <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="2986"/> + <location filename="mainwindow.cpp" line="2988"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> + <location filename="mainwindow.cpp" line="2999"/> <source>Web page for this mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3179"/> + <location filename="mainwindow.cpp" line="3181"/> <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="3234"/> + <location filename="mainwindow.cpp" line="3236"/> <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="3266"/> - <location filename="mainwindow.cpp" line="3403"/> - <location filename="mainwindow.cpp" line="4272"/> + <location filename="mainwindow.cpp" line="3268"/> + <location filename="mainwindow.cpp" line="3405"/> + <location filename="mainwindow.cpp" line="4274"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3267"/> + <location filename="mainwindow.cpp" line="3269"/> <source>This will create an empty mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3276"/> - <location filename="mainwindow.cpp" line="3413"/> + <location filename="mainwindow.cpp" line="3278"/> + <location filename="mainwindow.cpp" line="3415"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3304"/> + <location filename="mainwindow.cpp" line="3306"/> <source>Create Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3305"/> + <location filename="mainwindow.cpp" line="3307"/> <source>This will create a new separator. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3312"/> + <location filename="mainwindow.cpp" line="3314"/> <source>A separator with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3404"/> + <location filename="mainwindow.cpp" line="3406"/> <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="3445"/> - <location filename="mainwindow.cpp" line="5463"/> + <location filename="mainwindow.cpp" line="3447"/> + <location filename="mainwindow.cpp" line="5469"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3446"/> + <location filename="mainwindow.cpp" line="3448"/> <source>About to recursively delete: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3810"/> <source>Not logged in, endorsement information will be wrong</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3816"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3817"/> + <location filename="mainwindow.cpp" line="3819"/> <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="3837"/> + <location filename="mainwindow.cpp" line="3839"/> <location filename="mainwindow.cpp" line="5019"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3840"/> <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="3914"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3922"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4002"/> + <location filename="mainwindow.cpp" line="4004"/> <source>Export to csv</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4005"/> + <location filename="mainwindow.cpp" line="4007"/> <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="4008"/> + <location filename="mainwindow.cpp" line="4010"/> <source>Select what mods you want export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4011"/> <source>All installed mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4010"/> + <location filename="mainwindow.cpp" line="4012"/> <source>Only active (checked) mods from your current profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4011"/> + <location filename="mainwindow.cpp" line="4013"/> <source>All currently visible mods in the mod list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4032"/> + <location filename="mainwindow.cpp" line="4034"/> <source>Choose what Columns to export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4035"/> + <location filename="mainwindow.cpp" line="4037"/> <source>Mod_Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4037"/> + <location filename="mainwindow.cpp" line="4039"/> <source>Mod_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4039"/> + <location filename="mainwindow.cpp" line="4041"/> <source>Mod_Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4040"/> + <location filename="mainwindow.cpp" line="4042"/> <source>Primary_Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4041"/> + <location filename="mainwindow.cpp" line="4043"/> <source>Nexus_ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4042"/> + <location filename="mainwindow.cpp" line="4044"/> <source>Mod_Nexus_URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4043"/> + <location filename="mainwindow.cpp" line="4045"/> <source>Mod_Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4046"/> <source>Install_Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4045"/> + <location filename="mainwindow.cpp" line="4047"/> <source>Download_File_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4147"/> + <location filename="mainwindow.cpp" line="4149"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4166"/> + <location filename="mainwindow.cpp" line="4168"/> <source>Open Game folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4168"/> + <location filename="mainwindow.cpp" line="4170"/> <source>Open MyGames folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4170"/> + <location filename="mainwindow.cpp" line="4172"/> <source>Open INIs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Open Instance folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4178"/> <source>Open Mods folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4178"/> + <location filename="mainwindow.cpp" line="4180"/> <source>Open Profile folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4180"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Open Downloads folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4184"/> + <location filename="mainwindow.cpp" line="4186"/> <source>Open MO2 Install folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4186"/> + <location filename="mainwindow.cpp" line="4188"/> <source>Open MO2 Plugins folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4188"/> + <location filename="mainwindow.cpp" line="4190"/> <source>Open MO2 Logs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4197"/> + <location filename="mainwindow.cpp" line="4199"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4199"/> + <location filename="mainwindow.cpp" line="4201"/> <source>Create empty mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4201"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Create Separator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4205"/> + <location filename="mainwindow.cpp" line="4207"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4206"/> + <location filename="mainwindow.cpp" line="4208"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4208"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4212"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4224"/> - <location filename="mainwindow.cpp" line="4240"/> + <location filename="mainwindow.cpp" line="4226"/> + <location filename="mainwindow.cpp" line="4242"/> <source>Send to</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4225"/> - <location filename="mainwindow.cpp" line="4241"/> + <location filename="mainwindow.cpp" line="4227"/> + <location filename="mainwindow.cpp" line="4243"/> <source>Top</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4226"/> - <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4228"/> + <location filename="mainwindow.cpp" line="4244"/> <source>Bottom</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4227"/> - <location filename="mainwindow.cpp" line="4243"/> + <location filename="mainwindow.cpp" line="4229"/> + <location filename="mainwindow.cpp" line="4245"/> <source>Priority...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4228"/> + <location filename="mainwindow.cpp" line="4230"/> <source>Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4266"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4273"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4273"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Clear Overwrite...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4275"/> - <location filename="mainwindow.cpp" line="4376"/> + <location filename="mainwindow.cpp" line="4277"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Open in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4277"/> + <location filename="mainwindow.cpp" line="4279"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="4280"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4281"/> - <location filename="mainwindow.cpp" line="4300"/> + <location filename="mainwindow.cpp" line="4283"/> + <location filename="mainwindow.cpp" line="4302"/> <source>Change Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4285"/> - <location filename="mainwindow.cpp" line="4305"/> + <location filename="mainwindow.cpp" line="4287"/> + <location filename="mainwindow.cpp" line="4307"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4289"/> + <location filename="mainwindow.cpp" line="4291"/> <source>Rename Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4290"/> + <location filename="mainwindow.cpp" line="4292"/> <source>Remove Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4293"/> + <location filename="mainwindow.cpp" line="4295"/> <source>Select Color...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4295"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Reset Color</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4312"/> + <location filename="mainwindow.cpp" line="4314"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4316"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4320"/> + <location filename="mainwindow.cpp" line="4322"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4325"/> - <location filename="mainwindow.cpp" line="5574"/> + <location filename="mainwindow.cpp" line="4327"/> + <location filename="mainwindow.cpp" line="5580"/> <source>Enable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4326"/> - <location filename="mainwindow.cpp" line="5575"/> + <location filename="mainwindow.cpp" line="4328"/> + <location filename="mainwindow.cpp" line="5581"/> <source>Disable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4332"/> + <location filename="mainwindow.cpp" line="4334"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4333"/> + <location filename="mainwindow.cpp" line="4335"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4334"/> + <location filename="mainwindow.cpp" line="4336"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4342"/> + <location filename="mainwindow.cpp" line="4344"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4346"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4363"/> + <location filename="mainwindow.cpp" line="4365"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4367"/> + <location filename="mainwindow.cpp" line="4369"/> <source>Mark as converted/working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4371"/> + <location filename="mainwindow.cpp" line="4373"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4373"/> + <location filename="mainwindow.cpp" line="4375"/> <source>Visit web page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4380"/> + <location filename="mainwindow.cpp" line="4382"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4387"/> - <location filename="mainwindow.cpp" line="5622"/> + <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="5628"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4389"/> - <location filename="mainwindow.cpp" line="5624"/> + <location filename="mainwindow.cpp" line="4391"/> + <location filename="mainwindow.cpp" line="5630"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4418"/> + <location filename="mainwindow.cpp" line="4420"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4420"/> + <location filename="mainwindow.cpp" line="4422"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4455"/> + <location filename="mainwindow.cpp" line="4457"/> <source>%1 more</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4461"/> <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> @@ -2893,12 +2898,12 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4506"/> <source>Enable Mods...</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4519"/> + <location filename="mainwindow.cpp" line="4521"/> <source>Delete %n save(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -2906,22 +2911,22 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="4561"/> + <location filename="mainwindow.cpp" line="4563"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4583"/> + <location filename="mainwindow.cpp" line="4585"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4613"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Restarting MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4614"/> + <location filename="mainwindow.cpp" line="4616"/> <source>Changing the managed game directory requires restarting MO. Any pending downloads will be paused. @@ -2929,7 +2934,7 @@ Click OK to restart MO now.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4636"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> @@ -3003,7 +3008,7 @@ Click OK to restart MO now.</source> </message> <message> <location filename="mainwindow.cpp" line="4937"/> - <location filename="mainwindow.cpp" line="6236"/> + <location filename="mainwindow.cpp" line="6242"/> <source>Set Priority</source> <translation type="unfinished"></translation> </message> @@ -3033,231 +3038,231 @@ Click OK to restart MO now.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5093"/> + <location filename="mainwindow.cpp" line="5100"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5094"/> + <location filename="mainwindow.cpp" line="5101"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5098"/> + <location filename="mainwindow.cpp" line="5105"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5104"/> + <location filename="mainwindow.cpp" line="5111"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5106"/> + <location filename="mainwindow.cpp" line="5113"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5112"/> + <location filename="mainwindow.cpp" line="5119"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5137"/> + <location filename="mainwindow.cpp" line="5144"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5272"/> + <location filename="mainwindow.cpp" line="5278"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5272"/> + <location filename="mainwindow.cpp" line="5278"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5307"/> + <location filename="mainwindow.cpp" line="5313"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5322"/> - <location filename="mainwindow.cpp" line="5384"/> + <location filename="mainwindow.cpp" line="5328"/> + <location filename="mainwindow.cpp" line="5390"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5334"/> - <location filename="mainwindow.cpp" line="5812"/> + <location filename="mainwindow.cpp" line="5340"/> + <location filename="mainwindow.cpp" line="5818"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5334"/> + <location filename="mainwindow.cpp" line="5340"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5366"/> + <location filename="mainwindow.cpp" line="5372"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5395"/> + <location filename="mainwindow.cpp" line="5401"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5441"/> + <location filename="mainwindow.cpp" line="5447"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5464"/> + <location filename="mainwindow.cpp" line="5470"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5511"/> + <location filename="mainwindow.cpp" line="5517"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5512"/> + <location filename="mainwindow.cpp" line="5518"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5563"/> + <location filename="mainwindow.cpp" line="5569"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5579"/> + <location filename="mainwindow.cpp" line="5585"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5580"/> + <location filename="mainwindow.cpp" line="5586"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5601"/> + <location filename="mainwindow.cpp" line="5607"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5604"/> + <location filename="mainwindow.cpp" line="5610"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5608"/> + <location filename="mainwindow.cpp" line="5614"/> <source>Open Origin in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5615"/> + <location filename="mainwindow.cpp" line="5621"/> <source>Open Origin Info...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5758"/> + <location filename="mainwindow.cpp" line="5764"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5762"/> + <location filename="mainwindow.cpp" line="5768"/> <source>incompatible with "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5788"/> + <location filename="mainwindow.cpp" line="5794"/> <source>Please wait while LOOT is running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5885"/> + <location filename="mainwindow.cpp" line="5891"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5907"/> + <location filename="mainwindow.cpp" line="5913"/> <source>failed to start loot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5910"/> + <location filename="mainwindow.cpp" line="5916"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5914"/> + <location filename="mainwindow.cpp" line="5920"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5961"/> + <location filename="mainwindow.cpp" line="5967"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5971"/> + <location filename="mainwindow.cpp" line="5977"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5984"/> + <location filename="mainwindow.cpp" line="5990"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5984"/> + <location filename="mainwindow.cpp" line="5990"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6005"/> - <location filename="mainwindow.cpp" line="6027"/> + <location filename="mainwindow.cpp" line="6011"/> + <location filename="mainwindow.cpp" line="6033"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6006"/> - <location filename="mainwindow.cpp" line="6028"/> + <location filename="mainwindow.cpp" line="6012"/> + <location filename="mainwindow.cpp" line="6034"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6017"/> + <location filename="mainwindow.cpp" line="6023"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6123"/> + <location filename="mainwindow.cpp" line="6129"/> <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="6125"/> + <location filename="mainwindow.cpp" line="6131"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6126"/> + <location filename="mainwindow.cpp" line="6132"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6127"/> + <location filename="mainwindow.cpp" line="6133"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6236"/> + <location filename="mainwindow.cpp" line="6242"/> <source>Set the priority of the selected mods</source> <translation type="unfinished"></translation> </message> @@ -4455,135 +4460,135 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1270"/> + <location filename="organizercore.cpp" line="1273"/> <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1298"/> + <location filename="organizercore.cpp" line="1301"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1299"/> + <location filename="organizercore.cpp" line="1302"/> <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="1328"/> + <location filename="organizercore.cpp" line="1331"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1336"/> + <location filename="organizercore.cpp" line="1339"/> <source>Windows Event Log Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1337"/> + <location filename="organizercore.cpp" line="1340"/> <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="1349"/> + <location filename="organizercore.cpp" line="1352"/> <source>Blacklisted Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1350"/> + <location filename="organizercore.cpp" line="1353"/> <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="1439"/> + <location filename="organizercore.cpp" line="1442"/> <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1728"/> + <location filename="organizercore.cpp" line="1731"/> <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1821"/> + <location filename="organizercore.cpp" line="1824"/> <source>Multiple esps/esls activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1896"/> + <location filename="organizercore.cpp" line="1899"/> <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="1897"/> + <location filename="organizercore.cpp" line="1900"/> <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="2031"/> + <location filename="organizercore.cpp" line="2034"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2038"/> - <location filename="organizercore.cpp" line="2055"/> + <location filename="organizercore.cpp" line="2041"/> + <location filename="organizercore.cpp" line="2058"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2062"/> + <location filename="organizercore.cpp" line="2065"/> <source>Login failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2063"/> + <location filename="organizercore.cpp" line="2066"/> <source>Login failed, try again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2072"/> + <location filename="organizercore.cpp" line="2075"/> <source>login failed: %1. Download will not be associated with an account</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2080"/> + <location filename="organizercore.cpp" line="2083"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2090"/> + <location filename="organizercore.cpp" line="2093"/> <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="2143"/> + <location filename="organizercore.cpp" line="2146"/> <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="2146"/> - <location filename="organizercore.cpp" line="2162"/> + <location filename="organizercore.cpp" line="2149"/> + <location filename="organizercore.cpp" line="2165"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2155"/> + <location filename="organizercore.cpp" line="2158"/> <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="2189"/> + <location filename="organizercore.cpp" line="2192"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="organizercore.cpp" line="2261"/> + <location filename="organizercore.cpp" line="2264"/> <source>The designated write target "%1" is not enabled.</source> <translation type="unfinished"></translation> </message> @@ -4730,94 +4735,94 @@ Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="221"/> + <location filename="pluginlist.cpp" line="224"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="294"/> + <location filename="pluginlist.cpp" line="297"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="342"/> - <location filename="pluginlist.cpp" line="354"/> + <location filename="pluginlist.cpp" line="345"/> + <location filename="pluginlist.cpp" line="357"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="342"/> + <location filename="pluginlist.cpp" line="345"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="354"/> + <location filename="pluginlist.cpp" line="357"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="459"/> + <location filename="pluginlist.cpp" line="462"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="956"/> - <location filename="pluginlist.cpp" line="960"/> + <location filename="pluginlist.cpp" line="959"/> + <location filename="pluginlist.cpp" line="963"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="957"/> + <location filename="pluginlist.cpp" line="960"/> <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="962"/> + <location filename="pluginlist.cpp" line="965"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="965"/> + <location filename="pluginlist.cpp" line="968"/> <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="968"/> + <location filename="pluginlist.cpp" line="971"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="975"/> + <location filename="pluginlist.cpp" line="978"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="978"/> + <location filename="pluginlist.cpp" line="981"/> <source>Loads Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="979"/> + <location filename="pluginlist.cpp" line="982"/> <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="984"/> + <location filename="pluginlist.cpp" line="987"/> <source>Loads INI settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> + <location filename="pluginlist.cpp" line="988"/> <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="989"/> + <location filename="pluginlist.cpp" line="992"/> <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="1164"/> + <location filename="pluginlist.cpp" line="1167"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -5619,13 +5624,13 @@ If the folder was still in use, restart MO and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1396"/> + <location filename="mainwindow.cpp" line="1398"/> <location filename="mainwindow.cpp" line="4712"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1408"/> + <location filename="mainwindow.cpp" line="1410"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> @@ -5661,12 +5666,12 @@ If the folder was still in use, restart MO and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="535"/> + <location filename="pluginlist.cpp" line="538"/> <source>failed to access %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="549"/> + <location filename="pluginlist.cpp" line="552"/> <source>failed to set file time %1</source> <translation type="unfinished"></translation> </message> |
