diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-09 12:53:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-09 12:53:29 -0500 |
| commit | b9fd1092c62f728ff55879ff98be2cddbb2f0610 (patch) | |
| tree | 10f2c976fa355171230ea4f978f2cb6af7d9d0f5 /src | |
| parent | 292cee7f6a2de28d13d7a3c32e668dfab41ab5ac (diff) | |
| parent | ea6c793ce6047e0c958c13b3743976bcf953bf1a (diff) | |
Merge pull request #933 from isanae/conflicts-position-on-reset
Move the conflicts column when resetting geometries
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 45 | ||||
| -rw-r--r-- | src/mainwindow.h | 1 | ||||
| -rw-r--r-- | src/organizer_en.ts | 516 |
3 files changed, 281 insertions, 281 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index eaecfca1..44011e5f 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -528,6 +528,8 @@ void MainWindow::setupModList() ui->modList->header()->resizeSection(column, sectionSize); } } else { + fixConflictsColumn(); + // hide these columns by default ui->modList->header()->setSectionHidden(ModList::COL_CONTENT, true); ui->modList->header()->setSectionHidden(ModList::COL_MODID, true); @@ -549,6 +551,25 @@ void MainWindow::setupModList() ui->modList->installEventFilter(m_OrganizerCore.modList()); } +void MainWindow::fixConflictsColumn() +{ + // the conflicts column should sit to the left of the flags column, but its + // enum is at the end to preserve compatibility + // + // this is called when updating from 2.2.1, or when there is no state saved + // for the mod list, so it's free to do whatever it wants with the column + + const auto flags = ui->modList->header()->visualIndex(ModList::COL_FLAGS); + const auto conflicts = ui->modList->header()->visualIndex(ModList::COL_CONFLICTFLAGS); + + // this can be called twice when migrating from 2.2.1: once in + // processUpdates() and again in setupModList() because the geometry names in + // the ini have changed; to a simple check to see if the column has been moved + if (conflicts > flags) { + ui->modList->header()->moveSection(conflicts, flags); + } +} + void MainWindow::resetActionIcons() { // this is a bit of a hack @@ -2258,29 +2279,7 @@ void MainWindow::processUpdates() { } if (lastVersion < QVersionNumber(2, 2, 2)) { - int pos1 = ui->modList->columnViewportPosition(ModList::COL_FLAGS); - int pos2 = 0; - if (pos1) { - ui->modList->showColumn(ModList::COL_CONFLICTFLAGS); - pos2 = ui->modList->columnViewportPosition(ModList::COL_CONFLICTFLAGS); - ui->modList->header()->moveSection( - ui->modList->header()->visualIndexAt(pos2), - ui->modList->header()->visualIndexAt(pos1) - ); - } - } - } else { - { // Move conflict flags - int pos1 = ui->modList->columnViewportPosition(ModList::COL_FLAGS); - int pos2 = 0; - if (pos1) { - ui->modList->showColumn(ModList::COL_CONFLICTFLAGS); - pos2 = ui->modList->columnViewportPosition(ModList::COL_CONFLICTFLAGS); - ui->modList->header()->moveSection( - ui->modList->header()->visualIndexAt(pos2), - ui->modList->header()->visualIndexAt(pos1) - ); - } + fixConflictsColumn(); } } diff --git a/src/mainwindow.h b/src/mainwindow.h index 8f000983..0d7edefd 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -665,6 +665,7 @@ private slots: // ui slots void storeSettings(); void readSettings(); void setupModList(); + void fixConflictsColumn(); }; #endif // MAINWINDOW_H diff --git a/src/organizer_en.ts b/src/organizer_en.ts index e9578369..73e9f547 100644 --- a/src/organizer_en.ts +++ b/src/organizer_en.ts @@ -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="4722"/> + <location filename="mainwindow.cpp" line="4721"/> <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="4595"/> - <location filename="mainwindow.cpp" line="5572"/> + <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="5571"/> <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="5598"/> + <location filename="mainwindow.cpp" line="5597"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -2422,794 +2422,794 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="630"/> + <location filename="mainwindow.cpp" line="651"/> <source>Crash on exit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="631"/> + <location filename="mainwindow.cpp" line="652"/> <source>MO crashed while exiting. Some settings may not be saved. Error: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="981"/> <source>There are notifications to read</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="979"/> + <location filename="mainwindow.cpp" line="1000"/> <source>There are no notifications</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1066"/> - <location filename="mainwindow.cpp" line="4732"/> - <location filename="mainwindow.cpp" line="4736"/> + <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="4731"/> + <location filename="mainwindow.cpp" line="4735"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1070"/> + <location filename="mainwindow.cpp" line="1091"/> <source>Won't Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1087"/> + <location filename="mainwindow.cpp" line="1108"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1091"/> + <location filename="mainwindow.cpp" line="1112"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1095"/> + <location filename="mainwindow.cpp" line="1116"/> <source>Chat on Discord</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1099"/> + <location filename="mainwindow.cpp" line="1120"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1103"/> + <location filename="mainwindow.cpp" line="1124"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1142"/> + <location filename="mainwindow.cpp" line="1163"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1143"/> + <location filename="mainwindow.cpp" line="1164"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1202"/> + <location filename="mainwindow.cpp" line="1223"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1203"/> + <location filename="mainwindow.cpp" line="1224"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1232"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1266"/> + <location filename="mainwindow.cpp" line="1287"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1267"/> + <location filename="mainwindow.cpp" line="1288"/> <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1338"/> + <location filename="mainwindow.cpp" line="1359"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1339"/> + <location filename="mainwindow.cpp" line="1360"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1450"/> + <location filename="mainwindow.cpp" line="1471"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1452"/> + <location filename="mainwindow.cpp" line="1473"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1532"/> + <location filename="mainwindow.cpp" line="1553"/> <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1736"/> + <location filename="mainwindow.cpp" line="1757"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1747"/> + <location filename="mainwindow.cpp" line="1768"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1851"/> + <location filename="mainwindow.cpp" line="1872"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1862"/> + <location filename="mainwindow.cpp" line="1883"/> <source>(no executables)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2136"/> + <location filename="mainwindow.cpp" line="2157"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2189"/> + <location filename="mainwindow.cpp" line="2210"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="2287"/> <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="2364"/> + <location filename="mainwindow.cpp" line="2363"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2365"/> + <location filename="mainwindow.cpp" line="2364"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2458"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2460"/> + <location filename="mainwindow.cpp" line="2459"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2666"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2690"/> + <location filename="mainwindow.cpp" line="2689"/> <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2702"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2716"/> + <location filename="mainwindow.cpp" line="2715"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2717"/> + <location filename="mainwindow.cpp" line="2716"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2720"/> + <location filename="mainwindow.cpp" line="2719"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2724"/> - <location filename="mainwindow.cpp" line="5242"/> - <location filename="mainwindow.cpp" line="5266"/> + <location filename="mainwindow.cpp" line="2723"/> + <location filename="mainwindow.cpp" line="5241"/> + <location filename="mainwindow.cpp" line="5265"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2812"/> - <location filename="mainwindow.cpp" line="4298"/> - <location filename="mainwindow.cpp" line="4306"/> - <location filename="mainwindow.cpp" line="4832"/> + <location filename="mainwindow.cpp" line="2811"/> + <location filename="mainwindow.cpp" line="4297"/> + <location filename="mainwindow.cpp" line="4305"/> + <location filename="mainwindow.cpp" line="4831"/> <source>Confirm</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2813"/> + <location filename="mainwindow.cpp" line="2812"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2828"/> + <location filename="mainwindow.cpp" line="2827"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <location filename="mainwindow.cpp" line="2863"/> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2859"/> + <location filename="mainwindow.cpp" line="2862"/> + <location filename="mainwindow.cpp" line="2872"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> + <location filename="mainwindow.cpp" line="2859"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2864"/> + <location filename="mainwindow.cpp" line="2863"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2874"/> + <location filename="mainwindow.cpp" line="2873"/> <source>Failed to create backup.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2902"/> + <location filename="mainwindow.cpp" line="2901"/> <source>Endorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="2937"/> <source>Unendorsing multiple mods will take a while. Please wait...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3015"/> + <location filename="mainwindow.cpp" line="3014"/> <source>Failed to display overwrite dialog: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3206"/> + <location filename="mainwindow.cpp" line="3205"/> <source>Opening Nexus Links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3207"/> + <location filename="mainwindow.cpp" line="3206"/> <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="3234"/> + <location filename="mainwindow.cpp" line="3233"/> <source>Nexus ID for this mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3245"/> + <location filename="mainwindow.cpp" line="3244"/> <source>Opening Web Pages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3246"/> + <location filename="mainwindow.cpp" line="3245"/> <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="3452"/> + <location filename="mainwindow.cpp" line="3451"/> <source><table cellspacing="5"><tr><th>Type</th><th>All</th><th>Visible</th><tr><td>Enabled mods:&emsp;</td><td align=right>%1 / %2</td><td align=right>%3 / %4</td></tr><tr><td>Unmanaged/DLCs:&emsp;</td><td align=right>%5</td><td align=right>%6</td></tr><tr><td>Mod backups:&emsp;</td><td align=right>%7</td><td align=right>%8</td></tr><tr><td>Separators:&emsp;</td><td align=right>%9</td><td align=right>%10</td></tr></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3507"/> + <location filename="mainwindow.cpp" line="3506"/> <source><table cellspacing="6"><tr><th>Type</th><th>Active </th><th>Total</th></tr><tr><td>All plugins:</td><td align=right>%1 </td><td align=right>%2</td></tr><tr><td>ESMs:</td><td align=right>%3 </td><td align=right>%4</td></tr><tr><td>ESPs:</td><td align=right>%7 </td><td align=right>%8</td></tr><tr><td>ESMs+ESPs:</td><td align=right>%9 </td><td align=right>%10</td></tr><tr><td>ESLs:</td><td align=right>%5 </td><td align=right>%6</td></tr></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3539"/> - <location filename="mainwindow.cpp" line="3683"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="4656"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3540"/> + <location filename="mainwindow.cpp" line="3539"/> <source>This will create an empty mod. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3549"/> - <location filename="mainwindow.cpp" line="3693"/> + <location filename="mainwindow.cpp" line="3548"/> + <location filename="mainwindow.cpp" line="3692"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3577"/> + <location filename="mainwindow.cpp" line="3576"/> <source>Create Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3578"/> + <location filename="mainwindow.cpp" line="3577"/> <source>This will create a new separator. Please enter a name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3585"/> + <location filename="mainwindow.cpp" line="3584"/> <source>A separator with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3684"/> + <location filename="mainwindow.cpp" line="3683"/> <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="3757"/> + <location filename="mainwindow.cpp" line="3756"/> <source>Move successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> - <location filename="mainwindow.cpp" line="6229"/> + <location filename="mainwindow.cpp" line="3778"/> + <location filename="mainwindow.cpp" line="6228"/> <source>Are you sure?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3780"/> + <location filename="mainwindow.cpp" line="3779"/> <source>About to recursively delete: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4180"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4181"/> + <location filename="mainwindow.cpp" line="4180"/> <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="4201"/> + <location filename="mainwindow.cpp" line="4200"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4201"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4298"/> + <location filename="mainwindow.cpp" line="4297"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4306"/> + <location filename="mainwindow.cpp" line="4305"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4388"/> + <location filename="mainwindow.cpp" line="4387"/> <source>Export to csv</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4391"/> + <location filename="mainwindow.cpp" line="4390"/> <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="4394"/> + <location filename="mainwindow.cpp" line="4393"/> <source>Select what mods you want export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4394"/> <source>All installed mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4396"/> + <location filename="mainwindow.cpp" line="4395"/> <source>Only active (checked) mods from your current profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4397"/> + <location filename="mainwindow.cpp" line="4396"/> <source>All currently visible mods in the mod list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4418"/> + <location filename="mainwindow.cpp" line="4417"/> <source>Choose what Columns to export:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4421"/> + <location filename="mainwindow.cpp" line="4420"/> <source>Mod_Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4423"/> + <location filename="mainwindow.cpp" line="4422"/> <source>Mod_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4425"/> + <location filename="mainwindow.cpp" line="4424"/> <source>Notes_column</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4426"/> + <location filename="mainwindow.cpp" line="4425"/> <source>Mod_Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4428"/> + <location filename="mainwindow.cpp" line="4427"/> <source>Primary_Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4429"/> + <location filename="mainwindow.cpp" line="4428"/> <source>Nexus_ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4430"/> + <location filename="mainwindow.cpp" line="4429"/> <source>Mod_Nexus_URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4430"/> <source>Mod_Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4432"/> + <location filename="mainwindow.cpp" line="4431"/> <source>Install_Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4433"/> + <location filename="mainwindow.cpp" line="4432"/> <source>Download_File_Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4540"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4560"/> + <location filename="mainwindow.cpp" line="4559"/> <source>Open Game folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4561"/> + <location filename="mainwindow.cpp" line="4560"/> <source>Open MyGames folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4562"/> + <location filename="mainwindow.cpp" line="4561"/> <source>Open INIs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4567"/> + <location filename="mainwindow.cpp" line="4566"/> <source>Open Instance folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4568"/> + <location filename="mainwindow.cpp" line="4567"/> <source>Open Mods folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4569"/> + <location filename="mainwindow.cpp" line="4568"/> <source>Open Profile folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4570"/> + <location filename="mainwindow.cpp" line="4569"/> <source>Open Downloads folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4576"/> + <location filename="mainwindow.cpp" line="4575"/> <source>Open MO2 Install folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4577"/> + <location filename="mainwindow.cpp" line="4576"/> <source>Open MO2 Plugins folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4578"/> + <location filename="mainwindow.cpp" line="4577"/> <source>Open MO2 Stylesheets folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4579"/> + <location filename="mainwindow.cpp" line="4578"/> <source>Open MO2 Logs folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4586"/> + <location filename="mainwindow.cpp" line="4585"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4587"/> + <location filename="mainwindow.cpp" line="4586"/> <source>Create empty mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4588"/> + <location filename="mainwindow.cpp" line="4587"/> <source>Create Separator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4592"/> + <location filename="mainwindow.cpp" line="4591"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4593"/> + <location filename="mainwindow.cpp" line="4592"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4594"/> + <location filename="mainwindow.cpp" line="4593"/> <source>Check for updates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4596"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4605"/> - <location filename="mainwindow.cpp" line="4621"/> + <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.cpp" line="4620"/> <source>Send to</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4606"/> - <location filename="mainwindow.cpp" line="4622"/> + <location filename="mainwindow.cpp" line="4605"/> + <location filename="mainwindow.cpp" line="4621"/> <source>Top</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> - <location filename="mainwindow.cpp" line="4623"/> + <location filename="mainwindow.cpp" line="4606"/> + <location filename="mainwindow.cpp" line="4622"/> <source>Bottom</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4608"/> - <location filename="mainwindow.cpp" line="4624"/> + <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4623"/> <source>Priority...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4609"/> + <location filename="mainwindow.cpp" line="4608"/> <source>Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4648"/> + <location filename="mainwindow.cpp" line="4647"/> <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4656"/> + <location filename="mainwindow.cpp" line="4655"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4658"/> + <location filename="mainwindow.cpp" line="4657"/> <source>Move content to Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4659"/> + <location filename="mainwindow.cpp" line="4658"/> <source>Clear Overwrite...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4661"/> - <location filename="mainwindow.cpp" line="4784"/> + <location filename="mainwindow.cpp" line="4660"/> + <location filename="mainwindow.cpp" line="4783"/> <source>Open in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4663"/> + <location filename="mainwindow.cpp" line="4662"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4664"/> + <location filename="mainwindow.cpp" line="4663"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4667"/> - <location filename="mainwindow.cpp" line="4686"/> + <location filename="mainwindow.cpp" line="4666"/> + <location filename="mainwindow.cpp" line="4685"/> <source>Change Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4671"/> - <location filename="mainwindow.cpp" line="4691"/> + <location filename="mainwindow.cpp" line="4670"/> + <location filename="mainwindow.cpp" line="4690"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4675"/> + <location filename="mainwindow.cpp" line="4674"/> <source>Rename Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4676"/> + <location filename="mainwindow.cpp" line="4675"/> <source>Remove Separator...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4679"/> + <location filename="mainwindow.cpp" line="4678"/> <source>Select Color...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4681"/> + <location filename="mainwindow.cpp" line="4680"/> <source>Reset Color</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4698"/> + <location filename="mainwindow.cpp" line="4697"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4701"/> <source>Force-check updates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4704"/> + <location filename="mainwindow.cpp" line="4703"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4707"/> + <location filename="mainwindow.cpp" line="4706"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4712"/> - <location filename="mainwindow.cpp" line="6387"/> + <location filename="mainwindow.cpp" line="4711"/> + <location filename="mainwindow.cpp" line="6386"/> <source>Enable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4713"/> - <location filename="mainwindow.cpp" line="6388"/> + <location filename="mainwindow.cpp" line="4712"/> + <location filename="mainwindow.cpp" line="6387"/> <source>Disable selected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4719"/> + <location filename="mainwindow.cpp" line="4718"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4720"/> + <location filename="mainwindow.cpp" line="4719"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4721"/> + <location filename="mainwindow.cpp" line="4720"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4729"/> + <location filename="mainwindow.cpp" line="4728"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4733"/> + <location filename="mainwindow.cpp" line="4732"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4739"/> + <location filename="mainwindow.cpp" line="4738"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4749"/> + <location filename="mainwindow.cpp" line="4748"/> <source>Start tracking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4752"/> + <location filename="mainwindow.cpp" line="4751"/> <source>Stop tracking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4755"/> + <location filename="mainwindow.cpp" line="4754"/> <source>Tracked state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4766"/> + <location filename="mainwindow.cpp" line="4765"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4769"/> <source>Mark as converted/working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4774"/> + <location filename="mainwindow.cpp" line="4773"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4780"/> + <location filename="mainwindow.cpp" line="4779"/> <source>Visit on %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4788"/> + <location filename="mainwindow.cpp" line="4787"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4795"/> - <location filename="mainwindow.cpp" line="6440"/> + <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="6439"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4797"/> - <location filename="mainwindow.cpp" line="6442"/> + <location filename="mainwindow.cpp" line="4796"/> + <location filename="mainwindow.cpp" line="6441"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4829"/> + <location filename="mainwindow.cpp" line="4828"/> <source>%1 more</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4832"/> <source>Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin.</source> <translation type="unfinished"> <numerusform></numerusform> @@ -3217,12 +3217,12 @@ You can also use online editors and converters instead.</source> </translation> </message> <message> - <location filename="mainwindow.cpp" line="4878"/> + <location filename="mainwindow.cpp" line="4877"/> <source>Enable Mods...</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="mainwindow.cpp" line="4893"/> + <location filename="mainwindow.cpp" line="4892"/> <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="4973"/> + <location filename="mainwindow.cpp" line="4972"/> <source>Restart Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4975"/> + <location filename="mainwindow.cpp" line="4974"/> <source>Mod Organizer must restart to finish configuration changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4977"/> + <location filename="mainwindow.cpp" line="4976"/> <source>Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4978"/> + <location filename="mainwindow.cpp" line="4977"/> <source>Continue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4978"/> + <location filename="mainwindow.cpp" line="4977"/> <source>Some things might be weird.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4999"/> + <location filename="mainwindow.cpp" line="4998"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5156"/> + <location filename="mainwindow.cpp" line="5155"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5162"/> + <location filename="mainwindow.cpp" line="5161"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5180"/> + <location filename="mainwindow.cpp" line="5179"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5181"/> + <location filename="mainwindow.cpp" line="5180"/> <source>Enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5203"/> + <location filename="mainwindow.cpp" line="5202"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5204"/> + <location filename="mainwindow.cpp" line="5203"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5227"/> - <location filename="mainwindow.cpp" line="5252"/> + <location filename="mainwindow.cpp" line="5226"/> + <location filename="mainwindow.cpp" line="5251"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5227"/> + <location filename="mainwindow.cpp" line="5226"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5230"/> - <location filename="mainwindow.cpp" line="5255"/> + <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5254"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5230"/> - <location filename="mainwindow.cpp" line="5255"/> + <location filename="mainwindow.cpp" line="5229"/> + <location filename="mainwindow.cpp" line="5254"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5252"/> + <location filename="mainwindow.cpp" line="5251"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5296"/> - <location filename="mainwindow.cpp" line="6779"/> + <location filename="mainwindow.cpp" line="5295"/> + <location filename="mainwindow.cpp" line="6778"/> <source>Set Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5296"/> + <location filename="mainwindow.cpp" line="5295"/> <source>Set the priority of the selected plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5463"/> + <location filename="mainwindow.cpp" line="5462"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5498"/> + <location filename="mainwindow.cpp" line="5497"/> <source>&Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5499"/> + <location filename="mainwindow.cpp" line="5498"/> <source>Execute with &VFS</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5501"/> + <location filename="mainwindow.cpp" line="5500"/> <source>&Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5502"/> + <location filename="mainwindow.cpp" line="5501"/> <source>Open with &VFS</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5543"/> + <location filename="mainwindow.cpp" line="5542"/> <source>&Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5506"/> + <location filename="mainwindow.cpp" line="5505"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5556"/> + <location filename="mainwindow.cpp" line="5555"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5558"/> + <location filename="mainwindow.cpp" line="5557"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5571"/> + <location filename="mainwindow.cpp" line="5570"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5599"/> + <location filename="mainwindow.cpp" line="5598"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5613"/> + <location filename="mainwindow.cpp" line="5612"/> <source>Abstain from Endorsing Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5614"/> + <location filename="mainwindow.cpp" line="5613"/> <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="5705"/> + <location filename="mainwindow.cpp" line="5704"/> <source>Thank you for endorsing MO2! :)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5711"/> + <location filename="mainwindow.cpp" line="5710"/> <source>Please reconsider endorsing MO2 on Nexus!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5975"/> + <location filename="mainwindow.cpp" line="5974"/> <source>Thank you!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5975"/> + <location filename="mainwindow.cpp" line="5974"/> <source>Thank you for your endorsement!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6067"/> + <location filename="mainwindow.cpp" line="6066"/> <source>Mod ID %1 no longer seems to be available on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6069"/> + <location filename="mainwindow.cpp" line="6068"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6085"/> - <location filename="mainwindow.cpp" line="6147"/> + <location filename="mainwindow.cpp" line="6084"/> + <location filename="mainwindow.cpp" line="6146"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6097"/> + <location filename="mainwindow.cpp" line="6096"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6097"/> + <location filename="mainwindow.cpp" line="6096"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6129"/> + <location filename="mainwindow.cpp" line="6128"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6158"/> + <location filename="mainwindow.cpp" line="6157"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6204"/> + <location filename="mainwindow.cpp" line="6203"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6229"/> + <location filename="mainwindow.cpp" line="6228"/> <source>This will restart MO, continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6307"/> + <location filename="mainwindow.cpp" line="6306"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6371"/> + <location filename="mainwindow.cpp" line="6370"/> <source>Remove '%1' from the toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6392"/> + <location filename="mainwindow.cpp" line="6391"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6393"/> + <location filename="mainwindow.cpp" line="6392"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6414"/> + <location filename="mainwindow.cpp" line="6413"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6417"/> + <location filename="mainwindow.cpp" line="6416"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6427"/> + <location filename="mainwindow.cpp" line="6426"/> <source>Open Origin in Explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6432"/> + <location filename="mainwindow.cpp" line="6431"/> <source>Open Origin Info...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6540"/> + <location filename="mainwindow.cpp" line="6539"/> <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6550"/> + <location filename="mainwindow.cpp" line="6549"/> <source>Choose backup to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6563"/> + <location filename="mainwindow.cpp" line="6562"/> <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6563"/> + <location filename="mainwindow.cpp" line="6562"/> <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6588"/> - <location filename="mainwindow.cpp" line="6613"/> + <location filename="mainwindow.cpp" line="6587"/> + <location filename="mainwindow.cpp" line="6612"/> <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6589"/> - <location filename="mainwindow.cpp" line="6614"/> + <location filename="mainwindow.cpp" line="6588"/> + <location filename="mainwindow.cpp" line="6613"/> <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6601"/> + <location filename="mainwindow.cpp" line="6600"/> <source>Backup of mod list created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6684"/> + <location filename="mainwindow.cpp" line="6683"/> <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="6686"/> + <location filename="mainwindow.cpp" line="6685"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6687"/> + <location filename="mainwindow.cpp" line="6686"/> <source>Rename new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6688"/> + <location filename="mainwindow.cpp" line="6687"/> <source>Ignore file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="6779"/> + <location filename="mainwindow.cpp" line="6778"/> <source>Set the priority of the selected mods</source> <translation type="unfinished"></translation> </message> @@ -6109,18 +6109,18 @@ If the folder was still in use, restart MO and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1279"/> + <location filename="mainwindow.cpp" line="1300"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1796"/> - <location filename="mainwindow.cpp" line="5111"/> + <location filename="mainwindow.cpp" line="1817"/> + <location filename="mainwindow.cpp" line="5110"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1808"/> + <location filename="mainwindow.cpp" line="1829"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> |
