diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 22 | ||||
| -rw-r--r-- | src/mainwindow.h | 2 | ||||
| -rw-r--r-- | src/modlist.cpp | 30 | ||||
| -rw-r--r-- | src/modlist.h | 4 | ||||
| -rw-r--r-- | src/organizer_en.ts | 263 |
5 files changed, 190 insertions, 131 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index d638e988..e6b454c5 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3597,13 +3597,19 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos) menu->addAction(tr("Ignore update"), this, SLOT(ignoreUpdate()));
}
}
+
+ menu->addSeparator();
+
+ menu->addAction(tr("Enable selected"), this, SLOT(enableSelectedMods_clicked()));
+ menu->addAction(tr("Disable selected"), this, SLOT(disableSelectedMods_clicked()));
+
menu->addSeparator();
menu->addAction(tr("Rename Mod..."), this, SLOT(renameMod_clicked()));
menu->addAction(tr("Reinstall Mod"), this, SLOT(reinstallMod_clicked()));
- menu->addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
+ menu->addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
- menu->addSeparator();
+ menu->addSeparator();
if (info->getNexusID() > 0) {
switch (info->endorsedState()) {
@@ -4183,6 +4189,18 @@ void MainWindow::disableSelectedPlugins_clicked() }
+void MainWindow::enableSelectedMods_clicked()
+{
+ m_OrganizerCore.modList()->enableSelected(ui->modList->selectionModel());
+}
+
+
+void MainWindow::disableSelectedMods_clicked()
+{
+ m_OrganizerCore.modList()->disableSelected(ui->modList->selectionModel());
+}
+
+
void MainWindow::previewDataFile()
{
QString fileName = QDir::fromNativeSeparators(m_ContextItem->data(0, Qt::UserRole).toString());
diff --git a/src/mainwindow.h b/src/mainwindow.h index 085126f7..ad0972da 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -417,6 +417,8 @@ private slots: void visitWebPage_clicked();
void openExplorer_clicked();
void information_clicked();
+ void enableSelectedMods_clicked();
+ void disableSelectedMods_clicked();
// savegame context menu
void deleteSavegame_clicked();
void fixMods_clicked(SaveGameInfo::MissingAssets const &missingAssets);
diff --git a/src/modlist.cpp b/src/modlist.cpp index 0d084c22..afed2241 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -1231,3 +1231,33 @@ bool ModList::eventFilter(QObject *obj, QEvent *event) }
return QAbstractItemModel::eventFilter(obj, event);
}
+
+
+void ModList::enableSelected(const QItemSelectionModel *selectionModel)
+{
+ if (selectionModel->hasSelection()) {
+ bool dirty = false;
+ for (auto row : selectionModel->selectedRows(COL_PRIORITY)) {
+ int modID = m_Profile->modIndexByPriority(row.data().toInt());
+ if (!m_Profile->modEnabled(modID)) {
+ m_Profile->setModEnabled(modID, true);
+ emit modlist_changed(row, 0);
+ }
+ }
+ }
+}
+
+
+void ModList::disableSelected(const QItemSelectionModel *selectionModel)
+{
+ if (selectionModel->hasSelection()) {
+ bool dirty = false;
+ for (auto row : selectionModel->selectedRows(COL_PRIORITY)) {
+ int modID = m_Profile->modIndexByPriority(row.data().toInt());
+ if (m_Profile->modEnabled(modID)) {
+ m_Profile->setModEnabled(modID, false);
+ emit modlist_changed(row, 0);
+ }
+ }
+ }
+}
\ No newline at end of file diff --git a/src/modlist.h b/src/modlist.h index 2db98bd1..15376ed5 100644 --- a/src/modlist.h +++ b/src/modlist.h @@ -170,6 +170,10 @@ public slots: void dropModeUpdate(bool dropOnItems);
+ void enableSelected(const QItemSelectionModel *selectionModel);
+
+ void disableSelected(const QItemSelectionModel *selectionModel);
+
signals:
/**
diff --git a/src/organizer_en.ts b/src/organizer_en.ts index f96ca5cd..0d0cae2c 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -1762,7 +1762,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="1106"/> <location filename="mainwindow.cpp" line="3532"/> - <location filename="mainwindow.cpp" line="4320"/> + <location filename="mainwindow.cpp" line="4351"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -1941,7 +1941,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1509"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="4292"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1982,7 +1982,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1557"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="4374"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -2248,8 +2248,8 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.cpp" line="2280"/> - <location filename="mainwindow.cpp" line="4145"/> - <location filename="mainwindow.cpp" line="4169"/> + <location filename="mainwindow.cpp" line="4151"/> + <location filename="mainwindow.cpp" line="4175"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> @@ -2257,7 +2257,7 @@ Right now this has very limited functionality</source> <location filename="mainwindow.cpp" line="2340"/> <location filename="mainwindow.cpp" line="3255"/> <location filename="mainwindow.cpp" line="3263"/> - <location filename="mainwindow.cpp" line="3729"/> + <location filename="mainwindow.cpp" line="3735"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> @@ -2340,7 +2340,7 @@ Please enter a name:</source> </message> <message> <location filename="mainwindow.cpp" line="2834"/> - <location filename="mainwindow.cpp" line="4660"/> + <location filename="mainwindow.cpp" line="4691"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> @@ -2368,7 +2368,7 @@ This function will guess the versioning scheme under the assumption that the ins </message> <message> <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4229"/> + <location filename="mainwindow.cpp" line="4260"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> @@ -2565,7 +2565,7 @@ You can also use online editors and converters instead.</source> </message> <message> <location filename="mainwindow.cpp" line="3565"/> - <location filename="mainwindow.cpp" line="3645"/> + <location filename="mainwindow.cpp" line="3651"/> <source>Open in Explorer</source> <translation type="unfinished"></translation> </message> @@ -2605,102 +2605,107 @@ You can also use online editors and converters instead.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3602"/> + <location filename="mainwindow.cpp" line="3603"/> + <location filename="mainwindow.cpp" line="4795"/> + <source>Enable selected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3604"/> + <location filename="mainwindow.cpp" line="4796"/> + <source>Disable selected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3608"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3603"/> + <location filename="mainwindow.cpp" line="3609"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3604"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3611"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <location filename="mainwindow.cpp" line="3618"/> + <location filename="mainwindow.cpp" line="3620"/> + <location filename="mainwindow.cpp" line="3624"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3621"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3632"/> + <location filename="mainwindow.cpp" line="3638"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3636"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Mark as converted/working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3640"/> + <location filename="mainwindow.cpp" line="3646"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3648"/> <source>Visit web page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3565"/> - <location filename="mainwindow.cpp" line="3645"/> - <source>Open in Explorer</source> - <oldsource>Open in explorer</oldsource> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3649"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3656"/> - <location filename="mainwindow.cpp" line="4793"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="4829"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> - <location filename="mainwindow.cpp" line="4795"/> + <location filename="mainwindow.cpp" line="3664"/> + <location filename="mainwindow.cpp" line="4831"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3689"/> + <location filename="mainwindow.cpp" line="3695"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3691"/> + <location filename="mainwindow.cpp" line="3697"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3726"/> + <location filename="mainwindow.cpp" line="3732"/> <source>%1 more</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="3730"/> + <location filename="mainwindow.cpp" line="3736"/> <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> @@ -2708,12 +2713,12 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Enable Mods...</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="3790"/> + <location filename="mainwindow.cpp" line="3796"/> <source>Delete %n save(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -2721,319 +2726,319 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="3832"/> + <location filename="mainwindow.cpp" line="3838"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3854"/> + <location filename="mainwindow.cpp" line="3860"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3896"/> + <location filename="mainwindow.cpp" line="3902"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4017"/> + <location filename="mainwindow.cpp" line="4023"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4023"/> + <location filename="mainwindow.cpp" line="4029"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4064"/> + <location filename="mainwindow.cpp" line="4070"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4064"/> + <location filename="mainwindow.cpp" line="4070"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4090"/> + <location filename="mainwindow.cpp" line="4096"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4091"/> + <location filename="mainwindow.cpp" line="4097"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4111"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4105"/> + <location filename="mainwindow.cpp" line="4111"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4130"/> - <location filename="mainwindow.cpp" line="4155"/> + <location filename="mainwindow.cpp" line="4136"/> + <location filename="mainwindow.cpp" line="4161"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4130"/> + <location filename="mainwindow.cpp" line="4136"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4133"/> - <location filename="mainwindow.cpp" line="4158"/> + <location filename="mainwindow.cpp" line="4139"/> + <location filename="mainwindow.cpp" line="4164"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4133"/> - <location filename="mainwindow.cpp" line="4158"/> + <location filename="mainwindow.cpp" line="4139"/> + <location filename="mainwindow.cpp" line="4164"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4155"/> + <location filename="mainwindow.cpp" line="4161"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4233"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4215"/> + <location filename="mainwindow.cpp" line="4246"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4229"/> + <location filename="mainwindow.cpp" line="4260"/> <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="4263"/> + <location filename="mainwindow.cpp" line="4294"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4300"/> + <location filename="mainwindow.cpp" line="4331"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4301"/> + <location filename="mainwindow.cpp" line="4332"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4305"/> + <location filename="mainwindow.cpp" line="4336"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4311"/> + <location filename="mainwindow.cpp" line="4342"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4313"/> + <location filename="mainwindow.cpp" line="4344"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4319"/> + <location filename="mainwindow.cpp" line="4350"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4344"/> + <location filename="mainwindow.cpp" line="4375"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4469"/> + <location filename="mainwindow.cpp" line="4500"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4469"/> + <location filename="mainwindow.cpp" line="4500"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4504"/> + <location filename="mainwindow.cpp" line="4535"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4519"/> - <location filename="mainwindow.cpp" line="4581"/> + <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4612"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> - <location filename="mainwindow.cpp" line="4980"/> + <location filename="mainwindow.cpp" line="4562"/> + <location filename="mainwindow.cpp" line="5016"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4531"/> + <location filename="mainwindow.cpp" line="4562"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4563"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4592"/> + <location filename="mainwindow.cpp" line="4623"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="4669"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4661"/> + <location filename="mainwindow.cpp" line="4692"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4701"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4733"/> <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4753"/> + <location filename="mainwindow.cpp" line="4784"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4800"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4765"/> + <location filename="mainwindow.cpp" line="4801"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4784"/> + <location filename="mainwindow.cpp" line="4820"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4787"/> + <location filename="mainwindow.cpp" line="4823"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4929"/> + <location filename="mainwindow.cpp" line="4965"/> <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4933"/> + <location filename="mainwindow.cpp" line="4969"/> <source>incompatible with "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4959"/> + <location filename="mainwindow.cpp" line="4995"/> <source>Please wait while LOOT is running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5053"/> + <location filename="mainwindow.cpp" line="5089"/> <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5075"/> + <location filename="mainwindow.cpp" line="5111"/> <source>failed to start loot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5078"/> + <location filename="mainwindow.cpp" line="5114"/> <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5082"/> + <location filename="mainwindow.cpp" line="5118"/> <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5129"/> + <location filename="mainwindow.cpp" line="5165"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5139"/> + <location filename="mainwindow.cpp" line="5175"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5152"/> + <location filename="mainwindow.cpp" line="5188"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5152"/> + <location filename="mainwindow.cpp" line="5188"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5173"/> - <location filename="mainwindow.cpp" line="5195"/> + <location filename="mainwindow.cpp" line="5209"/> + <location filename="mainwindow.cpp" line="5231"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5174"/> - <location filename="mainwindow.cpp" line="5196"/> + <location filename="mainwindow.cpp" line="5210"/> + <location filename="mainwindow.cpp" line="5232"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5185"/> + <location filename="mainwindow.cpp" line="5221"/> <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5291"/> + <location filename="mainwindow.cpp" line="5327"/> <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="5293"/> + <location filename="mainwindow.cpp" line="5329"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5294"/> + <location filename="mainwindow.cpp" line="5330"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5295"/> + <location filename="mainwindow.cpp" line="5331"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> @@ -4452,84 +4457,84 @@ Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="295"/> - <location filename="pluginlist.cpp" line="307"/> + <location filename="pluginlist.cpp" line="336"/> + <location filename="pluginlist.cpp" line="348"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="295"/> + <location filename="pluginlist.cpp" line="336"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="307"/> + <location filename="pluginlist.cpp" line="348"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="397"/> + <location filename="pluginlist.cpp" line="438"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="893"/> - <location filename="pluginlist.cpp" line="897"/> + <location filename="pluginlist.cpp" line="934"/> + <location filename="pluginlist.cpp" line="938"/> <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="894"/> + <location filename="pluginlist.cpp" line="935"/> <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="899"/> + <location filename="pluginlist.cpp" line="940"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="902"/> + <location filename="pluginlist.cpp" line="943"/> <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="905"/> + <location filename="pluginlist.cpp" line="946"/> <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="912"/> + <location filename="pluginlist.cpp" line="953"/> <source>Enabled Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="915"/> + <location filename="pluginlist.cpp" line="956"/> <source>Loads Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="916"/> + <location filename="pluginlist.cpp" line="957"/> <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="921"/> + <location filename="pluginlist.cpp" line="962"/> <source>Loads INI settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="922"/> + <location filename="pluginlist.cpp" line="963"/> <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="926"/> + <location filename="pluginlist.cpp" line="967"/> <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="1101"/> + <location filename="pluginlist.cpp" line="1142"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -5267,7 +5272,7 @@ If the folder was still in use, restart MO and try again.</source> </message> <message> <location filename="mainwindow.cpp" line="1271"/> - <location filename="mainwindow.cpp" line="3974"/> + <location filename="mainwindow.cpp" line="3980"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> @@ -5308,12 +5313,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="473"/> + <location filename="pluginlist.cpp" line="514"/> <source>failed to access %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="487"/> + <location filename="pluginlist.cpp" line="528"/> <source>failed to set file time %1</source> <translation type="unfinished"></translation> </message> |
