summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2019-12-10 15:25:31 -0600
committerSilarn <jrim@rimpo.org>2019-12-10 15:25:31 -0600
commit2001f2675782ffe8f987daaed099ce3ee3a57a1c (patch)
tree933e15a5a2ff22887307c187f3bd5781a32fee7e /src
parent923e514b0f01153a7938f88dfe6206075581e5ea (diff)
Rework filter labels to separate bracket from translation
Diffstat (limited to 'src')
-rw-r--r--src/categories.cpp22
-rw-r--r--src/filterlist.cpp3
-rw-r--r--src/organizer_en.ts486
3 files changed, 257 insertions, 254 deletions
diff --git a/src/categories.cpp b/src/categories.cpp
index 3e005079..bb37483b 100644
--- a/src/categories.cpp
+++ b/src/categories.cpp
@@ -322,20 +322,22 @@ QString CategoryFactory::getCategoryName(unsigned int index) const
QString CategoryFactory::getSpecialCategoryName(SpecialCategories type) const
{
+ QString label;
switch (type)
{
- case Checked: return QObject::tr("<Active>");
- case UpdateAvailable: return QObject::tr("<Update available>");
- case HasCategory: return QObject::tr("<Has category>");
- case Conflict: return QObject::tr("<Conflicted>");
- case Endorsed: return QObject::tr("<Endorsed>");
- case Backup: return QObject::tr("<Has backup>");
- case Managed: return QObject::tr("<Managed>");
- case HasGameData: return QObject::tr("<Has valid game data>");
- case HasNexusID: return QObject::tr("<Has Nexus ID>");
- case Tracked: return QObject::tr("<Tracked on Nexus>");
+ case Checked: label = QObject::tr("Active"); break;
+ case UpdateAvailable: label = QObject::tr("Update available"); break;
+ case HasCategory: label = QObject::tr("Has category"); break;
+ case Conflict: label = QObject::tr("Conflicted"); break;
+ case Endorsed: label = QObject::tr("Endorsed"); break;
+ case Backup: label = QObject::tr("Has backup"); break;
+ case Managed: label = QObject::tr("Managed"); break;
+ case HasGameData: label = QObject::tr("Has valid game data"); break;
+ case HasNexusID: label = QObject::tr("Has Nexus ID"); break;
+ case Tracked: label = QObject::tr("Tracked on Nexus"); break;
default: return {};
}
+ return QString("<%1>").arg(label);
}
QString CategoryFactory::getCategoryNameByID(int id) const
diff --git a/src/filterlist.cpp b/src/filterlist.cpp
index b345d21d..6a85bcaa 100644
--- a/src/filterlist.cpp
+++ b/src/filterlist.cpp
@@ -239,8 +239,9 @@ QTreeWidgetItem* FilterList::addCriteriaItem(
void FilterList::addContentCriteria()
{
for (unsigned i = 0; i < ModInfo::NUM_CONTENT_TYPES; ++i) {
+ QString filterName = tr("Contains %1").arg(ModInfo::getContentTypeName(i));
addCriteriaItem(
- nullptr, tr("<Contains %1>").arg(ModInfo::getContentTypeName(i)),
+ nullptr, QString("<%1>").arg(filterName),
i, ModListSortProxy::TypeContent);
}
}
diff --git a/src/organizer_en.ts b/src/organizer_en.ts
index d462f1b6..ca82a996 100644
--- a/src/organizer_en.ts
+++ b/src/organizer_en.ts
@@ -1387,8 +1387,8 @@ Right now the only case I know of where this needs to be overwritten is for the
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="filterlist.cpp" line="243"/>
- <source>&lt;Contains %1&gt;</source>
+ <location filename="filterlist.cpp" line="242"/>
+ <source>Contains %1</source>
<translation type="unfinished"></translation>
</message>
</context>
@@ -1862,7 +1862,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="332"/>
<location filename="mainwindow.ui" line="839"/>
- <location filename="mainwindow.cpp" line="4695"/>
+ <location filename="mainwindow.cpp" line="4698"/>
<source>Create Backup</source>
<translation type="unfinished"></translation>
</message>
@@ -2038,8 +2038,8 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="1061"/>
<location filename="mainwindow.ui" line="1207"/>
- <location filename="mainwindow.cpp" line="4568"/>
- <location filename="mainwindow.cpp" line="5545"/>
+ <location filename="mainwindow.cpp" line="4571"/>
+ <location filename="mainwindow.cpp" line="5548"/>
<source>Refresh</source>
<translation type="unfinished"></translation>
</message>
@@ -2324,7 +2324,7 @@ p, li { white-space: pre-wrap; }
<message>
<location filename="mainwindow.ui" line="1659"/>
<location filename="mainwindow.ui" line="1662"/>
- <location filename="mainwindow.cpp" line="5571"/>
+ <location filename="mainwindow.cpp" line="5574"/>
<source>Endorse Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
@@ -2445,8 +2445,8 @@ Error: %1</source>
</message>
<message>
<location filename="mainwindow.cpp" line="1065"/>
- <location filename="mainwindow.cpp" line="4705"/>
- <location filename="mainwindow.cpp" line="4709"/>
+ <location filename="mainwindow.cpp" line="4708"/>
+ <location filename="mainwindow.cpp" line="4712"/>
<source>Endorse</source>
<translation type="unfinished"></translation>
</message>
@@ -2571,645 +2571,645 @@ Error: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2261"/>
+ <location filename="mainwindow.cpp" line="2264"/>
<source>Notice: Your current MO version (%1) is lower than the previously used one (%2). The GUI may not downgrade gracefully, so you may experience oddities. However, there should be no serious issues.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2337"/>
+ <location filename="mainwindow.cpp" line="2340"/>
<source>Choose Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2338"/>
+ <location filename="mainwindow.cpp" line="2341"/>
<source>Mod Archive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2432"/>
+ <location filename="mainwindow.cpp" line="2435"/>
<source>Start Tutorial?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2433"/>
+ <location filename="mainwindow.cpp" line="2436"/>
<source>You&apos;re about to start a tutorial. For technical reasons it&apos;s not possible to end the tutorial early. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2639"/>
+ <location filename="mainwindow.cpp" line="2642"/>
<source>failed to change origin name: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2663"/>
+ <location filename="mainwindow.cpp" line="2666"/>
<source>failed to move &quot;%1&quot; from mod &quot;%2&quot; to &quot;%3&quot;: %4</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2676"/>
+ <location filename="mainwindow.cpp" line="2679"/>
<source>failed to rename mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2689"/>
+ <location filename="mainwindow.cpp" line="2692"/>
<source>Overwrite?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2690"/>
+ <location filename="mainwindow.cpp" line="2693"/>
<source>This will replace the existing mod &quot;%1&quot;. Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2693"/>
+ <location filename="mainwindow.cpp" line="2696"/>
<source>failed to remove mod &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2697"/>
- <location filename="mainwindow.cpp" line="5215"/>
- <location filename="mainwindow.cpp" line="5239"/>
+ <location filename="mainwindow.cpp" line="2700"/>
+ <location filename="mainwindow.cpp" line="5218"/>
+ <location filename="mainwindow.cpp" line="5242"/>
<source>failed to rename &quot;%1&quot; to &quot;%2&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2785"/>
- <location filename="mainwindow.cpp" line="4271"/>
- <location filename="mainwindow.cpp" line="4279"/>
- <location filename="mainwindow.cpp" line="4805"/>
+ <location filename="mainwindow.cpp" line="2788"/>
+ <location filename="mainwindow.cpp" line="4274"/>
+ <location filename="mainwindow.cpp" line="4282"/>
+ <location filename="mainwindow.cpp" line="4808"/>
<source>Confirm</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2786"/>
+ <location filename="mainwindow.cpp" line="2789"/>
<source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2801"/>
+ <location filename="mainwindow.cpp" line="2804"/>
<source>failed to remove mod: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
<location filename="mainwindow.cpp" line="2836"/>
- <location filename="mainwindow.cpp" line="2846"/>
+ <location filename="mainwindow.cpp" line="2839"/>
+ <location filename="mainwindow.cpp" line="2849"/>
<source>Failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2833"/>
+ <location filename="mainwindow.cpp" line="2836"/>
<source>Installation file no longer exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2837"/>
+ <location filename="mainwindow.cpp" line="2840"/>
<source>Mods installed with old versions of MO can&apos;t be reinstalled in this way.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2847"/>
+ <location filename="mainwindow.cpp" line="2850"/>
<source>Failed to create backup.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2875"/>
+ <location filename="mainwindow.cpp" line="2878"/>
<source>Endorsing multiple mods will take a while. Please wait...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2911"/>
+ <location filename="mainwindow.cpp" line="2914"/>
<source>Unendorsing multiple mods will take a while. Please wait...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="2988"/>
+ <location filename="mainwindow.cpp" line="2991"/>
<source>Failed to display overwrite dialog: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3179"/>
+ <location filename="mainwindow.cpp" line="3182"/>
<source>Opening Nexus Links</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3180"/>
+ <location filename="mainwindow.cpp" line="3183"/>
<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="3207"/>
+ <location filename="mainwindow.cpp" line="3210"/>
<source>Nexus ID for this mod is unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3218"/>
+ <location filename="mainwindow.cpp" line="3221"/>
<source>Opening Web Pages</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3219"/>
+ <location filename="mainwindow.cpp" line="3222"/>
<source>You are trying to open %1 Web Pages. Are you sure you want to do this?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3425"/>
+ <location filename="mainwindow.cpp" line="3428"/>
<source>&lt;table cellspacing=&quot;5&quot;&gt;&lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;All&lt;/th&gt;&lt;th&gt;Visible&lt;/th&gt;&lt;tr&gt;&lt;td&gt;Enabled mods:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%1 / %2&lt;/td&gt;&lt;td align=right&gt;%3 / %4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Unmanaged/DLCs:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%5&lt;/td&gt;&lt;td align=right&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Mod backups:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%7&lt;/td&gt;&lt;td align=right&gt;%8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Separators:&amp;emsp;&lt;/td&gt;&lt;td align=right&gt;%9&lt;/td&gt;&lt;td align=right&gt;%10&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3480"/>
+ <location filename="mainwindow.cpp" line="3483"/>
<source>&lt;table cellspacing=&quot;6&quot;&gt;&lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;Active &lt;/th&gt;&lt;th&gt;Total&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;All plugins:&lt;/td&gt;&lt;td align=right&gt;%1 &lt;/td&gt;&lt;td align=right&gt;%2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESMs:&lt;/td&gt;&lt;td align=right&gt;%3 &lt;/td&gt;&lt;td align=right&gt;%4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESPs:&lt;/td&gt;&lt;td align=right&gt;%7 &lt;/td&gt;&lt;td align=right&gt;%8&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESMs+ESPs:&lt;/td&gt;&lt;td align=right&gt;%9 &lt;/td&gt;&lt;td align=right&gt;%10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ESLs:&lt;/td&gt;&lt;td align=right&gt;%5 &lt;/td&gt;&lt;td align=right&gt;%6&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3512"/>
- <location filename="mainwindow.cpp" line="3656"/>
- <location filename="mainwindow.cpp" line="4630"/>
+ <location filename="mainwindow.cpp" line="3515"/>
+ <location filename="mainwindow.cpp" line="3659"/>
+ <location filename="mainwindow.cpp" line="4633"/>
<source>Create Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3513"/>
+ <location filename="mainwindow.cpp" line="3516"/>
<source>This will create an empty mod.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3522"/>
- <location filename="mainwindow.cpp" line="3666"/>
+ <location filename="mainwindow.cpp" line="3525"/>
+ <location filename="mainwindow.cpp" line="3669"/>
<source>A mod with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3550"/>
+ <location filename="mainwindow.cpp" line="3553"/>
<source>Create Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3551"/>
+ <location filename="mainwindow.cpp" line="3554"/>
<source>This will create a new separator.
Please enter a name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3558"/>
+ <location filename="mainwindow.cpp" line="3561"/>
<source>A separator with this name already exists</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3657"/>
+ <location filename="mainwindow.cpp" line="3660"/>
<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="3730"/>
+ <location filename="mainwindow.cpp" line="3733"/>
<source>Move successful.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3752"/>
- <location filename="mainwindow.cpp" line="6202"/>
+ <location filename="mainwindow.cpp" line="3755"/>
+ <location filename="mainwindow.cpp" line="6205"/>
<source>Are you sure?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="3753"/>
+ <location filename="mainwindow.cpp" line="3756"/>
<source>About to recursively delete:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4153"/>
+ <location filename="mainwindow.cpp" line="4156"/>
<source>Continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4154"/>
+ <location filename="mainwindow.cpp" line="4157"/>
<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="4174"/>
+ <location filename="mainwindow.cpp" line="4177"/>
<source>Sorry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4175"/>
+ <location filename="mainwindow.cpp" line="4178"/>
<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="4271"/>
+ <location filename="mainwindow.cpp" line="4274"/>
<source>Really enable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4279"/>
+ <location filename="mainwindow.cpp" line="4282"/>
<source>Really disable all visible mods?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4361"/>
+ <location filename="mainwindow.cpp" line="4364"/>
<source>Export to csv</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4364"/>
+ <location filename="mainwindow.cpp" line="4367"/>
<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="4367"/>
+ <location filename="mainwindow.cpp" line="4370"/>
<source>Select what mods you want export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4368"/>
+ <location filename="mainwindow.cpp" line="4371"/>
<source>All installed mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4369"/>
+ <location filename="mainwindow.cpp" line="4372"/>
<source>Only active (checked) mods from your current profile</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4370"/>
+ <location filename="mainwindow.cpp" line="4373"/>
<source>All currently visible mods in the mod list</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4391"/>
+ <location filename="mainwindow.cpp" line="4394"/>
<source>Choose what Columns to export:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4394"/>
+ <location filename="mainwindow.cpp" line="4397"/>
<source>Mod_Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4396"/>
+ <location filename="mainwindow.cpp" line="4399"/>
<source>Mod_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4398"/>
+ <location filename="mainwindow.cpp" line="4401"/>
<source>Notes_column</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4399"/>
+ <location filename="mainwindow.cpp" line="4402"/>
<source>Mod_Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4401"/>
+ <location filename="mainwindow.cpp" line="4404"/>
<source>Primary_Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4402"/>
+ <location filename="mainwindow.cpp" line="4405"/>
<source>Nexus_ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4403"/>
+ <location filename="mainwindow.cpp" line="4406"/>
<source>Mod_Nexus_URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4404"/>
+ <location filename="mainwindow.cpp" line="4407"/>
<source>Mod_Version</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4405"/>
+ <location filename="mainwindow.cpp" line="4408"/>
<source>Install_Date</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4406"/>
+ <location filename="mainwindow.cpp" line="4409"/>
<source>Download_File_Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4514"/>
+ <location filename="mainwindow.cpp" line="4517"/>
<source>export failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4533"/>
+ <location filename="mainwindow.cpp" line="4536"/>
<source>Open Game folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4534"/>
+ <location filename="mainwindow.cpp" line="4537"/>
<source>Open MyGames folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4535"/>
+ <location filename="mainwindow.cpp" line="4538"/>
<source>Open INIs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4540"/>
+ <location filename="mainwindow.cpp" line="4543"/>
<source>Open Instance folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4541"/>
+ <location filename="mainwindow.cpp" line="4544"/>
<source>Open Mods folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4542"/>
+ <location filename="mainwindow.cpp" line="4545"/>
<source>Open Profile folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4543"/>
+ <location filename="mainwindow.cpp" line="4546"/>
<source>Open Downloads folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4549"/>
+ <location filename="mainwindow.cpp" line="4552"/>
<source>Open MO2 Install folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4550"/>
+ <location filename="mainwindow.cpp" line="4553"/>
<source>Open MO2 Plugins folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4551"/>
+ <location filename="mainwindow.cpp" line="4554"/>
<source>Open MO2 Stylesheets folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4552"/>
+ <location filename="mainwindow.cpp" line="4555"/>
<source>Open MO2 Logs folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4559"/>
+ <location filename="mainwindow.cpp" line="4562"/>
<source>Install Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4560"/>
+ <location filename="mainwindow.cpp" line="4563"/>
<source>Create empty mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4561"/>
+ <location filename="mainwindow.cpp" line="4564"/>
<source>Create Separator</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4565"/>
+ <location filename="mainwindow.cpp" line="4568"/>
<source>Enable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4566"/>
+ <location filename="mainwindow.cpp" line="4569"/>
<source>Disable all visible</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4567"/>
+ <location filename="mainwindow.cpp" line="4570"/>
<source>Check for updates</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4569"/>
+ <location filename="mainwindow.cpp" line="4572"/>
<source>Export to csv...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4578"/>
- <location filename="mainwindow.cpp" line="4594"/>
+ <location filename="mainwindow.cpp" line="4581"/>
+ <location filename="mainwindow.cpp" line="4597"/>
<source>Send to</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4579"/>
- <location filename="mainwindow.cpp" line="4595"/>
+ <location filename="mainwindow.cpp" line="4582"/>
+ <location filename="mainwindow.cpp" line="4598"/>
<source>Top</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4580"/>
- <location filename="mainwindow.cpp" line="4596"/>
+ <location filename="mainwindow.cpp" line="4583"/>
+ <location filename="mainwindow.cpp" line="4599"/>
<source>Bottom</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4581"/>
- <location filename="mainwindow.cpp" line="4597"/>
+ <location filename="mainwindow.cpp" line="4584"/>
+ <location filename="mainwindow.cpp" line="4600"/>
<source>Priority...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4582"/>
+ <location filename="mainwindow.cpp" line="4585"/>
<source>Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4621"/>
+ <location filename="mainwindow.cpp" line="4624"/>
<source>All Mods</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4629"/>
+ <location filename="mainwindow.cpp" line="4632"/>
<source>Sync to Mods...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4631"/>
+ <location filename="mainwindow.cpp" line="4634"/>
<source>Move content to Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4632"/>
+ <location filename="mainwindow.cpp" line="4635"/>
<source>Clear Overwrite...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4634"/>
- <location filename="mainwindow.cpp" line="4757"/>
+ <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.cpp" line="4760"/>
<source>Open in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4636"/>
+ <location filename="mainwindow.cpp" line="4639"/>
<source>Restore Backup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4637"/>
+ <location filename="mainwindow.cpp" line="4640"/>
<source>Remove Backup...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4640"/>
- <location filename="mainwindow.cpp" line="4659"/>
+ <location filename="mainwindow.cpp" line="4643"/>
+ <location filename="mainwindow.cpp" line="4662"/>
<source>Change Categories</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4644"/>
- <location filename="mainwindow.cpp" line="4664"/>
+ <location filename="mainwindow.cpp" line="4647"/>
+ <location filename="mainwindow.cpp" line="4667"/>
<source>Primary Category</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4648"/>
+ <location filename="mainwindow.cpp" line="4651"/>
<source>Rename Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4649"/>
+ <location filename="mainwindow.cpp" line="4652"/>
<source>Remove Separator...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4652"/>
+ <location filename="mainwindow.cpp" line="4655"/>
<source>Select Color...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4654"/>
+ <location filename="mainwindow.cpp" line="4657"/>
<source>Reset Color</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4671"/>
+ <location filename="mainwindow.cpp" line="4674"/>
<source>Change versioning scheme</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4675"/>
+ <location filename="mainwindow.cpp" line="4678"/>
<source>Force-check updates</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4677"/>
+ <location filename="mainwindow.cpp" line="4680"/>
<source>Un-ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4680"/>
+ <location filename="mainwindow.cpp" line="4683"/>
<source>Ignore update</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4685"/>
- <location filename="mainwindow.cpp" line="6360"/>
+ <location filename="mainwindow.cpp" line="4688"/>
+ <location filename="mainwindow.cpp" line="6363"/>
<source>Enable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4686"/>
- <location filename="mainwindow.cpp" line="6361"/>
+ <location filename="mainwindow.cpp" line="4689"/>
+ <location filename="mainwindow.cpp" line="6364"/>
<source>Disable selected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4692"/>
+ <location filename="mainwindow.cpp" line="4695"/>
<source>Rename Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4693"/>
+ <location filename="mainwindow.cpp" line="4696"/>
<source>Reinstall Mod</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4694"/>
+ <location filename="mainwindow.cpp" line="4697"/>
<source>Remove Mod...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4702"/>
+ <location filename="mainwindow.cpp" line="4705"/>
<source>Un-Endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4706"/>
+ <location filename="mainwindow.cpp" line="4709"/>
<source>Won&apos;t endorse</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4712"/>
+ <location filename="mainwindow.cpp" line="4715"/>
<source>Endorsement state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4722"/>
+ <location filename="mainwindow.cpp" line="4725"/>
<source>Start tracking</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4725"/>
+ <location filename="mainwindow.cpp" line="4728"/>
<source>Stop tracking</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4728"/>
+ <location filename="mainwindow.cpp" line="4731"/>
<source>Tracked state unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4739"/>
+ <location filename="mainwindow.cpp" line="4742"/>
<source>Ignore missing data</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4743"/>
+ <location filename="mainwindow.cpp" line="4746"/>
<source>Mark as converted/working</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4747"/>
+ <location filename="mainwindow.cpp" line="4750"/>
<source>Visit on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4753"/>
+ <location filename="mainwindow.cpp" line="4756"/>
<source>Visit on %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4761"/>
+ <location filename="mainwindow.cpp" line="4764"/>
<source>Information...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4768"/>
- <location filename="mainwindow.cpp" line="6413"/>
+ <location filename="mainwindow.cpp" line="4771"/>
+ <location filename="mainwindow.cpp" line="6416"/>
<source>Exception: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4770"/>
- <location filename="mainwindow.cpp" line="6415"/>
+ <location filename="mainwindow.cpp" line="4773"/>
+ <location filename="mainwindow.cpp" line="6418"/>
<source>Unknown exception</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4802"/>
+ <location filename="mainwindow.cpp" line="4805"/>
<source>%1 more</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4806"/>
+ <location filename="mainwindow.cpp" line="4809"/>
<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>
@@ -3217,12 +3217,12 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4851"/>
+ <location filename="mainwindow.cpp" line="4854"/>
<source>Enable Mods...</source>
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
- <location filename="mainwindow.cpp" line="4866"/>
+ <location filename="mainwindow.cpp" line="4869"/>
<source>Delete %n save(s)</source>
<translation type="unfinished">
<numerusform></numerusform>
@@ -3230,335 +3230,335 @@ You can also use online editors and converters instead.</source>
</translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4946"/>
+ <location filename="mainwindow.cpp" line="4949"/>
<source>Restart Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4948"/>
+ <location filename="mainwindow.cpp" line="4951"/>
<source>Mod Organizer must restart to finish configuration changes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4950"/>
+ <location filename="mainwindow.cpp" line="4953"/>
<source>Restart</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4951"/>
+ <location filename="mainwindow.cpp" line="4954"/>
<source>Continue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4951"/>
+ <location filename="mainwindow.cpp" line="4954"/>
<source>Some things might be weird.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="4972"/>
+ <location filename="mainwindow.cpp" line="4975"/>
<source>Can&apos;t change download directory while downloads are in progress!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5129"/>
+ <location filename="mainwindow.cpp" line="5132"/>
<source>failed to write to file %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5135"/>
+ <location filename="mainwindow.cpp" line="5138"/>
<source>%1 written</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5153"/>
+ <location filename="mainwindow.cpp" line="5156"/>
<source>Enter Name</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5154"/>
+ <location filename="mainwindow.cpp" line="5157"/>
<source>Enter a name for the executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5176"/>
+ <location filename="mainwindow.cpp" line="5179"/>
<source>Not an executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5177"/>
+ <location filename="mainwindow.cpp" line="5180"/>
<source>This is not a recognized executable.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5200"/>
- <location filename="mainwindow.cpp" line="5225"/>
+ <location filename="mainwindow.cpp" line="5203"/>
+ <location filename="mainwindow.cpp" line="5228"/>
<source>Replace file?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5200"/>
+ <location filename="mainwindow.cpp" line="5203"/>
<source>There already is a hidden version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5203"/>
- <location filename="mainwindow.cpp" line="5228"/>
+ <location filename="mainwindow.cpp" line="5206"/>
+ <location filename="mainwindow.cpp" line="5231"/>
<source>File operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5203"/>
- <location filename="mainwindow.cpp" line="5228"/>
+ <location filename="mainwindow.cpp" line="5206"/>
+ <location filename="mainwindow.cpp" line="5231"/>
<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="5225"/>
+ <location filename="mainwindow.cpp" line="5228"/>
<source>There already is a visible version of this file. Replace it?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5269"/>
- <location filename="mainwindow.cpp" line="6752"/>
+ <location filename="mainwindow.cpp" line="5272"/>
+ <location filename="mainwindow.cpp" line="6755"/>
<source>Set Priority</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5269"/>
+ <location filename="mainwindow.cpp" line="5272"/>
<source>Set the priority of the selected plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5436"/>
+ <location filename="mainwindow.cpp" line="5439"/>
<source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5471"/>
+ <location filename="mainwindow.cpp" line="5474"/>
<source>&amp;Execute</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5472"/>
+ <location filename="mainwindow.cpp" line="5475"/>
<source>Execute with &amp;VFS</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5474"/>
+ <location filename="mainwindow.cpp" line="5477"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5475"/>
+ <location filename="mainwindow.cpp" line="5478"/>
<source>Open with &amp;VFS</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5516"/>
+ <location filename="mainwindow.cpp" line="5519"/>
<source>&amp;Add as Executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5479"/>
+ <location filename="mainwindow.cpp" line="5482"/>
<source>Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5529"/>
+ <location filename="mainwindow.cpp" line="5532"/>
<source>Un-Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5531"/>
+ <location filename="mainwindow.cpp" line="5534"/>
<source>Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5544"/>
+ <location filename="mainwindow.cpp" line="5547"/>
<source>Write To File...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5572"/>
+ <location filename="mainwindow.cpp" line="5575"/>
<source>Do you want to endorse Mod Organizer on %1 now?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5586"/>
+ <location filename="mainwindow.cpp" line="5589"/>
<source>Abstain from Endorsing Mod Organizer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5587"/>
+ <location filename="mainwindow.cpp" line="5590"/>
<source>Are you sure you want to abstain from endorsing Mod Organizer 2?
You will have to visit the mod page on the %1 Nexus site to change your mind.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5678"/>
+ <location filename="mainwindow.cpp" line="5681"/>
<source>Thank you for endorsing MO2! :)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5684"/>
+ <location filename="mainwindow.cpp" line="5687"/>
<source>Please reconsider endorsing MO2 on Nexus!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5948"/>
+ <location filename="mainwindow.cpp" line="5951"/>
<source>Thank you!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="5948"/>
+ <location filename="mainwindow.cpp" line="5951"/>
<source>Thank you for your endorsement!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6040"/>
+ <location filename="mainwindow.cpp" line="6043"/>
<source>Mod ID %1 no longer seems to be available on Nexus.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6042"/>
+ <location filename="mainwindow.cpp" line="6045"/>
<source>Request to Nexus failed: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6058"/>
- <location filename="mainwindow.cpp" line="6120"/>
+ <location filename="mainwindow.cpp" line="6061"/>
+ <location filename="mainwindow.cpp" line="6123"/>
<source>failed to read %1: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6070"/>
+ <location filename="mainwindow.cpp" line="6073"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6070"/>
+ <location filename="mainwindow.cpp" line="6073"/>
<source>failed to extract %1 (errorcode %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6102"/>
+ <location filename="mainwindow.cpp" line="6105"/>
<source>Extract BSA</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6131"/>
+ <location filename="mainwindow.cpp" line="6134"/>
<source>This archive contains invalid hashes. Some files may be broken.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6177"/>
+ <location filename="mainwindow.cpp" line="6180"/>
<source>Extract...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6202"/>
+ <location filename="mainwindow.cpp" line="6205"/>
<source>This will restart MO, continue?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6280"/>
+ <location filename="mainwindow.cpp" line="6283"/>
<source>&lt;Multiple&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6344"/>
+ <location filename="mainwindow.cpp" line="6347"/>
<source>Remove &apos;%1&apos; from the toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6365"/>
+ <location filename="mainwindow.cpp" line="6368"/>
<source>Enable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6366"/>
+ <location filename="mainwindow.cpp" line="6369"/>
<source>Disable all</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6387"/>
+ <location filename="mainwindow.cpp" line="6390"/>
<source>Unlock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6390"/>
+ <location filename="mainwindow.cpp" line="6393"/>
<source>Lock load order</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6400"/>
+ <location filename="mainwindow.cpp" line="6403"/>
<source>Open Origin in Explorer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6405"/>
+ <location filename="mainwindow.cpp" line="6408"/>
<source>Open Origin Info...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6513"/>
+ <location filename="mainwindow.cpp" line="6516"/>
<source>Backup of load order created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6523"/>
+ <location filename="mainwindow.cpp" line="6526"/>
<source>Choose backup to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6536"/>
+ <location filename="mainwindow.cpp" line="6539"/>
<source>No Backups</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6536"/>
+ <location filename="mainwindow.cpp" line="6539"/>
<source>There are no backups to restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6561"/>
- <location filename="mainwindow.cpp" line="6586"/>
+ <location filename="mainwindow.cpp" line="6564"/>
+ <location filename="mainwindow.cpp" line="6589"/>
<source>Restore failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6562"/>
- <location filename="mainwindow.cpp" line="6587"/>
+ <location filename="mainwindow.cpp" line="6565"/>
+ <location filename="mainwindow.cpp" line="6590"/>
<source>Failed to restore the backup. Errorcode: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6574"/>
+ <location filename="mainwindow.cpp" line="6577"/>
<source>Backup of mod list created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6657"/>
+ <location filename="mainwindow.cpp" line="6660"/>
<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="6659"/>
+ <location filename="mainwindow.cpp" line="6662"/>
<source>Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6660"/>
+ <location filename="mainwindow.cpp" line="6663"/>
<source>Rename new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6661"/>
+ <location filename="mainwindow.cpp" line="6664"/>
<source>Ignore file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="mainwindow.cpp" line="6752"/>
+ <location filename="mainwindow.cpp" line="6755"/>
<source>Set the priority of the selected mods</source>
<translation type="unfinished"></translation>
</message>
@@ -5611,62 +5611,62 @@ p, li { white-space: pre-wrap; }
<location filename="categories.cpp" line="272"/>
<location filename="categories.cpp" line="307"/>
<location filename="categories.cpp" line="317"/>
- <location filename="categories.cpp" line="360"/>
+ <location filename="categories.cpp" line="362"/>
<source>invalid category index: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="categories.cpp" line="327"/>
- <source>&lt;Active&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="categories.cpp" line="328"/>
- <source>&lt;Update available&gt;</source>
+ <source>Active</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="329"/>
- <source>&lt;Has category&gt;</source>
+ <source>Update available</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="330"/>
- <source>&lt;Conflicted&gt;</source>
+ <source>Has category</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="331"/>
- <source>&lt;Endorsed&gt;</source>
+ <source>Conflicted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="332"/>
- <source>&lt;Has backup&gt;</source>
+ <source>Endorsed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="333"/>
- <source>&lt;Managed&gt;</source>
+ <source>Has backup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="334"/>
- <source>&lt;Has valid game data&gt;</source>
+ <source>Managed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="335"/>
- <source>&lt;Has Nexus ID&gt;</source>
+ <source>Has valid game data</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="categories.cpp" line="336"/>
- <source>&lt;Tracked on Nexus&gt;</source>
+ <source>Has Nexus ID</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="categories.cpp" line="337"/>
+ <source>Tracked on Nexus</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="categories.cpp" line="371"/>
+ <location filename="categories.cpp" line="373"/>
<source>invalid category id: %1</source>
<translation type="unfinished"></translation>
</message>
@@ -6115,7 +6115,7 @@ If the folder was still in use, restart MO and try again.</source>
</message>
<message>
<location filename="mainwindow.cpp" line="1795"/>
- <location filename="mainwindow.cpp" line="5084"/>
+ <location filename="mainwindow.cpp" line="5087"/>
<source>&lt;Manage...&gt;</source>
<translation type="unfinished"></translation>
</message>