summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-12-12 03:02:29 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-12-12 03:04:23 -0600
commit013890f644c264d7da0d7da1adcd3f289ebee377 (patch)
treeaa647a10d3aa548d6378c4bde7ef1c1ac1409e6d /src
parent3559364473dda5a0d37eb31431bd1b82c5b18c75 (diff)
Remember the last separator color used
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp19
-rw-r--r--src/organizer_en.ts435
2 files changed, 234 insertions, 220 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 61a745b2..18ac60bf 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3049,10 +3049,21 @@ void MainWindow::createSeparator_clicked()
void MainWindow::setColor_clicked()
{
+ QSettings &settings = m_OrganizerCore.settings().directInterface();
ModInfo::Ptr modInfo = ModInfo::getByIndex(m_ContextRow);
- QColor color = QColorDialog::getColor(modInfo->getColor(), this);
- if (!color.isValid())
+ QColorDialog dialog(this);
+ QColor currentColor = modInfo->getColor();
+ QColor previousColor = settings.value("previousSeparatorColor", QColor()).value<QColor>();
+ if (currentColor.isValid())
+ dialog.setCurrentColor(currentColor);
+ else
+ dialog.setCurrentColor(previousColor);
+ if (!dialog.exec())
+ return;
+ currentColor = dialog.currentColor();
+ if (!currentColor.isValid())
return;
+ settings.setValue("previousSeparatorColor", currentColor);
QItemSelectionModel *selection = ui->modList->selectionModel();
if (selection->hasSelection() && selection->selectedRows().count() > 1) {
for (QModelIndex idx : selection->selectedRows()) {
@@ -3060,12 +3071,12 @@ void MainWindow::setColor_clicked()
auto flags = info->getFlags();
if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_SEPARATOR) != flags.end())
{
- info->setColor(color);
+ info->setColor(currentColor);
}
}
}
else {
- modInfo->setColor(color);
+ modInfo->setColor(currentColor);
}
}
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index 6700dea8..44a386d6 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -1620,7 +1620,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="287"/>
<location filename="mainwindow.ui" line="879"/>
- <location filename="mainwindow.cpp" line="4003"/>
+ <location filename="mainwindow.cpp" line="4014"/>
<source>Create Backup</source>
<translation type="unfinished"></translation>
</message>
@@ -1784,8 +1784,8 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="1114"/>
<location filename="mainwindow.ui" line="1237"/>
- <location filename="mainwindow.cpp" line="3878"/>
- <location filename="mainwindow.cpp" line="4781"/>
+ <location filename="mainwindow.cpp" line="3889"/>
+ <location filename="mainwindow.cpp" line="4792"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
@@ -1969,7 +1969,7 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location filename="mainwindow.ui" line="1537"/>
- <location filename="mainwindow.cpp" line="4721"/>
+ <location filename="mainwindow.cpp" line="4732"/>
<source>Update</source>
<translation type="unfinished"></translation>
</message>
@@ -2010,7 +2010,7 @@ Right now this has very limited functionality</source>
</message>
<message>
<location filename="mainwindow.ui" line="1585"/>
- <location filename="mainwindow.cpp" line="4804"/>
+ <location filename="mainwindow.cpp" line="4815"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -2281,16 +2281,16 @@ Right now this has very limited functionality</source>
</message>
<message>
<location filename="mainwindow.cpp" line="2419"/>
- <location filename="mainwindow.cpp" line="4553"/>
- <location filename="mainwindow.cpp" line="4577"/>
+ <location filename="mainwindow.cpp" line="4564"/>
+ <location filename="mainwindow.cpp" line="4588"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="mainwindow.cpp" line="2479"/>
- <location filename="mainwindow.cpp" line="3599"/>
- <location filename="mainwindow.cpp" line="3607"/>
- <location filename="mainwindow.cpp" line="4128"/>
+ <location filename="mainwindow.cpp" line="3610"/>
+ <location filename="mainwindow.cpp" line="3618"/>
+ <location filename="mainwindow.cpp" line="4139"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
@@ -2354,8 +2354,8 @@ Right now this has very limited functionality</source>
</message>
<message>
<location filename="mainwindow.cpp" line="2980"/>
- <location filename="mainwindow.cpp" line="3099"/>
- <location filename="mainwindow.cpp" line="3940"/>
+ <location filename="mainwindow.cpp" line="3110"/>
+ <location filename="mainwindow.cpp" line="3951"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
@@ -2367,7 +2367,7 @@ Please enter a name:</source>
</message>
<message>
<location filename="mainwindow.cpp" line="2990"/>
- <location filename="mainwindow.cpp" line="3109"/>
+ <location filename="mainwindow.cpp" line="3120"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
@@ -2388,435 +2388,435 @@ Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3100"/>
+ <location filename="mainwindow.cpp" line="3111"/>
<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="3141"/>
- <location filename="mainwindow.cpp" line="5121"/>
+ <location filename="mainwindow.cpp" line="3152"/>
+ <location filename="mainwindow.cpp" line="5132"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3142"/>
+ <location filename="mainwindow.cpp" line="3153"/>
<source>About to recursively delete:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3493"/>
+ <location filename="mainwindow.cpp" line="3504"/>
<source>Not logged in, endorsement information will be wrong</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3501"/>
+ <location filename="mainwindow.cpp" line="3512"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3502"/>
+ <location filename="mainwindow.cpp" line="3513"/>
<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="3522"/>
- <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="3533"/>
+ <location filename="mainwindow.cpp" line="4700"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3523"/>
+ <location filename="mainwindow.cpp" line="3534"/>
<source>I don&apos;t know a versioning scheme where %1 is newer than %2.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3599"/>
+ <location filename="mainwindow.cpp" line="3610"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3607"/>
+ <location filename="mainwindow.cpp" line="3618"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3672"/>
+ <location filename="mainwindow.cpp" line="3683"/>
<source>Export to csv</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3675"/>
+ <location filename="mainwindow.cpp" line="3686"/>
<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="3678"/>
+ <location filename="mainwindow.cpp" line="3689"/>
<source>Select what mods you want export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3679"/>
+ <location filename="mainwindow.cpp" line="3690"/>
<source>All installed mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3680"/>
+ <location filename="mainwindow.cpp" line="3691"/>
<source>Only active (checked) mods from your current profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3681"/>
+ <location filename="mainwindow.cpp" line="3692"/>
<source>All currently visible mods in the mod list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3702"/>
+ <location filename="mainwindow.cpp" line="3713"/>
<source>Choose what Columns to export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3705"/>
+ <location filename="mainwindow.cpp" line="3716"/>
<source>Mod_Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3707"/>
+ <location filename="mainwindow.cpp" line="3718"/>
<source>Mod_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3709"/>
+ <location filename="mainwindow.cpp" line="3720"/>
<source>Mod_Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3710"/>
+ <location filename="mainwindow.cpp" line="3721"/>
<source>Primary_Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3711"/>
+ <location filename="mainwindow.cpp" line="3722"/>
<source>Nexus_ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3712"/>
+ <location filename="mainwindow.cpp" line="3723"/>
<source>Mod_Nexus_URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3713"/>
+ <location filename="mainwindow.cpp" line="3724"/>
<source>Mod_Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3714"/>
+ <location filename="mainwindow.cpp" line="3725"/>
<source>Install_Date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3715"/>
+ <location filename="mainwindow.cpp" line="3726"/>
<source>Download_File_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3817"/>
+ <location filename="mainwindow.cpp" line="3828"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3836"/>
+ <location filename="mainwindow.cpp" line="3847"/>
<source>Open Game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3838"/>
+ <location filename="mainwindow.cpp" line="3849"/>
<source>Open MyGames folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3842"/>
+ <location filename="mainwindow.cpp" line="3853"/>
<source>Open Instance folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3844"/>
+ <location filename="mainwindow.cpp" line="3855"/>
<source>Open Mods folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3846"/>
+ <location filename="mainwindow.cpp" line="3857"/>
<source>Open Profile folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3848"/>
+ <location filename="mainwindow.cpp" line="3859"/>
<source>Open Downloads folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3852"/>
+ <location filename="mainwindow.cpp" line="3863"/>
<source>Open MO2 Install folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3854"/>
+ <location filename="mainwindow.cpp" line="3865"/>
<source>Open MO2 Plugins folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3856"/>
+ <location filename="mainwindow.cpp" line="3867"/>
<source>Open MO2 Logs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3865"/>
+ <location filename="mainwindow.cpp" line="3876"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3867"/>
+ <location filename="mainwindow.cpp" line="3878"/>
<source>Create empty mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3869"/>
+ <location filename="mainwindow.cpp" line="3880"/>
<source>Create Separator</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3873"/>
+ <location filename="mainwindow.cpp" line="3884"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3874"/>
+ <location filename="mainwindow.cpp" line="3885"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3876"/>
+ <location filename="mainwindow.cpp" line="3887"/>
<source>Check all for update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3880"/>
+ <location filename="mainwindow.cpp" line="3891"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3892"/>
- <location filename="mainwindow.cpp" line="3908"/>
+ <location filename="mainwindow.cpp" line="3903"/>
+ <location filename="mainwindow.cpp" line="3919"/>
<source>Send to</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3893"/>
- <location filename="mainwindow.cpp" line="3909"/>
+ <location filename="mainwindow.cpp" line="3904"/>
+ <location filename="mainwindow.cpp" line="3920"/>
<source>Top</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3894"/>
- <location filename="mainwindow.cpp" line="3910"/>
+ <location filename="mainwindow.cpp" line="3905"/>
+ <location filename="mainwindow.cpp" line="3921"/>
<source>Bottom</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3895"/>
- <location filename="mainwindow.cpp" line="3911"/>
+ <location filename="mainwindow.cpp" line="3906"/>
+ <location filename="mainwindow.cpp" line="3922"/>
<source>Priority...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3896"/>
+ <location filename="mainwindow.cpp" line="3907"/>
<source>Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3932"/>
+ <location filename="mainwindow.cpp" line="3943"/>
<source>All Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3939"/>
+ <location filename="mainwindow.cpp" line="3950"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3941"/>
+ <location filename="mainwindow.cpp" line="3952"/>
<source>Clear Overwrite...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3943"/>
- <location filename="mainwindow.cpp" line="4044"/>
+ <location filename="mainwindow.cpp" line="3954"/>
+ <location filename="mainwindow.cpp" line="4055"/>
<source>Open in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3945"/>
+ <location filename="mainwindow.cpp" line="3956"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3946"/>
+ <location filename="mainwindow.cpp" line="3957"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3949"/>
- <location filename="mainwindow.cpp" line="3968"/>
+ <location filename="mainwindow.cpp" line="3960"/>
+ <location filename="mainwindow.cpp" line="3979"/>
<source>Change Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3953"/>
- <location filename="mainwindow.cpp" line="3973"/>
+ <location filename="mainwindow.cpp" line="3964"/>
+ <location filename="mainwindow.cpp" line="3984"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3957"/>
+ <location filename="mainwindow.cpp" line="3968"/>
<source>Rename Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3958"/>
+ <location filename="mainwindow.cpp" line="3969"/>
<source>Remove Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3961"/>
+ <location filename="mainwindow.cpp" line="3972"/>
<source>Select Color...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3963"/>
+ <location filename="mainwindow.cpp" line="3974"/>
<source>Reset Color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3980"/>
+ <location filename="mainwindow.cpp" line="3991"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3985"/>
+ <location filename="mainwindow.cpp" line="3996"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3987"/>
+ <location filename="mainwindow.cpp" line="3998"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3993"/>
- <location filename="mainwindow.cpp" line="5232"/>
+ <location filename="mainwindow.cpp" line="4004"/>
+ <location filename="mainwindow.cpp" line="5243"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3994"/>
- <location filename="mainwindow.cpp" line="5233"/>
+ <location filename="mainwindow.cpp" line="4005"/>
+ <location filename="mainwindow.cpp" line="5244"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4000"/>
+ <location filename="mainwindow.cpp" line="4011"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4001"/>
+ <location filename="mainwindow.cpp" line="4012"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4002"/>
+ <location filename="mainwindow.cpp" line="4013"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4010"/>
+ <location filename="mainwindow.cpp" line="4021"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4013"/>
- <location filename="mainwindow.cpp" line="4017"/>
+ <location filename="mainwindow.cpp" line="4024"/>
+ <location filename="mainwindow.cpp" line="4028"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4014"/>
+ <location filename="mainwindow.cpp" line="4025"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4020"/>
+ <location filename="mainwindow.cpp" line="4031"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4031"/>
+ <location filename="mainwindow.cpp" line="4042"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4035"/>
+ <location filename="mainwindow.cpp" line="4046"/>
<source>Mark as converted/working</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4039"/>
+ <location filename="mainwindow.cpp" line="4050"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4041"/>
+ <location filename="mainwindow.cpp" line="4052"/>
<source>Visit web page</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4048"/>
+ <location filename="mainwindow.cpp" line="4059"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4055"/>
- <location filename="mainwindow.cpp" line="5280"/>
+ <location filename="mainwindow.cpp" line="4066"/>
+ <location filename="mainwindow.cpp" line="5291"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4057"/>
- <location filename="mainwindow.cpp" line="5282"/>
+ <location filename="mainwindow.cpp" line="4068"/>
+ <location filename="mainwindow.cpp" line="5293"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4088"/>
+ <location filename="mainwindow.cpp" line="4099"/>
<source>&lt;All&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4090"/>
+ <location filename="mainwindow.cpp" line="4101"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4125"/>
+ <location filename="mainwindow.cpp" line="4136"/>
<source>%1 more</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4129"/>
+ <location filename="mainwindow.cpp" line="4140"/>
<source>Are you sure you want to remove the following %n save(s)?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;&lt;br&gt;Removed saves will be sent to the Recycle Bin.</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2824,12 +2824,12 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4174"/>
+ <location filename="mainwindow.cpp" line="4185"/>
<source>Enable Mods...</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4189"/>
+ <location filename="mainwindow.cpp" line="4200"/>
<source>Delete %n save(s)</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -2837,22 +2837,22 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4231"/>
+ <location filename="mainwindow.cpp" line="4242"/>
<source>failed to remove %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4253"/>
+ <location filename="mainwindow.cpp" line="4264"/>
<source>failed to create %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4283"/>
+ <location filename="mainwindow.cpp" line="4294"/>
<source>Restarting MO</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4284"/>
+ <location filename="mainwindow.cpp" line="4295"/>
<source>Changing the managed game directory requires restarting MO.
Any pending downloads will be paused.
@@ -2860,335 +2860,335 @@ Click OK to restart MO now.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4304"/>
+ <location filename="mainwindow.cpp" line="4315"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4425"/>
+ <location filename="mainwindow.cpp" line="4436"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4431"/>
+ <location filename="mainwindow.cpp" line="4442"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4472"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Select binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4472"/>
+ <location filename="mainwindow.cpp" line="4483"/>
<source>Binary</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4498"/>
+ <location filename="mainwindow.cpp" line="4509"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4499"/>
+ <location filename="mainwindow.cpp" line="4510"/>
<source>Please enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4513"/>
+ <location filename="mainwindow.cpp" line="4524"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4513"/>
+ <location filename="mainwindow.cpp" line="4524"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4538"/>
- <location filename="mainwindow.cpp" line="4563"/>
+ <location filename="mainwindow.cpp" line="4549"/>
+ <location filename="mainwindow.cpp" line="4574"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4538"/>
+ <location filename="mainwindow.cpp" line="4549"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4541"/>
- <location filename="mainwindow.cpp" line="4566"/>
+ <location filename="mainwindow.cpp" line="4552"/>
+ <location filename="mainwindow.cpp" line="4577"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4541"/>
- <location filename="mainwindow.cpp" line="4566"/>
+ <location filename="mainwindow.cpp" line="4552"/>
+ <location filename="mainwindow.cpp" line="4577"/>
<source>Failed to remove &quot;%1&quot;. Maybe you lack the required file permissions?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4563"/>
+ <location filename="mainwindow.cpp" line="4574"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
- <location filename="mainwindow.cpp" line="5893"/>
+ <location filename="mainwindow.cpp" line="4618"/>
+ <location filename="mainwindow.cpp" line="5904"/>
<source>Set Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4607"/>
+ <location filename="mainwindow.cpp" line="4618"/>
<source>Set the priority of the selected plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4656"/>
+ <location filename="mainwindow.cpp" line="4667"/>
<source>file not found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4669"/>
+ <location filename="mainwindow.cpp" line="4680"/>
<source>failed to generate preview for %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="4700"/>
<source>Sorry, can&apos;t preview anything. This function currently does not support extracting from bsas.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4723"/>
+ <location filename="mainwindow.cpp" line="4734"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4761"/>
+ <location filename="mainwindow.cpp" line="4772"/>
<source>Open/Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4762"/>
+ <location filename="mainwindow.cpp" line="4773"/>
<source>Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4766"/>
+ <location filename="mainwindow.cpp" line="4777"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4772"/>
+ <location filename="mainwindow.cpp" line="4783"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4774"/>
+ <location filename="mainwindow.cpp" line="4785"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4780"/>
+ <location filename="mainwindow.cpp" line="4791"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4805"/>
+ <location filename="mainwindow.cpp" line="4816"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="4941"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4930"/>
+ <location filename="mainwindow.cpp" line="4941"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4965"/>
+ <location filename="mainwindow.cpp" line="4976"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4980"/>
- <location filename="mainwindow.cpp" line="5042"/>
+ <location filename="mainwindow.cpp" line="4991"/>
+ <location filename="mainwindow.cpp" line="5053"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4992"/>
- <location filename="mainwindow.cpp" line="5470"/>
+ <location filename="mainwindow.cpp" line="5003"/>
+ <location filename="mainwindow.cpp" line="5481"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4992"/>
+ <location filename="mainwindow.cpp" line="5003"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5024"/>
+ <location filename="mainwindow.cpp" line="5035"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5053"/>
+ <location filename="mainwindow.cpp" line="5064"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5099"/>
+ <location filename="mainwindow.cpp" line="5110"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5122"/>
+ <location filename="mainwindow.cpp" line="5133"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5169"/>
+ <location filename="mainwindow.cpp" line="5180"/>
<source>Edit Categories...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5170"/>
+ <location filename="mainwindow.cpp" line="5181"/>
<source>Deselect filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5221"/>
+ <location filename="mainwindow.cpp" line="5232"/>
<source>Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5237"/>
+ <location filename="mainwindow.cpp" line="5248"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5238"/>
+ <location filename="mainwindow.cpp" line="5249"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5259"/>
+ <location filename="mainwindow.cpp" line="5270"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5262"/>
+ <location filename="mainwindow.cpp" line="5273"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5266"/>
+ <location filename="mainwindow.cpp" line="5277"/>
<source>Open Origin in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5273"/>
+ <location filename="mainwindow.cpp" line="5284"/>
<source>Open Origin Info...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5416"/>
+ <location filename="mainwindow.cpp" line="5427"/>
<source>depends on missing &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5420"/>
+ <location filename="mainwindow.cpp" line="5431"/>
<source>incompatible with &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5446"/>
+ <location filename="mainwindow.cpp" line="5457"/>
<source>Please wait while LOOT is running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5543"/>
+ <location filename="mainwindow.cpp" line="5554"/>
<source>loot failed. Exit code was: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5565"/>
+ <location filename="mainwindow.cpp" line="5576"/>
<source>failed to start loot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5568"/>
+ <location filename="mainwindow.cpp" line="5579"/>
<source>failed to run loot: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5572"/>
+ <location filename="mainwindow.cpp" line="5583"/>
<source>Errors occured</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5619"/>
+ <location filename="mainwindow.cpp" line="5630"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5629"/>
+ <location filename="mainwindow.cpp" line="5640"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5642"/>
+ <location filename="mainwindow.cpp" line="5653"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5642"/>
+ <location filename="mainwindow.cpp" line="5653"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5663"/>
- <location filename="mainwindow.cpp" line="5685"/>
+ <location filename="mainwindow.cpp" line="5674"/>
+ <location filename="mainwindow.cpp" line="5696"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5664"/>
- <location filename="mainwindow.cpp" line="5686"/>
+ <location filename="mainwindow.cpp" line="5675"/>
+ <location filename="mainwindow.cpp" line="5697"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5675"/>
+ <location filename="mainwindow.cpp" line="5686"/>
<source>Backup of modlist created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5781"/>
+ <location filename="mainwindow.cpp" line="5792"/>
<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="5783"/>
+ <location filename="mainwindow.cpp" line="5794"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5784"/>
+ <location filename="mainwindow.cpp" line="5795"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5785"/>
+ <location filename="mainwindow.cpp" line="5796"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5893"/>
+ <location filename="mainwindow.cpp" line="5904"/>
<source>Set the priority of the selected mods</source>
<translation type="unfinished"></translation>
</message>
@@ -5298,7 +5298,6 @@ If the folder was still in use, restart MO and try again.</source>
<location filename="instancemanager.cpp" line="140"/>
<source>Enter a new name or select one from the suggested list:
(This is just the name of the Instance, not the game selection)</source>
- <oldsource>Enter a new name or select one from the suggested list:</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@@ -5472,7 +5471,6 @@ If the folder was still in use, restart MO and try again.</source>
<message>
<location filename="main.cpp" line="385"/>
<source>No game identified in &quot;%1&quot;. The directory is required to contain the game binary.</source>
- <oldsource>No game identified in &quot;%1&quot;. The directory is required to contain the game binary and its launcher.</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
@@ -5513,7 +5511,7 @@ If the folder was still in use, restart MO and try again.</source>
</message>
<message>
<location filename="mainwindow.cpp" line="1352"/>
- <location filename="mainwindow.cpp" line="4382"/>
+ <location filename="mainwindow.cpp" line="4393"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -5891,23 +5889,23 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="119"/>
- <source>Mod Contains selected Plugin</source>
+ <location filename="settingsdialog.ui" line="105"/>
+ <source>Reset Colors</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="126"/>
- <source>Plugin is Contained in selected Mod</source>
+ <location filename="settingsdialog.ui" line="112"/>
+ <source>Is overwritten (loose files)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="105"/>
- <source>Reset Colors</source>
+ <location filename="settingsdialog.ui" line="119"/>
+ <source>Mod Contains selected Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="112"/>
- <source>Is overwritten (loose files)</source>
+ <location filename="settingsdialog.ui" line="126"/>
+ <source>Plugin is Contained in selected Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -5922,6 +5920,11 @@ If you use pre-releases, never contact me directly by e-mail or via private mess
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="settingsdialog.ui" line="146"/>
+ <source>Show mod list separator colors on the scrollbar</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="159"/>
<location filename="settingsdialog.ui" line="162"/>
<source>Modify the categories available to arrange your mods.</source>
@@ -6255,22 +6258,6 @@ tl;dr-version: If Nexus-features don&apos;t work, insert the current version num
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingsdialog.ui" line="1035"/>
- <source>Enforces that inactive ESPs and ESMs are never loaded.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="1038"/>
- <source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
-I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="settingsdialog.ui" line="1042"/>
- <source>Hide inactive ESPs/ESMs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="settingsdialog.ui" line="996"/>
<source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
<translation type="unfinished"></translation>
@@ -6305,6 +6292,22 @@ If you disable this feature, MO will only display official DLCs this way. Please
<translation type="unfinished"></translation>
</message>
<message>
+ <location filename="settingsdialog.ui" line="1035"/>
+ <source>Enforces that inactive ESPs and ESMs are never loaded.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="1038"/>
+ <source>It seems that the Games occasionally load ESP or ESM files even if they haven&apos;t been activated as plugins.
+I don&apos;t yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="settingsdialog.ui" line="1042"/>
+ <source>Hide inactive ESPs/ESMs</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="settingsdialog.ui" line="1049"/>
<location filename="settingsdialog.ui" line="1052"/>
<source>Disable this to prevent the GUI from being locked when running an executable. This may result in abnormal behavior.</source>